Class EnumerationIterator<T>
- java.lang.Object
-
- org.codehaus.commons.compiler.util.iterator.EnumerationIterator<T>
-
- Type Parameters:
T
- The element type of the enumeration and the iterator
- All Implemented Interfaces:
Iterator<T>
public class EnumerationIterator<T> extends Object implements Iterator<T>
AnIterator
that iterates over the elements of anEnumeration
.
-
-
Constructor Summary
Constructors Constructor Description EnumerationIterator(Enumeration<? extends T> e)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
T
next()
void
remove()
SinceEnumeration
s don't support element removal, this method always throws anUnsupportedOperationException
.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Constructor Detail
-
EnumerationIterator
public EnumerationIterator(Enumeration<? extends T> e)
-
-
Method Detail
-
remove
public void remove()
SinceEnumeration
s don't support element removal, this method always throws anUnsupportedOperationException
.- Specified by:
remove
in interfaceIterator<T>
- See Also:
Iterator.remove()
-
-