Package de.mhus.lib.core.util
Class EnumerationIterator<T>
- java.lang.Object
-
- de.mhus.lib.core.util.EnumerationIterator<T>
-
- Type Parameters:
T-
public class EnumerationIterator<T> extends Object implements Iterator<T>, Iterable<T>
An Iterator wrapper for an Enumeration.- Version:
- $Id: EnumerationIterator.java 463298 2006-10-12 16:10:32Z henning $
- Author:
- Geir Magnusson Jr.
-
-
Constructor Summary
Constructors Constructor Description EnumerationIterator(Enumeration enumeration)Creates a new iteratorwrapper instance for the specified Enumeration.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()Check to see if there is another element in the array.Iterator<T>iterator()Tnext()Move to next element in the array.voidremove()Unimplemented.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Constructor Detail
-
EnumerationIterator
public EnumerationIterator(Enumeration enumeration)
Creates a new iteratorwrapper instance for the specified Enumeration.- Parameters:
enumeration- The Enumeration to wrap.
-
-
Method Detail
-
next
public T 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
-
-