Package weka.core

Class WekaEnumeration<E>

  • All Implemented Interfaces:
    java.util.Enumeration<E>, RevisionHandler

    public class WekaEnumeration<E>
    extends java.lang.Object
    implements java.util.Enumeration<E>, RevisionHandler
    Class for enumerating an array list's elements.
    • Constructor Summary

      Constructors 
      Constructor Description
      WekaEnumeration​(java.util.List<E> vector)
      Constructs an enumeration.
      WekaEnumeration​(java.util.List<E> vector, int special)
      Constructs an enumeration with a special element.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getRevision()
      Returns the revision string.
      boolean hasMoreElements()
      Tests if there are any more elements to enumerate.
      E nextElement()
      Returns the next element.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.Enumeration

        asIterator
    • Constructor Detail

      • WekaEnumeration

        public WekaEnumeration​(java.util.List<E> vector)
        Constructs an enumeration.
        Parameters:
        vector - the vector which is to be enumerated
      • WekaEnumeration

        public WekaEnumeration​(java.util.List<E> vector,
                               int special)
        Constructs an enumeration with a special element. The special element is skipped during the enumeration.
        Parameters:
        vector - the vector which is to be enumerated
        special - the index of the special element
    • Method Detail

      • hasMoreElements

        public final boolean hasMoreElements()
        Tests if there are any more elements to enumerate.
        Specified by:
        hasMoreElements in interface java.util.Enumeration<E>
        Returns:
        true if there are some elements left
      • nextElement

        public final E nextElement()
        Returns the next element.
        Specified by:
        nextElement in interface java.util.Enumeration<E>
        Returns:
        the next element to be enumerated
      • getRevision

        public java.lang.String getRevision()
        Returns the revision string.
        Specified by:
        getRevision in interface RevisionHandler
        Returns:
        the revision