Interface ResetableIterator<E>

All Superinterfaces:
Iterator<E>

public interface ResetableIterator<E> extends Iterator<E>
This interface makes an Iterator resetable.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Sets the Iterator back to the first retrieved element, the seen sequence of elements must be repeated.

    Methods inherited from interface java.util.Iterator

    forEachRemaining, hasNext, next, remove
  • Method Details

    • reset

      void reset()
      Sets the Iterator back to the first retrieved element, the seen sequence of elements must be repeated.