Interface FloatListIterator

All Superinterfaces:
BidirectionalIterator<Float>, FloatBidirectionalIterator, FloatIterator, Iterator<Float>, ListIterator<Float>, ObjectBidirectionalIterator<Float>, ObjectIterator<Float>
All Known Implementing Classes:
AbstractFloatListIterator, FloatIterators.EmptyIterator, FloatIterators.UnmodifiableListIterator

public interface FloatListIterator
extends FloatBidirectionalIterator, ListIterator<Float>
A type-specific bidirectional iterator that is also a ListIterator.

This interface merges the methods provided by a ListIterator and a type-specific BidirectionalIterator. Moreover, it provides type-specific versions of add() and set().

See Also:
ListIterator, BidirectionalIterator
  • Method Summary

    Modifier and Type Method Description
    default void add​(float k)
    Inserts the specified element into the list (optional operation).
    default void add​(Float k)
    Deprecated.
    Please use the corresponding type-specific method instead.
    default Float next()
    Deprecated.
    Please use the corresponding type-specific method instead.
    default Float previous()
    Deprecated.
    Please use the corresponding type-specific method instead.
    default void remove()
    Removes from the underlying collection the last element returned by this iterator (optional operation).
    default void set​(float k)
    Replaces the last element returned by next() or previous() with the specified element (optional operation).
    default void set​(Float k)
    Deprecated.
    Please use the corresponding type-specific method instead.

    Methods inherited from interface it.unimi.dsi.fastutil.BidirectionalIterator

    hasPrevious

    Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatBidirectionalIterator

    back, previousFloat, skip

    Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatIterator

    forEachRemaining, forEachRemaining, nextFloat

    Methods inherited from interface java.util.ListIterator

    hasNext, hasPrevious, nextIndex, previousIndex