protected static class AbstractBooleanList.PListIterator extends Object implements BooleanListIterator
Modifier | Constructor and Description |
---|---|
protected |
AbstractBooleanList.PListIterator(AbstractBooleanList list,
int start) |
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 obj) |
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 obj) |
protected AbstractBooleanList.PListIterator(AbstractBooleanList list, int start)
public boolean hasNext()
public boolean nextBoolean()
BooleanIterator
nextBoolean
in interface BooleanIterator
public int nextIndex()
nextIndex
in interface ListIterator<Boolean>
public boolean hasPrevious()
hasPrevious
in interface ListIterator<Boolean>
public boolean previousBoolean()
BooleanListIterator
previousBoolean
in interface BooleanListIterator
public Boolean previous()
previous
in interface ListIterator<Boolean>
public int previousIndex()
previousIndex
in interface ListIterator<Boolean>
public void remove()
public void add(boolean value)
BooleanListIterator
add
in interface BooleanListIterator
value
- the value to addpublic void add(Boolean obj)
add
in interface ListIterator<Boolean>
public void set(boolean value)
BooleanListIterator
set
in interface BooleanListIterator
value
- the value to setpublic void set(Boolean obj)
set
in interface ListIterator<Boolean>
public 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 void reset()
PrimitiveIterator
reset
in interface PrimitiveIterator<Boolean>
Copyright © 2005-2012 Joda.org. All Rights Reserved.