Example usage for Java java.text CharacterIterator fields, constructors, methods, implement or subclass
The text is from its open source code.
char | DONE Constant that is returned when the iterator has reached either the end or the beginning of the text. |
char | current() Gets the character at the current position (as returned by getIndex()). |
char | first() Sets the position to getBeginIndex() and returns the character at that position. |
int | getIndex() Returns the current index. |
char | last() Sets the position to getEndIndex()-1 (getEndIndex() if the text is empty) and returns the character at that position. |
char | next() Increments the iterator's index by one and returns the character at the new index. |
char | previous() Decrements the iterator's index by one and returns the character at the new index. |
char | setIndex(int position) Sets the position to the specified position in the text and returns that character. |