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(java.lang.Double ok)
Delegates to the corresponding type-specific method.
|
void |
set(double k)
This method just throws an
UnsupportedOperationException . |
void |
set(java.lang.Double ok)
Delegates to the corresponding type-specific method.
|
back, previous, previousDouble
next, nextDouble, remove, skip
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
hasNext, hasPrevious, next, nextIndex, previous, previousIndex, remove
back, previousDouble
nextDouble, skip
skip
hasPrevious, previous
public void set(java.lang.Double ok)
set
in interface java.util.ListIterator<java.lang.Double>
public void add(java.lang.Double ok)
add
in interface java.util.ListIterator<java.lang.Double>
public void set(double k)
UnsupportedOperationException
.set
in interface DoubleListIterator
public void add(double k)
UnsupportedOperationException
.add
in interface DoubleListIterator