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>AnIteratorthat 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 booleanhasNext()Tnext()voidremove()SinceEnumerations 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:
hasNextin interfacejava.util.Iterator<T>
-
remove
public void remove()
SinceEnumerations don't support element removal, this method always throws anUnsupportedOperationException.- Specified by:
removein interfacejava.util.Iterator<T>- See Also:
Iterator.remove()
-
-