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(Byte ok)
Delegates to the corresponding type-specific method.
|
void |
set(byte k)
This method just throws an
UnsupportedOperationException. |
void |
set(Byte ok)
Delegates to the corresponding type-specific method.
|
back, previous, previousBytenext, nextByte, remove, skipequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waithasNext, hasPrevious, next, nextIndex, previous, previousIndex, removeback, previousBytenextByte, skipskiphasPrevious, previousforEachRemainingpublic void set(Byte ok)
set in interface ListIterator<Byte>public void add(Byte ok)
add in interface ListIterator<Byte>public void set(byte k)
UnsupportedOperationException.set in interface ByteListIteratorpublic void add(byte k)
UnsupportedOperationException.add in interface ByteListIterator