Class ObjectBigListIterators.AbstractIndexBasedBigListIterator<K>

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void add​(K k)
      Inserts the specified element into the list (optional operation).
      long back​(long n)
      Moves back for the given number of elements.
      boolean hasPrevious()
      Returns whether there is a previous element.
      long nextIndex()
      Returns the index of the element that would be returned by a subsequent call to next.
      K previous()
      Returns the previous element from the collection.
      long previousIndex()
      Returns the index of the element that would be returned by a subsequent call to previous.
      void set​(K k)
      Replaces the last element returned by next() or previous() with the specified element (optional operation).
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.Iterator

        forEachRemaining, hasNext, next, remove
    • Method Detail

      • hasPrevious

        public boolean hasPrevious()
        Description copied from interface: BidirectionalIterator
        Returns whether there is a previous element.
        Specified by:
        hasPrevious in interface BidirectionalIterator<K>
        Returns:
        whether there is a previous element.
        See Also:
        ListIterator.hasPrevious()
      • previous

        public K previous()
        Description copied from interface: BidirectionalIterator
        Returns the previous element from the collection.
        Specified by:
        previous in interface BidirectionalIterator<K>
        Returns:
        the previous element from the collection.
        See Also:
        ListIterator.previous()
      • nextIndex

        public long nextIndex()
        Description copied from interface: BigListIterator
        Returns the index of the element that would be returned by a subsequent call to next. (Returns list size if the list iterator is at the end of the list.)
        Specified by:
        nextIndex in interface BigListIterator<K>
        Returns:
        the index of the element that would be returned by a subsequent call to next, or list size if list iterator is at end of list.
        See Also:
        ListIterator.nextIndex()
      • previousIndex

        public long previousIndex()
        Description copied from interface: BigListIterator
        Returns the index of the element that would be returned by a subsequent call to previous. (Returns -1 if the list iterator is at the beginning of the list.)
        Specified by:
        previousIndex in interface BigListIterator<K>
        Returns:
        the index of the element that would be returned by a subsequent call to previous, or -1 if list iterator is at beginning of list.
        See Also:
        ListIterator.previousIndex()