public class ArrayFloatListIterator extends java.lang.Object implements FloatListIterator
float values.
This class implements ListIterator allowing
seamless integration with other APIs.
The iterator can be reset to the start if required.
add() and remove() are unsupported, but
set() is supported.
| Modifier and Type | Field and Description |
|---|---|
protected float[] |
array
The array to iterate over
|
protected int |
cursor
Cursor position
|
protected int |
last
Last returned position
|
| Constructor and Description |
|---|
ArrayFloatListIterator(float[] array)
Constructs an iterator over an array of
float values. |
| Modifier and Type | Method and Description |
|---|---|
void |
add(float value)
Adds the specified value to the list underlying the iterator at the
current iteration index (optional operation).
|
void |
add(java.lang.Float value) |
static ArrayFloatListIterator |
copyOf(float[] array)
Creates an iterator over a copy of an array of
float values. |
boolean |
hasNext() |
boolean |
hasPrevious() |
boolean |
isModifiable()
Checks whether the iterator can currently be modified.
|
boolean |
isResettable()
Checks whether the iterator can be reset.
|
java.lang.Float |
next() |
float |
nextFloat()
Gets the next value from the iterator
|
int |
nextIndex() |
java.lang.Float |
previous() |
float |
previousFloat()
Gets the previous value from the iterator.
|
int |
previousIndex() |
void |
remove() |
void |
reset()
Resets the iterator back to its initial state (optional operation).
|
void |
set(float value)
Sets the last retrieved value from the iterator (optional operation).
|
void |
set(java.lang.Float value) |
protected final float[] array
protected int cursor
protected int last
public ArrayFloatListIterator(float[] array)
float values.
The array is assigned internally, thus the caller holds a reference to the internal state of the returned iterator. It is not recommended to modify the state of the array after construction.
array - the array to iterate over, must not be nulljava.lang.IllegalArgumentException - if the array is nullpublic static ArrayFloatListIterator copyOf(float[] array)
float values.
The specified array is copied, ensuring the original data is unaltered.
Note that the class is not immutable due to the set methods.
array - the array to iterate over, must not be nulljava.lang.IllegalArgumentException - if the array is nullpublic boolean isModifiable()
PrimitiveIteratorisModifiable in interface PrimitiveIterator<java.lang.Float>true if the modification methods of the iterator can be usedpublic boolean isResettable()
PrimitiveIteratorisResettable in interface PrimitiveIterator<java.lang.Float>true if the object can be resetpublic boolean hasNext()
hasNext in interface java.util.Iterator<java.lang.Float>hasNext in interface java.util.ListIterator<java.lang.Float>public int nextIndex()
nextIndex in interface java.util.ListIterator<java.lang.Float>public float nextFloat()
FloatIteratornextFloat in interface FloatIteratorpublic java.lang.Float next()
next in interface java.util.Iterator<java.lang.Float>next in interface java.util.ListIterator<java.lang.Float>public boolean hasPrevious()
hasPrevious in interface java.util.ListIterator<java.lang.Float>public int previousIndex()
previousIndex in interface java.util.ListIterator<java.lang.Float>public float previousFloat()
FloatListIteratorpreviousFloat in interface FloatListIteratorpublic java.lang.Float previous()
previous in interface java.util.ListIterator<java.lang.Float>public void add(float value)
FloatListIteratoradd in interface FloatListIteratorvalue - the value to addpublic void add(java.lang.Float value)
add in interface java.util.ListIterator<java.lang.Float>public void remove()
remove in interface java.util.Iterator<java.lang.Float>remove in interface java.util.ListIterator<java.lang.Float>public void set(float value)
FloatListIteratorset in interface FloatListIteratorvalue - the value to setpublic void set(java.lang.Float value)
set in interface java.util.ListIterator<java.lang.Float>public void reset()
PrimitiveIteratorreset in interface PrimitiveIterator<java.lang.Float>Copyright © 2005–2018 Joda.org. All rights reserved.