Class LazyCollection.WrappedListIterator

All Implemented Interfaces:
Iterator<E>, ListIterator<E>
Direct Known Subclasses:
LazyList.AppendList.AppendListIterator, LazyList.InsertAtList.InsertAtListIterator, LazyList.PrependList.PrependListIterator, LazyList.UnionListIterator, LazyOrderedSet.AppendOrderedSet.AppendOrderedSetListIterator, LazyOrderedSet.ExcludingOrderedSet.ExcludingOrderedSetListIterator, LazyOrderedSet.InsertAtOrderedSet.InsertAtOrderedSetListIterator, LazyOrderedSet.PrependOrderedSet.PrependOrderedSetListIterator
Enclosing class:
LazyCollection<E>

public abstract class LazyCollection.WrappedListIterator extends LazyCollection.ReadOnlyListIterator<E>
Abstract LazyCollection.ReadOnlyListIterator that wraps around the underlying collection. Assumes the underlying collection is a List.
  • Field Details

  • Constructor Details

  • Method Details

    • hasNext

      public boolean hasNext()
    • hasPrevious

      public boolean hasPrevious()
    • next

      public E next()
    • nextIndex

      public int nextIndex()
    • previous

      public E previous()
    • previousIndex

      public int previousIndex()