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