public final class Enumerator<E> extends Object implements Enumeration<E>
Enumeration around a Java2
collection classes object Iterator so that existing APIs
returning Enumerations can easily run on top of the new collections.
Constructors are provided to easily create such wrappers.| Constructor and Description |
|---|
Enumerator(Collection<E> collection)
Return an Enumeration over the values of the specified Collection.
|
Enumerator(Collection<E> collection,
boolean clone)
Return an Enumeration over the values of the specified Collection.
|
Enumerator(Iterable<E> iterable)
Return an Enumeration over the values returned by the
specified
Iterable. |
Enumerator(Iterable<E> iterable,
boolean clone)
Return an Enumeration over the values returned by the
specified
Iterable. |
Enumerator(Iterator<E> iterator)
Return an Enumeration over the values returned by the
specified Iterator.
|
Enumerator(Iterator<E> iterator,
boolean clone)
Return an Enumeration over the values returned by the
specified Iterator.
|
Enumerator(Map<?,E> map)
Return an Enumeration over the values of the specified Map.
|
Enumerator(Map<?,E> map,
boolean clone)
Return an Enumeration over the values of the specified Map.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
hasMoreElements()
Tests if this enumeration contains more elements.
|
E |
nextElement()
Returns the next element of this enumeration if this enumeration
has at least one more element to provide.
|
public Enumerator(Collection<E> collection)
collection - Collection whose values should be enumeratedpublic Enumerator(Collection<E> collection, boolean clone)
collection - Collection whose values should be enumeratedclone - true to clone iteratorpublic Enumerator(Iterable<E> iterable)
Iterable.iterable - Iterable to be wrappedpublic Enumerator(Iterable<E> iterable, boolean clone)
Iterable.iterable - Iterable to be wrappedclone - true to clone iteratorpublic Enumerator(Iterator<E> iterator)
iterator - Iterator to be wrappedpublic Enumerator(Iterator<E> iterator, boolean clone)
iterator - Iterator to be wrappedclone - true to clone iteratorpublic Enumerator(Map<?,E> map)
map - Map whose values should be enumeratedpublic boolean hasMoreElements()
hasMoreElements in interface Enumeration<E>public E nextElement() throws NoSuchElementException
nextElement in interface Enumeration<E>NoSuchElementException - if no more elements existCopyright © 2020 Oracle Corporation. All Rights Reserved.