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:
java.util.Iterator<T>
public class EnumerationIterator<T> extends java.lang.Object implements java.util.Iterator<T>
AnIterator
that iterates over the elements of anEnumeration
.
-
-
Constructor Summary
Constructors Constructor Description EnumerationIterator(java.util.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
.
-
-
-
Constructor Detail
-
EnumerationIterator
public EnumerationIterator(java.util.Enumeration<? extends T> e)
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNext
in interfacejava.util.Iterator<T>
-
remove
public void remove()
SinceEnumeration
s don't support element removal, this method always throws anUnsupportedOperationException
.- Specified by:
remove
in interfacejava.util.Iterator<T>
- See Also:
Iterator.remove()
-
-