Package lumis.util
Class Enumerator<E>
- java.lang.Object
-
- lumis.util.Enumerator<E>
-
- All Implemented Interfaces:
java.util.Enumeration<E>
public final class Enumerator<E> extends java.lang.Object implements java.util.Enumeration<E>
-
-
Constructor Summary
Constructors Constructor Description Enumerator(java.util.Collection<E> collection)
Returns an Enumeration over the specified Collection.Enumerator(java.util.Iterator<E> iterator)
Returns an Enumeration over the values of the specified Iterator.Enumerator(java.util.Map<java.lang.Object,E> map)
Returns an Enumeration over the values of the specified Map.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasMoreElements()
Tests if this enumeration contains more elements.E
nextElement()
Returns the next element of this enumeration.
-
-
-
Constructor Detail
-
Enumerator
public Enumerator(java.util.Collection<E> collection)
Returns an Enumeration over the specified Collection.- Parameters:
collection
- Collection with values that should be enumerated
-
Enumerator
public Enumerator(java.util.Iterator<E> iterator)
Returns an Enumeration over the values of the specified Iterator.- Parameters:
iterator
- Iterator to be wrapped
-
Enumerator
public Enumerator(java.util.Map<java.lang.Object,E> map)
Returns an Enumeration over the values of the specified Map.- Parameters:
map
- Map with values that should be enumerated
-
-
Method Detail
-
hasMoreElements
public boolean hasMoreElements()
Tests if this enumeration contains more elements.- Specified by:
hasMoreElements
in interfacejava.util.Enumeration<E>
- Returns:
true
if this enumeration contains at least one more element to provide,false
otherwise.
-
-