Package org.apache.velocity.util
Class EnumerationIterator
- java.lang.Object
- 
- org.apache.velocity.util.EnumerationIterator
 
- 
- All Implemented Interfaces:
- Iterator
 
 public class EnumerationIterator extends Object implements Iterator An Iterator wrapper for an Enumeration.- Version:
- $Id$
- Author:
- Geir Magnusson Jr.
 
- 
- 
Constructor SummaryConstructors Constructor Description EnumerationIterator(Enumeration enumeration)Creates a new iteratorwrapper instance for the specified Enumeration.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()Check to see if there is another element in the array.Objectnext()Move to next element in the array.voidremove()Unimplemented.- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface java.util.IteratorforEachRemaining
 
- 
 
- 
- 
- 
Constructor Detail- 
EnumerationIteratorpublic EnumerationIterator(Enumeration enumeration) Creates a new iteratorwrapper instance for the specified Enumeration.- Parameters:
- enumeration- The Enumeration to wrap.
 
 
- 
 - 
Method Detail- 
nextpublic Object next() Move to next element in the array.
 - 
hasNextpublic boolean hasNext() Check to see if there is another element in the array.
 
- 
 
-