HomeSort by relevance Sort by last modified time
    Searched refs:Enumeration (Results 1 - 25 of 843) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/annotation-tools/annotation-file-utilities/tests/source-extension/
WildcardsSuper.java 4 Enumeration<? super WildcardsSuper> f;
  /libcore/ojluni/src/main/java/java/util/
Enumeration.java 29 * An object that implements the Enumeration interface generates a
36 * for (Enumeration&lt;E&gt; e = v.elements(); e.hasMoreElements();)
47 * Iterator in preference to Enumeration.
51 * @see java.util.Enumeration#nextElement()
61 public interface Enumeration<E> {
63 * Tests if this enumeration contains more elements.
65 * @return <code>true</code> if and only if this enumeration object
72 * Returns the next element of this enumeration if this enumeration
75 * @return the next element of this enumeration
    [all...]
Dictionary.java 76 * Returns an enumeration of the keys in this dictionary. The general
77 * contract for the keys method is that an <tt>Enumeration</tt> object
81 * @return an enumeration of the keys in this dictionary.
83 * @see java.util.Enumeration
85 abstract public Enumeration<K> keys();
88 * Returns an enumeration of the values in this dictionary. The general
90 * <tt>Enumeration</tt> is returned that will generate all the elements
93 * @return an enumeration of the values in this dictionary.
95 * @see java.util.Enumeration
97 abstract public Enumeration<V> elements()
    [all...]
  /libcore/ojluni/src/main/java/javax/net/ssl/
SSLSessionContext.java 29 import java.util.Enumeration;
71 * Returns an Enumeration of all session id's grouped under this
74 * @return an enumeration of all the Session id's
76 public Enumeration<byte[]> getIds();
  /libcore/ojluni/src/main/java/sun/misc/
CompoundEnumeration.java 28 import java.util.Enumeration;
35 public class CompoundEnumeration<E> implements Enumeration<E> {
36 private Enumeration<E>[] enums;
39 public CompoundEnumeration(Enumeration<E>[] enums) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/interfaces/
PKCS12BagAttributeCarrier.java 3 import java.util.Enumeration;
20 Enumeration getBagAttributeKeys();
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/helpers/
NullEnumeration.java 20 import java.util.Enumeration;
30 public class NullEnumeration implements Enumeration {
  /libcore/ojluni/src/main/java/java/security/
Permissions.java 28 import java.util.Enumeration;
45 public Enumeration<Permission> elements() { return null; }
PermissionCollection.java 42 public abstract Enumeration<Permission> elements();
  /libcore/ojluni/src/main/java/java/security/acl/
Group.java 28 import java.util.Enumeration;
79 * Returns an enumeration of the members in the group.
83 * @return an enumeration of the group members.
85 public Enumeration<? extends Principal> members();
Acl.java 28 import java.util.Enumeration;
159 * Returns an enumeration for the set of allowed permissions for the
203 public Enumeration<Permission> getPermissions(Principal user);
206 * Returns an enumeration of the entries in this ACL. Each element in
207 * the enumeration is of type AclEntry.
209 * @return an enumeration of the entries in this ACL.
211 public Enumeration<AclEntry> entries();
AclEntry.java 28 import java.util.Enumeration;
135 * Returns an enumeration of the permissions in this ACL entry.
137 * @return an enumeration of the permissions in this ACL entry.
139 public Enumeration<Permission> permissions();
  /cts/hostsidetests/sustainedperf/dhrystone/
dhry.h 152 * enumeration types.
390 typedef int Enumeration;
393 Enumeration;
395 /* for boolean and enumeration types in Ada, Pascal */
418 Enumeration Discr;
421 Enumeration Enum_Comp;
426 Enumeration E_Comp_2;
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/spi/
LoggerRepository.java 21 import java.util.Enumeration;
83 public Enumeration getCurrentLoggers();
89 public Enumeration getCurrentCategories();
  /libcore/ojluni/src/main/java/sun/security/x509/
AttributeNameEnumeration.java 29 import java.util.Enumeration;
32 * <p>This class provides the Enumeration implementation used
  /libcore/ojluni/src/main/java/sun/util/
ResourceBundleEnumeration.java 28 import java.util.Enumeration;
34 * Implements an Enumeration that combines elements from a Set and
35 * an Enumeration. Used by ListResourceBundle and PropertyResourceBundle.
37 public class ResourceBundleEnumeration implements Enumeration<String> {
41 Enumeration<String> enumeration; // may remain null field in class:ResourceBundleEnumeration
44 * Constructs a resource bundle enumeration.
45 * @param set an set providing some elements of the enumeration
46 * @param enumeration an enumeration providing more elements of the enumeration
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/
DelegateLastClassLoader.java 23 import java.util.Enumeration;
140 public Enumeration<URL> getResources(String name) throws IOException {
142 final Enumeration<URL>[] resources = (Enumeration<URL>[]) new Enumeration<?>[] {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BERSequence.java 4 import java.util.Enumeration;
50 for (Enumeration e = getObjects(); e.hasMoreElements();)
65 Enumeration e = getObjects();
BERSet.java 4 import java.util.Enumeration;
54 for (Enumeration e = getObjects(); e.hasMoreElements();)
69 Enumeration e = getObjects();
ASN1EncodableVector.java 3 import java.util.Enumeration;
37 for (Enumeration en = other.v.elements(); en.hasMoreElements();)
LazyConstructionEnumeration.java 4 import java.util.Enumeration;
7 implements Enumeration
  /external/conscrypt/openjdk/src/test/java/org/conscrypt/
ServerSessionContextTest.java 19 import java.util.Enumeration;
39 Enumeration<byte[]> ids = context.getIds();
  /external/guice/core/test/com/google/inject/
SuiteUtils.java 22 import java.util.Enumeration;
30 for(Enumeration e = suite.tests(); e.hasMoreElements(); ) {
  /external/mockito/src/main/java/org/mockito/internal/util/collections/
Iterables.java 7 import java.util.Enumeration;
18 * Converts enumeration into iterable
20 public static <T> Iterable<T> toIterable(Enumeration<T> in) {
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
LogManager.java 21 import java.util.Enumeration;
68 * This bogus implementation returns an empty enumeration.
72 public static Enumeration getCurrentLoggers() {

Completed in 402 milliseconds

1 2 3 4 5 6 7 8 91011>>