BidirectionalIterator<java.lang.Float>, FloatIterator, java.util.Iterator<java.lang.Float>, ObjectBidirectionalIterator<java.lang.Float>, ObjectIterator<java.lang.Float>FloatBigListIterator, FloatListIteratorAbstractFloatBidirectionalIterator, AbstractFloatBigListIterator, AbstractFloatListIterator, FloatBigListIterators.BigListIteratorListIterator, FloatBigListIterators.EmptyBigListIterator, FloatBigListIterators.UnmodifiableBigListIterator, FloatIterators.EmptyIterator, FloatIterators.UnmodifiableBidirectionalIterator, FloatIterators.UnmodifiableListIteratorpublic interface FloatBidirectionalIterator extends FloatIterator, ObjectBidirectionalIterator<java.lang.Float>
BidirectionalIterator| Modifier and Type | Method | Description |
|---|---|---|
default int |
back(int n) |
Moves back for the given number of elements.
|
default java.lang.Float |
previous() |
Deprecated.
Please use the corresponding type-specific method instead.
|
float |
previousFloat() |
Returns the previous element as a primitive type.
|
default int |
skip(int n) |
Skips the given number of elements.
|
hasPreviousforEachRemaining, forEachRemaining, next, nextFloatfloat previousFloat()
ListIterator.previous()@Deprecated default java.lang.Float previous()
previous in interface BidirectionalIterator<java.lang.Float>ListIterator.previous()default int back(int n)
The effect of this call is exactly the same as that of calling
previous() for n times (possibly stopping if
BidirectionalIterator.hasPrevious() becomes false).
back in interface ObjectBidirectionalIterator<java.lang.Float>n - the number of elements to skip back.previous()default int skip(int n)
The effect of this call is exactly the same as that of calling
FloatIterator.next() for n times (possibly stopping if Iterator.hasNext()
becomes false).
skip in interface FloatIteratorskip in interface ObjectBidirectionalIterator<java.lang.Float>skip in interface ObjectIterator<java.lang.Float>n - the number of elements to skip.Iterator.next()