Interface IntListIterator

All Superinterfaces:
BidirectionalIterator<Integer>, IntBidirectionalIterator, IntIterator, Iterator<Integer>, ListIterator<Integer>, ObjectBidirectionalIterator<Integer>, ObjectIterator<Integer>, PrimitiveIterator<Integer,IntConsumer>, PrimitiveIterator.OfInt
All Known Implementing Classes:
AbstractIntListIterator, IntIterators.AbstractIndexBasedListIterator, IntIterators.EmptyIterator, IntIterators.UnmodifiableListIterator

public interface IntListIterator extends IntBidirectionalIterator, ListIterator<Integer>
A type-specific bidirectional iterator that is also a ListIterator.

This interface merges the methods provided by a ListIterator and a type-specific BidirectionalIterator. Moreover, it provides type-specific versions of add() and set().

See Also: