public class CharArrayList.CharListIterator extends Object implements Iterator<Character>, ListIterator<Character>
| Constructor and Description |
|---|
CharListIterator(int idx) |
| Modifier and Type | Method and Description |
|---|---|
void |
add(char k) |
void |
add(Character ok)
Delegates to the corresponding type-specific method.
|
boolean |
hasNext() |
boolean |
hasPrevious() |
Character |
next()
Deprecated.
Please use the corresponding type-specific method instead.
|
char |
nextChar() |
int |
nextIndex() |
Character |
previous()
Delegates to the corresponding type-specific method.
|
char |
previousChar() |
int |
previousIndex() |
void |
remove() |
void |
set(char k) |
void |
set(Character ok)
Delegates to the corresponding type-specific method.
|
int |
skip(int n)
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitforEachRemainingpublic CharListIterator(int idx)
public Character previous()
previous in interface ListIterator<Character>public boolean hasNext()
public boolean hasPrevious()
hasPrevious in interface ListIterator<Character>public char nextChar()
public char previousChar()
public int nextIndex()
nextIndex in interface ListIterator<Character>public int previousIndex()
previousIndex in interface ListIterator<Character>public void set(Character ok)
set in interface ListIterator<Character>public void add(Character ok)
add in interface ListIterator<Character>public void add(char k)
public void set(char k)
public void remove()
@Deprecated public Character next()
public int skip(int n)
Copyright © 2016. All rights reserved.