|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectlumis.util.Enumerator<E>
public final class Enumerator<E>
Constructor Summary | |
---|---|
Enumerator(java.util.Collection<E> collection)
Returns an Enumeration over the specified Collection. |
|
Enumerator(java.util.Iterator<E> iterator)
Returns an Enumeration over the values of the specified Iterator. |
|
Enumerator(java.util.Map<java.lang.Object,E> map)
Returns an Enumeration over the values of the specified Map. |
Method Summary | |
---|---|
boolean |
hasMoreElements()
Tests if this enumeration contains more elements. |
E |
nextElement()
Returns the next element of this enumeration. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Enumerator(java.util.Collection<E> collection)
collection
- Collection with values that should be enumeratedpublic Enumerator(java.util.Iterator<E> iterator)
iterator
- Iterator to be wrappedpublic Enumerator(java.util.Map<java.lang.Object,E> map)
map
- Map with values that should be enumeratedMethod Detail |
---|
public boolean hasMoreElements()
hasMoreElements
in interface java.util.Enumeration<E>
true
if this enumeration contains at least one
more element to provide, false
otherwise.public E nextElement() throws java.util.NoSuchElementException
nextElement
in interface java.util.Enumeration<E>
java.util.NoSuchElementException
- if no more elements exist
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |