protected static class AbstractFloatList.PListIterator extends Object implements FloatListIterator
| Modifier | Constructor and Description |
|---|---|
protected |
AbstractFloatList.PListIterator(AbstractFloatList list,
int start) |
| 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(Float obj) |
boolean |
hasNext() |
boolean |
hasPrevious() |
boolean |
isModifiable()
Checks whether the iterator can currently be modified.
|
boolean |
isResettable()
Checks whether the iterator can be reset.
|
Float |
next() |
float |
nextFloat()
Gets the next value from the iterator
|
int |
nextIndex() |
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(Float obj) |
protected AbstractFloatList.PListIterator(AbstractFloatList list, int start)
public boolean hasNext()
public float nextFloat()
FloatIteratornextFloat in interface FloatIteratorpublic int nextIndex()
nextIndex in interface ListIterator<Float>public boolean hasPrevious()
hasPrevious in interface ListIterator<Float>public float previousFloat()
FloatListIteratorpreviousFloat in interface FloatListIteratorpublic Float previous()
previous in interface ListIterator<Float>public int previousIndex()
previousIndex in interface ListIterator<Float>public void remove()
public void add(float value)
FloatListIteratoradd in interface FloatListIteratorvalue - the value to addpublic void add(Float obj)
add in interface ListIterator<Float>public void set(float value)
FloatListIteratorset in interface FloatListIteratorvalue - the value to setpublic void set(Float obj)
set in interface ListIterator<Float>public boolean isModifiable()
PrimitiveIteratorisModifiable in interface PrimitiveIterator<Float>true if the modification methods of the iterator can be usedpublic boolean isResettable()
PrimitiveIteratorisResettable in interface PrimitiveIterator<Float>true if the object can be resetpublic void reset()
PrimitiveIteratorreset in interface PrimitiveIterator<Float>Copyright © 2005-2012 Joda.org. All Rights Reserved.