Interface LongListIterator

All Superinterfaces:
BidirectionalIterator<Long>, Iterator<Long>, ListIterator<Long>, LongBidirectionalIterator, LongIterator, ObjectBidirectionalIterator<Long>, ObjectIterator<Long>, PrimitiveIterator<Long,LongConsumer>, PrimitiveIterator.OfLong
All Known Implementing Classes:
AbstractLongListIterator, LongIterators.AbstractIndexBasedListIterator, LongIterators.EmptyIterator, LongIterators.UnmodifiableListIterator

public interface LongListIterator extends LongBidirectionalIterator, ListIterator<Long>
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: