Interface ByteListIterator

All Superinterfaces:
BidirectionalIterator<Byte>, ByteBidirectionalIterator, ByteIterator, Iterator<Byte>, ListIterator<Byte>, ObjectBidirectionalIterator<Byte>, ObjectIterator<Byte>, PrimitiveIterator<Byte,ByteConsumer>
All Known Implementing Classes:
AbstractByteListIterator, ByteIterators.AbstractIndexBasedListIterator, ByteIterators.EmptyIterator, ByteIterators.UnmodifiableListIterator

public interface ByteListIterator extends ByteBidirectionalIterator, ListIterator<Byte>
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: