Class ForwardingListIterator<E>

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

    @GwtCompatible
    public abstract class ForwardingListIterator<E>
    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.
    Since:
    2.0 (imported from Google Collections Library)