Class AbstractIterator<T>

    • Constructor Detail

      • AbstractIterator

        AbstractIterator()
    • Method Detail

      • toString

        public java.lang.String toString()
        Description copied from interface: Value
        Clarifies that values have a proper toString() method implemented.

        See Object.toString().

        Specified by:
        toString in interface Value<T>
        Overrides:
        toString in class java.lang.Object
        Returns:
        A String representation of this object
      • getNext

        protected abstract T getNext()
      • next

        public final T next()
        Specified by:
        next in interface java.util.Iterator<T>