|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.joda.primitives.listiterator.impl.ArrayShortListIterator
public class ArrayShortListIterator
An iterator over an array of short 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.
| Field Summary | |
|---|---|
protected short[] |
array
The array to iterate over |
protected int |
cursor
Cursor position |
protected int |
last
Last returned position |
| Constructor Summary | |
|---|---|
ArrayShortListIterator(short[] array)
Constructs an iterator over an array of short values. |
|
| Method Summary | |
|---|---|
void |
add(short value)
Adds the specified value to the list underlying the iterator at the current iteration index (optional operation). |
void |
add(Short value)
|
static ArrayShortListIterator |
copyOf(short[] array)
Creates an iterator over a copy of an array of short values. |
boolean |
hasNext()
|
boolean |
hasPrevious()
|
boolean |
isModifiable()
Checks whether the iterator can currently be modified. |
boolean |
isResettable()
Checks whether the iterator can be reset. |
Short |
next()
|
int |
nextIndex()
|
short |
nextShort()
Gets the next value from the iterator |
Short |
previous()
|
int |
previousIndex()
|
short |
previousShort()
Gets the previous value from the iterator. |
void |
remove()
|
void |
reset()
Resets the iterator back to its initial state (optional operation). |
void |
set(short value)
Sets the last retrieved value from the iterator (optional operation). |
void |
set(Short value)
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected final short[] array
protected int cursor
protected int last
| Constructor Detail |
|---|
public ArrayShortListIterator(short[] array)
short 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 null
IllegalArgumentException - if the array is null| Method Detail |
|---|
public static ArrayShortListIterator copyOf(short[] array)
short 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 null
IllegalArgumentException - if the array is nullpublic boolean isModifiable()
PrimitiveIterator
isModifiable in interface PrimitiveIterator<Short>true if the modification methods of the iterator can be usedpublic boolean isResettable()
PrimitiveIterator
isResettable in interface PrimitiveIterator<Short>true if the object can be resetpublic boolean hasNext()
hasNext in interface Iterator<Short>hasNext in interface ListIterator<Short>public int nextIndex()
nextIndex in interface ListIterator<Short>public short nextShort()
ShortIterator
nextShort in interface ShortIteratorpublic Short next()
next in interface Iterator<Short>next in interface ListIterator<Short>public boolean hasPrevious()
hasPrevious in interface ListIterator<Short>public int previousIndex()
previousIndex in interface ListIterator<Short>public short previousShort()
ShortListIterator
previousShort in interface ShortListIteratorpublic Short previous()
previous in interface ListIterator<Short>public void add(short value)
ShortListIterator
add in interface ShortListIteratorvalue - the value to addpublic void add(Short value)
add in interface ListIterator<Short>public void remove()
remove in interface Iterator<Short>remove in interface ListIterator<Short>public void set(short value)
ShortListIterator
set in interface ShortListIteratorvalue - the value to setpublic void set(Short value)
set in interface ListIterator<Short>public void reset()
PrimitiveIterator
reset in interface PrimitiveIterator<Short>
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||