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