protected static class AbstractCharList.PListIterator extends java.lang.Object implements CharListIterator
Modifier | Constructor and Description |
---|---|
protected |
PListIterator(AbstractCharList list,
int start) |
Modifier and Type | Method and Description |
---|---|
void |
add(char value)
Adds the specified value to the list underlying the iterator at the
current iteration index (optional operation).
|
void |
add(java.lang.Character obj) |
boolean |
hasNext() |
boolean |
hasPrevious() |
boolean |
isModifiable()
Checks whether the iterator can currently be modified.
|
boolean |
isResettable()
Checks whether the iterator can be reset.
|
java.lang.Character |
next() |
char |
nextChar()
Gets the next value from the iterator
|
int |
nextIndex() |
java.lang.Character |
previous() |
char |
previousChar()
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(char value)
Sets the last retrieved value from the iterator (optional operation).
|
void |
set(java.lang.Character obj) |
protected PListIterator(AbstractCharList list, int start)
public boolean hasNext()
hasNext
in interface java.util.Iterator<java.lang.Character>
hasNext
in interface java.util.ListIterator<java.lang.Character>
public char nextChar()
CharIterator
nextChar
in interface CharIterator
public java.lang.Character next()
next
in interface java.util.Iterator<java.lang.Character>
next
in interface java.util.ListIterator<java.lang.Character>
public int nextIndex()
nextIndex
in interface java.util.ListIterator<java.lang.Character>
public boolean hasPrevious()
hasPrevious
in interface java.util.ListIterator<java.lang.Character>
public char previousChar()
CharListIterator
previousChar
in interface CharListIterator
public java.lang.Character previous()
previous
in interface java.util.ListIterator<java.lang.Character>
public int previousIndex()
previousIndex
in interface java.util.ListIterator<java.lang.Character>
public void remove()
remove
in interface java.util.Iterator<java.lang.Character>
remove
in interface java.util.ListIterator<java.lang.Character>
public void add(char value)
CharListIterator
add
in interface CharListIterator
value
- the value to addpublic void add(java.lang.Character obj)
add
in interface java.util.ListIterator<java.lang.Character>
public void set(char value)
CharListIterator
set
in interface CharListIterator
value
- the value to setpublic void set(java.lang.Character obj)
set
in interface java.util.ListIterator<java.lang.Character>
public boolean isModifiable()
PrimitiveIterator
isModifiable
in interface PrimitiveIterator<java.lang.Character>
true
if the modification methods of the iterator can be usedpublic boolean isResettable()
PrimitiveIterator
isResettable
in interface PrimitiveIterator<java.lang.Character>
true
if the object can be resetpublic void reset()
PrimitiveIterator
reset
in interface PrimitiveIterator<java.lang.Character>
Copyright © 2005–2018 Joda.org. All rights reserved.