it.unimi.dsi.fastutil.bytes
Interface ByteListIterator

All Superinterfaces:
BidirectionalIterator, ByteBidirectionalIterator, ByteIterator, Iterator, ListIterator
All Known Implementing Classes:
AbstractByteListIterator, Iterators.EmptyIterator

public interface ByteListIterator
extends ListIterator, ByteBidirectionalIterator

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:
ListIterator, BidirectionalIterator

Method Summary
 void add(byte k)
           
 void set(byte k)
           
 
Methods inherited from interface java.util.ListIterator
add, hasNext, hasPrevious, next, nextIndex, previous, previousIndex, remove, set
 
Methods inherited from interface it.unimi.dsi.fastutil.bytes.ByteBidirectionalIterator
back, previousByte
 
Methods inherited from interface it.unimi.dsi.fastutil.bytes.ByteIterator
nextByte, skip
 
Methods inherited from interface it.unimi.dsi.fastutil.BidirectionalIterator
hasPrevious, previous
 

Method Detail

set

public void set(byte k)

add

public void add(byte k)