public class ArrayBooleanListIterator extends Object implements BooleanListIterator
boolean 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 boolean[] |
array
The array to iterate over
|
protected int |
cursor
Cursor position
|
protected int |
last
Last returned position
|
| Constructor and Description |
|---|
ArrayBooleanListIterator(boolean[] array)
Constructs an iterator over an array of
boolean values. |
| Modifier and Type | Method and Description |
|---|---|
void |
add(boolean value)
Adds the specified value to the list underlying the iterator at the
current iteration index (optional operation).
|
void |
add(Boolean value) |
static ArrayBooleanListIterator |
copyOf(boolean[] array)
Creates an iterator over a copy of an array of
boolean values. |
boolean |
hasNext() |
boolean |
hasPrevious() |
boolean |
isModifiable()
Checks whether the iterator can currently be modified.
|
boolean |
isResettable()
Checks whether the iterator can be reset.
|
Boolean |
next() |
boolean |
nextBoolean()
Gets the next value from the iterator
|
int |
nextIndex() |
Boolean |
previous() |
boolean |
previousBoolean()
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(boolean value)
Sets the last retrieved value from the iterator (optional operation).
|
void |
set(Boolean value) |
protected final boolean[] array
protected int cursor
protected int last
public ArrayBooleanListIterator(boolean[] array)
boolean 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 nullIllegalArgumentException - if the array is nullpublic static ArrayBooleanListIterator copyOf(boolean[] array)
boolean 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 nullIllegalArgumentException - if the array is nullpublic boolean isModifiable()
PrimitiveIteratorisModifiable in interface PrimitiveIterator<Boolean>true if the modification methods of the iterator can be usedpublic boolean isResettable()
PrimitiveIteratorisResettable in interface PrimitiveIterator<Boolean>true if the object can be resetpublic boolean hasNext()
public int nextIndex()
nextIndex in interface ListIterator<Boolean>public boolean nextBoolean()
BooleanIteratornextBoolean in interface BooleanIteratorpublic boolean hasPrevious()
hasPrevious in interface ListIterator<Boolean>public int previousIndex()
previousIndex in interface ListIterator<Boolean>public boolean previousBoolean()
BooleanListIteratorpreviousBoolean in interface BooleanListIteratorpublic Boolean previous()
previous in interface ListIterator<Boolean>public void add(boolean value)
BooleanListIteratoradd in interface BooleanListIteratorvalue - the value to addpublic void add(Boolean value)
add in interface ListIterator<Boolean>public void remove()
public void set(boolean value)
BooleanListIteratorset in interface BooleanListIteratorvalue - the value to setpublic void set(Boolean value)
set in interface ListIterator<Boolean>public void reset()
PrimitiveIteratorreset in interface PrimitiveIterator<Boolean>Copyright © 2005-2012 Joda.org. All Rights Reserved.