Searched defs:enumeration (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/sun/util/
H A DResourceBundleEnumeration.java41 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.
47 * enumeration may be null.
49 public ResourceBundleEnumeration(Set<String> set, Enumeration<String> enumeration) { argument
52 this.enumeration = enumeration;
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DCollections.java4290 * Returns an enumeration that has no elements. More precisely,
4302 * @param <T> the class of the objects in the enumeration
4303 * @return an empty enumeration
5244 * Returns an enumeration over the specified collection. This provides
5245 * interoperability with legacy APIs that require an enumeration
5249 * @param c the collection for which an enumeration is to be returned.
5250 * @return an enumeration over the specified collection.
5253 public static <T> Enumeration<T> enumeration(final Collection<T> c) { method in class:Collections
5269 * specified enumeration in the order they are returned by the
5270 * enumeration
[all...]

Completed in 65 milliseconds