Interface ShortListIterator

All Superinterfaces:
BidirectionalIterator<Short>, Iterator<Short>, ListIterator<Short>, ObjectBidirectionalIterator<Short>, ObjectIterator<Short>, PrimitiveIterator<Short,ShortConsumer>, ShortBidirectionalIterator, ShortIterator
All Known Implementing Classes:
AbstractShortListIterator, ShortIterators.AbstractIndexBasedListIterator, ShortIterators.EmptyIterator, ShortIterators.UnmodifiableListIterator

public interface ShortListIterator extends ShortBidirectionalIterator, ListIterator<Short>
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: