public abstract class AbstractByteListIterator extends AbstractByteBidirectionalIterator implements ByteListIterator
This class provides trivial type-specific implementations of set()
and add()
which
throw an UnsupportedOperationException
. For primitive types, it also
provides a trivial implementation of set()
and add()
that just invokes the type-specific one.
ListIterator
Modifier and Type | Method and Description |
---|---|
void |
add(byte k)
This method just throws an
UnsupportedOperationException . |
void |
add(java.lang.Byte ok)
Delegates to the corresponding type-specific method.
|
void |
set(byte k)
This method just throws an
UnsupportedOperationException . |
void |
set(java.lang.Byte ok)
Delegates to the corresponding type-specific method.
|
back, previous, previousByte
next, nextByte, remove, skip
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
hasNext, hasPrevious, next, nextIndex, previous, previousIndex, remove
back, previousByte
nextByte, skip
skip
hasPrevious, previous
public void set(java.lang.Byte ok)
set
in interface java.util.ListIterator<java.lang.Byte>
public void add(java.lang.Byte ok)
add
in interface java.util.ListIterator<java.lang.Byte>
public void set(byte k)
UnsupportedOperationException
.set
in interface ByteListIterator
public void add(byte k)
UnsupportedOperationException
.add
in interface ByteListIterator