Class ForwardingListIterator<E extends @Nullable Object>

  • All Implemented Interfaces:
    Iterator<E>, ListIterator<E>

    @GwtCompatible
    public abstract class ForwardingListIterator<E extends @Nullable Object>
    extends ForwardingIterator<E>
    implements ListIterator<E>
    A list iterator which forwards all its method calls to another list iterator. Subclasses should override one or more methods to modify the behavior of the backing iterator as desired per the decorator pattern.

    default method warning: This class forwards calls to only some default methods. Specifically, it forwards calls only for methods that existed before default methods were introduced. For newer methods, like forEachRemaining, it inherits their default implementations. When those implementations invoke methods, they invoke methods on the ForwardingListIterator.

    Since:
    2.0
    Author:
    Mike Bostock
    • Method Detail

      • add

        public void add​(E element)
        Description copied from interface: java.util.ListIterator
        Inserts the specified element into the list (optional operation). The element is inserted immediately before the element that would be returned by ListIterator.next(), if any, and after the element that would be returned by ListIterator.previous(), if any. (If the list contains no elements, the new element becomes the sole element on the list.) The new element is inserted before the implicit cursor: a subsequent call to next would be unaffected, and a subsequent call to previous would return the new element. (This call increases by one the value that would be returned by a call to nextIndex or previousIndex.)
        Specified by:
        add in interface ListIterator<E extends @Nullable Object>
        Parameters:
        element - the element to insert
      • hasPrevious

        public boolean hasPrevious()
        Description copied from interface: java.util.ListIterator
        Returns true if this list iterator has more elements when traversing the list in the reverse direction. (In other words, returns true if ListIterator.previous() would return an element rather than throwing an exception.)
        Specified by:
        hasPrevious in interface ListIterator<E extends @Nullable Object>
        Returns:
        true if the list iterator has more elements when traversing the list in the reverse direction
      • nextIndex

        public int nextIndex()
        Description copied from interface: java.util.ListIterator
        Returns the index of the element that would be returned by a subsequent call to ListIterator.next(). (Returns list size if the list iterator is at the end of the list.)
        Specified by:
        nextIndex in interface ListIterator<E extends @Nullable Object>
        Returns:
        the index of the element that would be returned by a subsequent call to next, or list size if the list iterator is at the end of the list
      • previous

        @CanIgnoreReturnValue
        public E previous()
        Description copied from interface: java.util.ListIterator
        Returns the previous element in the list and moves the cursor position backwards. This method may be called repeatedly to iterate through the list backwards, or intermixed with calls to ListIterator.next() to go back and forth. (Note that alternating calls to next and previous will return the same element repeatedly.)
        Specified by:
        previous in interface ListIterator<E extends @Nullable Object>
        Returns:
        the previous element in the list
      • previousIndex

        public int previousIndex()
        Description copied from interface: java.util.ListIterator
        Returns the index of the element that would be returned by a subsequent call to ListIterator.previous(). (Returns -1 if the list iterator is at the beginning of the list.)
        Specified by:
        previousIndex in interface ListIterator<E extends @Nullable Object>
        Returns:
        the index of the element that would be returned by a subsequent call to previous, or -1 if the list iterator is at the beginning of the list