Package org.sakaiproject.cheftool
Class EnumerationIterator<E>
- java.lang.Object
-
- org.sakaiproject.cheftool.EnumerationIterator<E>
-
- All Implemented Interfaces:
Iterator<E>
@Deprecated public class EnumerationIterator<E> extends Object implements Iterator<E>
Deprecated.useEnumerationIteratorinstead, this will be removed after 12.0 - May 2017EnumerationIterator is an iterator over an enumeration.
-
-
Field Summary
Fields Modifier and Type Field Description protected Enumeration<E>m_enumDeprecated.The enumeration over which this iterates.
-
Constructor Summary
Constructors Constructor Description EnumerationIterator(Enumeration<E> e)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanhasNext()Deprecated.Enext()Deprecated.voidremove()Deprecated.-
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 Detail
-
m_enum
protected Enumeration<E> m_enum
Deprecated.The enumeration over which this iterates.
-
-
Constructor Detail
-
EnumerationIterator
public EnumerationIterator(Enumeration<E> e)
Deprecated.
-
-