it.unimi.dsi.fastutil.bytes
Interface ByteListIterator

All Superinterfaces:
BidirectionalIterator<java.lang.Byte>, ByteBidirectionalIterator, ByteIterator, java.util.Iterator<java.lang.Byte>, java.util.ListIterator<java.lang.Byte>, ObjectBidirectionalIterator<java.lang.Byte>, ObjectIterator<java.lang.Byte>
All Known Implementing Classes:
AbstractByteListIterator, ByteIterators.EmptyIterator, ByteIterators.UnmodifiableListIterator

public interface ByteListIterator
extends java.util.ListIterator<java.lang.Byte>, 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.objects.ObjectIterator
skip
 
Methods inherited from interface it.unimi.dsi.fastutil.BidirectionalIterator
hasPrevious, previous
 

Method Detail

set

void set(byte k)

add

void add(byte k)