Package org.apache.velocity.util
Class EnumerationIterator
java.lang.Object
org.apache.velocity.util.EnumerationIterator
- All Implemented Interfaces:
Iterator
An Iterator wrapper for an Enumeration.
- Version:
- $Id$
- Author:
- Geir Magnusson Jr.
-
Constructor Summary
ConstructorDescriptionEnumerationIterator
(Enumeration enumeration) Creates a new iteratorwrapper instance for the specified Enumeration. -
Method Summary
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 Details
-
EnumerationIterator
Creates a new iteratorwrapper instance for the specified Enumeration.- Parameters:
enumeration
- The Enumeration to wrap.
-
-
Method Details
-
next
Move to next element in the array. -
hasNext
public boolean hasNext()Check to see if there is another element in the array. -
remove
public void remove()Unimplemented. No analogy in Enumeration
-