|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.joda.primitives.iterator.impl.ArrayBooleanIterator
public class ArrayBooleanIterator
An iterator over an array of boolean values.
This class implements Iterator allowing
seamless integration with other APIs.
The iterator can be reset to the start if required.
It is unmodifiable and remove() is unsupported.
| Field Summary | |
|---|---|
protected boolean[] |
array
The array to iterate over |
protected int |
cursor
Cursor position |
| Constructor Summary | |
|---|---|
ArrayBooleanIterator(boolean[] array)
Constructs an iterator over an array of boolean values. |
|
| Method Summary | |
|---|---|
static ArrayBooleanIterator |
copyOf(boolean[] array)
Creates an iterator over a copy of an array of boolean values. |
boolean |
hasNext()
|
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 |
void |
remove()
|
void |
reset()
Resets the iterator back to its initial state (optional operation). |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected final boolean[] array
protected int cursor
| Constructor Detail |
|---|
public ArrayBooleanIterator(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 null
IllegalArgumentException - if the array is null| Method Detail |
|---|
public static ArrayBooleanIterator copyOf(boolean[] array)
boolean values.
The specified array is copied, making this class effectively immutable.
Note that the class is not final thus it is not truly immutable.
array - the array to iterate over, must not be null
IllegalArgumentException - if the array is nullpublic boolean isModifiable()
PrimitiveIterator
isModifiable in interface PrimitiveIterator<Boolean>true if the modification methods of the iterator can be usedpublic boolean isResettable()
PrimitiveIterator
isResettable in interface PrimitiveIterator<Boolean>true if the object can be resetpublic boolean hasNext()
hasNext in interface Iterator<Boolean>public boolean nextBoolean()
BooleanIterator
nextBoolean in interface BooleanIteratorpublic Boolean next()
next in interface Iterator<Boolean>public void remove()
remove in interface Iterator<Boolean>public void reset()
PrimitiveIterator
reset in interface PrimitiveIterator<Boolean>
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||