it.unimi.dsi.fastutil.floats
Class AbstractFloatListIterator
java.lang.Object
it.unimi.dsi.fastutil.floats.AbstractFloatIterator
it.unimi.dsi.fastutil.floats.AbstractFloatBidirectionalIterator
it.unimi.dsi.fastutil.floats.AbstractFloatListIterator
- All Implemented Interfaces:
- BidirectionalIterator<Float>, FloatBidirectionalIterator, FloatIterator, FloatListIterator, ObjectBidirectionalIterator<Float>, ObjectIterator<Float>, Iterator<Float>, ListIterator<Float>
- Direct Known Subclasses:
- FloatIterators.EmptyIterator, FloatIterators.UnmodifiableListIterator
public abstract class AbstractFloatListIterator
- extends AbstractFloatBidirectionalIterator
- implements FloatListIterator
An abstract class facilitating the creation of type-specific list iterators.
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.
- See Also:
ListIterator
set
public void set(Float ok)
- Delegates to the corresponding type-specific method.
- Specified by:
set
in interface ListIterator<Float>
add
public void add(Float ok)
- Delegates to the corresponding type-specific method.
- Specified by:
add
in interface ListIterator<Float>
set
public void set(float k)
- This method just throws an
UnsupportedOperationException
.
- Specified by:
set
in interface FloatListIterator
add
public void add(float k)
- This method just throws an
UnsupportedOperationException
.
- Specified by:
add
in interface FloatListIterator