public abstract class AbstractDoubleListIterator extends AbstractDoubleBidirectionalIterator implements DoubleListIterator
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(double k)
This method just throws an
UnsupportedOperationException. |
void |
add(Double ok)
Delegates to the corresponding type-specific method.
|
void |
set(double k)
This method just throws an
UnsupportedOperationException. |
void |
set(Double ok)
Delegates to the corresponding type-specific method.
|
back, previous, previousDoublenext, nextDouble, remove, skipequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waithasNext, hasPrevious, next, nextIndex, previous, previousIndex, removeback, previousDoublenextDouble, skipskiphasPrevious, previousforEachRemainingpublic void set(Double ok)
set in interface ListIterator<Double>public void add(Double ok)
add in interface ListIterator<Double>public void set(double k)
UnsupportedOperationException.set in interface DoubleListIteratorpublic void add(double k)
UnsupportedOperationException.add in interface DoubleListIterator