public abstract class AbstractFloatListIterator extends AbstractFloatBidirectionalIterator implements FloatListIterator
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(float k)
This method just throws an
UnsupportedOperationException . |
void |
add(Float ok)
Delegates to the corresponding type-specific method.
|
void |
set(float k)
This method just throws an
UnsupportedOperationException . |
void |
set(Float ok)
Delegates to the corresponding type-specific method.
|
back, previous, previousFloat
next, nextFloat, remove, skip
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
hasNext, hasPrevious, next, nextIndex, previous, previousIndex, remove
back, previousFloat
nextFloat, skip
skip
hasPrevious, previous
public void set(Float ok)
set
in interface ListIterator<Float>
public void add(Float ok)
add
in interface ListIterator<Float>
public void set(float k)
UnsupportedOperationException
.set
in interface FloatListIterator
public void add(float k)
UnsupportedOperationException
.add
in interface FloatListIterator