Method Summary |
|
public Object | clone() Answers a new CharacterIterator with the same properties. |
public char | current() Answers the character at the current index. |
public char | first() Sets the current position to the begin index and answers the character at
the begin index. |
public int | getBeginIndex() Answers the begin index. |
public int | getEndIndex() Answers the end index. |
public int | getIndex() Answers the current index. |
public char | last() Sets the current position to the end index - 1 and answers the character
at the current position. |
public char | next() Increments the current index and returns the character at the new index. |
public char | previous() Decrements the current index and returns the character at the new index. |
public char | setIndex(int location) Sets the current index. |