Interface BooleanBigListIterator

    • Method Detail

      • set

        default void set​(boolean k)
        Replaces the last element returned by next() or previous() with the specified element (optional operation).
        See Also:
        ListIterator.set(Object)
      • add

        default void add​(boolean k)
        Inserts the specified element into the list (optional operation).
        See Also:
        ListIterator.add(Object)
      • set

        @Deprecated
        default void set​(java.lang.Boolean k)
        Deprecated.
        Please use the corresponding type-specific method instead.
        Replaces the last element returned by BooleanIterator.next() or BooleanBidirectionalIterator.previous() with the specified element (optional operation).
        Specified by:
        set in interface BigListIterator<java.lang.Boolean>
        Parameters:
        k - an element.
        See Also:
        ListIterator.set(Object)
      • add

        @Deprecated
        default void add​(java.lang.Boolean k)
        Deprecated.
        Please use the corresponding type-specific method instead.
        Inserts the specified element into the list (optional operation).
        Specified by:
        add in interface BigListIterator<java.lang.Boolean>
        Parameters:
        k - an element.
        See Also:
        ListIterator.add(Object)
      • skip

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

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

        Parameters:
        n - the number of elements to skip.
        Returns:
        the number of elements actually skipped.
        See Also:
        Iterator.next()
      • back

        default long back​(long n)
        Moves back for the given number of elements.

        The effect of this call is exactly the same as that of calling previous() for n times (possibly stopping if BidirectionalIterator.hasPrevious() becomes false).

        Parameters:
        n - the number of elements to skip back.
        Returns:
        the number of elements actually skipped.
        See Also:
        BidirectionalIterator.previous()
      • 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 BooleanIterator.next() for n times (possibly stopping if Iterator.hasNext() becomes false).

        Specified by:
        skip in interface BooleanBidirectionalIterator
        Specified by:
        skip in interface BooleanIterator
        Specified by:
        skip in interface ObjectBidirectionalIterator<java.lang.Boolean>
        Specified by:
        skip in interface ObjectIterator<java.lang.Boolean>
        Parameters:
        n - the number of elements to skip.
        Returns:
        the number of elements actually skipped.
        See Also:
        Iterator.next()