Interface BooleanListIterator

All Superinterfaces:
BidirectionalIterator<Boolean>, BooleanBidirectionalIterator, BooleanIterator, Iterator<Boolean>, ListIterator<Boolean>, ObjectBidirectionalIterator<Boolean>, ObjectIterator<Boolean>, PrimitiveIterator<Boolean,BooleanConsumer>
All Known Implementing Classes:
AbstractBooleanListIterator, BooleanIterators.AbstractIndexBasedListIterator, BooleanIterators.EmptyIterator, BooleanIterators.UnmodifiableListIterator

public interface BooleanListIterator extends BooleanBidirectionalIterator, ListIterator<Boolean>
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: