Class Enumerator<E>

  • All Implemented Interfaces:
    Enumeration<E>

    public final class Enumerator<E>
    extends Object
    implements Enumeration<E>
    HttpHandler class that wraps an Enumeration around a Java2 collection classes object Iterator so that existing APIs returning Enumerations can easily run on top of the new collections. Constructors are provided to easily create such wrappers.
    Version:
    $Revision: 1.3 $ $Date: 2007/06/18 14:17:08 $
    Author:
    Craig R. McClanahan
    • Constructor Detail

      • Enumerator

        public Enumerator​(Collection<E> collection)
        Return an Enumeration over the values of the specified Collection.
        Parameters:
        collection - Collection whose values should be enumerated
      • Enumerator

        public Enumerator​(Collection<E> collection,
                          boolean clone)
        Return an Enumeration over the values of the specified Collection.
        Parameters:
        collection - Collection whose values should be enumerated
        clone - true to clone iterator
      • Enumerator

        public Enumerator​(Iterable<E> iterable)
        Return an Enumeration over the values returned by the specified Iterable.
        Parameters:
        iterable - Iterable to be wrapped
      • Enumerator

        public Enumerator​(Iterable<E> iterable,
                          boolean clone)
        Return an Enumeration over the values returned by the specified Iterable.
        Parameters:
        iterable - Iterable to be wrapped
        clone - true to clone iterator
      • Enumerator

        public Enumerator​(Iterator<E> iterator)
        Return an Enumeration over the values returned by the specified Iterator.
        Parameters:
        iterator - Iterator to be wrapped
      • Enumerator

        public Enumerator​(Iterator<E> iterator,
                          boolean clone)
        Return an Enumeration over the values returned by the specified Iterator.
        Parameters:
        iterator - Iterator to be wrapped
        clone - true to clone iterator
      • Enumerator

        public Enumerator​(Map<?,​E> map)
        Return an Enumeration over the values of the specified Map.
        Parameters:
        map - Map whose values should be enumerated
      • Enumerator

        public Enumerator​(Map<?,​E> map,
                          boolean clone)
        Return an Enumeration over the values of the specified Map.
        Parameters:
        map - Map whose values should be enumerated
        clone - true to clone iterator
    • Method Detail

      • hasMoreElements

        public boolean hasMoreElements()
        Tests if this enumeration contains more elements.
        Specified by:
        hasMoreElements in interface Enumeration<E>
        Returns:
        true if and only if this enumeration object contains at least one more element to provide, false otherwise