Interface ObjectBidirectionalIterator<K>

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default int back​(int n)
      Moves back for the given number of elements.
      default int skip​(int n)
      Skips the given number of elements.
      • Methods inherited from interface java.util.Iterator

        forEachRemaining, hasNext, next, remove
    • Method Detail

      • skip

        default int skip​(int n)
        Skips the given number of elements.

        The effect of this call is exactly the same as that of calling Iterator.next() for n times (possibly stopping if Iterator.hasNext() becomes false).

        Specified by:
        skip in interface ObjectIterator<K>
        Parameters:
        n - the number of elements to skip.
        Returns:
        the number of elements actually skipped.
        See Also:
        Iterator.next()