Class EnumerationIterator<E>

  • All Implemented Interfaces:
    Iterator<E>

    @Deprecated
    public class EnumerationIterator<E>
    extends Object
    implements Iterator<E>
    Deprecated.
    use EnumerationIterator instead, this will be removed after 12.0 - May 2017

    EnumerationIterator is an iterator over an enumeration.

    • 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.
    • Method Detail

      • next

        public E next()
        Deprecated.
        Specified by:
        next in interface Iterator<E>
      • hasNext

        public boolean hasNext()
        Deprecated.
        Specified by:
        hasNext in interface Iterator<E>
      • remove

        public void remove()
        Deprecated.
        Specified by:
        remove in interface Iterator<E>