Interface CharListIterator

All Superinterfaces:
BidirectionalIterator<Character>, CharBidirectionalIterator, CharIterator, Iterator<Character>, ListIterator<Character>, ObjectBidirectionalIterator<Character>, ObjectIterator<Character>, PrimitiveIterator<Character,CharConsumer>
All Known Implementing Classes:
AbstractCharListIterator, CharIterators.AbstractIndexBasedListIterator, CharIterators.EmptyIterator, CharIterators.UnmodifiableListIterator

public interface CharListIterator extends CharBidirectionalIterator, ListIterator<Character>
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: