Class EnumerationIterator<T>
java.lang.Object
org.apache.commons.jexl3.internal.introspection.EnumerationIterator<T>
- Type Parameters:
T
- the type of object this iterator returns
- All Implemented Interfaces:
Iterator<T>
An Iterator wrapper for an Enumeration.
- Since:
- 1.0
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionEnumerationIterator
(Enumeration<T> enumer) 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
-
Field Details
-
enumeration
The enumeration to iterate over.
-
-
Constructor Details
-
EnumerationIterator
Creates a new iteratorwrapper instance for the specified Enumeration.- Parameters:
enumer
- The Enumeration to wrap.
-
-
Method Details