protected static class AbstractLongList.PListIterator extends Object implements LongListIterator
Modifier | Constructor and Description |
---|---|
protected |
AbstractLongList.PListIterator(AbstractLongList list,
int start) |
Modifier and Type | Method and Description |
---|---|
void |
add(long value)
Adds the specified value to the list underlying the iterator at the
current iteration index (optional operation).
|
void |
add(Long obj) |
boolean |
hasNext() |
boolean |
hasPrevious() |
boolean |
isModifiable()
Checks whether the iterator can currently be modified.
|
boolean |
isResettable()
Checks whether the iterator can be reset.
|
Long |
next() |
int |
nextIndex() |
long |
nextLong()
Gets the next value from the iterator
|
Long |
previous() |
int |
previousIndex() |
long |
previousLong()
Gets the previous value from the iterator.
|
void |
remove() |
void |
reset()
Resets the iterator back to its initial state (optional operation).
|
void |
set(long value)
Sets the last retrieved value from the iterator (optional operation).
|
void |
set(Long obj) |
protected AbstractLongList.PListIterator(AbstractLongList list, int start)
public boolean hasNext()
public long nextLong()
LongIterator
nextLong
in interface LongIterator
public int nextIndex()
nextIndex
in interface ListIterator<Long>
public boolean hasPrevious()
hasPrevious
in interface ListIterator<Long>
public long previousLong()
LongListIterator
previousLong
in interface LongListIterator
public Long previous()
previous
in interface ListIterator<Long>
public int previousIndex()
previousIndex
in interface ListIterator<Long>
public void remove()
public void add(long value)
LongListIterator
add
in interface LongListIterator
value
- the value to addpublic void add(Long obj)
add
in interface ListIterator<Long>
public void set(long value)
LongListIterator
set
in interface LongListIterator
value
- the value to setpublic void set(Long obj)
set
in interface ListIterator<Long>
public boolean isModifiable()
PrimitiveIterator
isModifiable
in interface PrimitiveIterator<Long>
true
if the modification methods of the iterator can be usedpublic boolean isResettable()
PrimitiveIterator
isResettable
in interface PrimitiveIterator<Long>
true
if the object can be resetpublic void reset()
PrimitiveIterator
reset
in interface PrimitiveIterator<Long>
Copyright © 2005-2012 Joda.org. All Rights Reserved.