public abstract class AbstractBooleanListIterator extends AbstractBooleanBidirectionalIterator implements BooleanListIterator
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(boolean k)
This method just throws an
UnsupportedOperationException. |
void |
add(Boolean ok)
Delegates to the corresponding type-specific method.
|
void |
set(boolean k)
This method just throws an
UnsupportedOperationException. |
void |
set(Boolean ok)
Delegates to the corresponding type-specific method.
|
back, previous, previousBooleannext, nextBoolean, remove, skipequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waithasNext, hasPrevious, next, nextIndex, previous, previousIndex, removeback, previousBooleannextBoolean, skipskiphasPrevious, previouspublic void set(Boolean ok)
set in interface ListIterator<Boolean>public void add(Boolean ok)
add in interface ListIterator<Boolean>public void set(boolean k)
UnsupportedOperationException.set in interface BooleanListIteratorpublic void add(boolean k)
UnsupportedOperationException.add in interface BooleanListIterator