protected static class AbstractByteList.PListIterator extends Object implements ByteListIterator
| Modifier | Constructor and Description |
|---|---|
protected |
AbstractByteList.PListIterator(AbstractByteList list,
int start) |
| Modifier and Type | Method and Description |
|---|---|
void |
add(byte value)
Adds the specified value to the list underlying the iterator at the
current iteration index (optional operation).
|
void |
add(Byte obj) |
boolean |
hasNext() |
boolean |
hasPrevious() |
boolean |
isModifiable()
Checks whether the iterator can currently be modified.
|
boolean |
isResettable()
Checks whether the iterator can be reset.
|
Byte |
next() |
byte |
nextByte()
Gets the next value from the iterator
|
int |
nextIndex() |
Byte |
previous() |
byte |
previousByte()
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(byte value)
Sets the last retrieved value from the iterator (optional operation).
|
void |
set(Byte obj) |
protected AbstractByteList.PListIterator(AbstractByteList list, int start)
public boolean hasNext()
public byte nextByte()
ByteIteratornextByte in interface ByteIteratorpublic int nextIndex()
nextIndex in interface ListIterator<Byte>public boolean hasPrevious()
hasPrevious in interface ListIterator<Byte>public byte previousByte()
ByteListIteratorpreviousByte in interface ByteListIteratorpublic Byte previous()
previous in interface ListIterator<Byte>public int previousIndex()
previousIndex in interface ListIterator<Byte>public void remove()
public void add(byte value)
ByteListIteratoradd in interface ByteListIteratorvalue - the value to addpublic void add(Byte obj)
add in interface ListIterator<Byte>public void set(byte value)
ByteListIteratorset in interface ByteListIteratorvalue - the value to setpublic void set(Byte obj)
set in interface ListIterator<Byte>public boolean isModifiable()
PrimitiveIteratorisModifiable in interface PrimitiveIterator<Byte>true if the modification methods of the iterator can be usedpublic boolean isResettable()
PrimitiveIteratorisResettable in interface PrimitiveIterator<Byte>true if the object can be resetpublic void reset()
PrimitiveIteratorreset in interface PrimitiveIterator<Byte>Copyright © 2005-2012 Joda.org. All Rights Reserved.