Interface ObjectListIterator<K>

All Superinterfaces:
BidirectionalIterator<K>, Iterator<K>, ListIterator<K>, ObjectBidirectionalIterator<K>, ObjectIterator<K>
All Known Implementing Classes:
AbstractObjectListIterator, ObjectIterators.AbstractIndexBasedListIterator, ObjectIterators.EmptyIterator, ObjectIterators.UnmodifiableListIterator

public interface ObjectListIterator<K> extends ObjectBidirectionalIterator<K>, ListIterator<K>
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: