Class IteratorEnumeration<E>
- java.lang.Object
-
- org.apache.commons.collections4.iterators.IteratorEnumeration<E>
-
- All Implemented Interfaces:
Enumeration<E>
public class IteratorEnumeration<E> extends Object implements Enumeration<E>
Adapter to make anIterator
instance appear to be anEnumeration
instance.- Since:
- 1.0
-
-
Constructor Summary
Constructors Constructor Description IteratorEnumeration()
Constructs a newIteratorEnumeration
that will not function untilsetIterator
is invoked.IteratorEnumeration(Iterator<? extends E> iterator)
Constructs a newIteratorEnumeration
that will use the given iterator.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Iterator<? extends E>
getIterator()
Returns the underlying iterator.boolean
hasMoreElements()
Returns true if the underlying iterator has more elements.E
nextElement()
Returns the next element from the underlying iterator.void
setIterator(Iterator<? extends E> iterator)
Sets the underlying iterator.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Enumeration
asIterator
-
-
-
-
Constructor Detail
-
IteratorEnumeration
public IteratorEnumeration()
Constructs a newIteratorEnumeration
that will not function untilsetIterator
is invoked.
-
-
Method Detail
-
hasMoreElements
public boolean hasMoreElements()
Returns true if the underlying iterator has more elements.- Specified by:
hasMoreElements
in interfaceEnumeration<E>
- Returns:
- true if the underlying iterator has more elements
-
nextElement
public E nextElement()
Returns the next element from the underlying iterator.- Specified by:
nextElement
in interfaceEnumeration<E>
- Returns:
- the next element from the underlying iterator.
- Throws:
NoSuchElementException
- if the underlying iterator has no more elements
-
getIterator
public Iterator<? extends E> getIterator()
Returns the underlying iterator.- Returns:
- the underlying iterator
-
-