Java java.text CharacterIterator fields, constructors, methods, implement or subclass

Example usage for Java java.text CharacterIterator fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.text CharacterIterator.

The text is from its open source code.

Field

charDONE
Constant that is returned when the iterator has reached either the end or the beginning of the text.

Method

charcurrent()
Gets the character at the current position (as returned by getIndex()).
charfirst()
Sets the position to getBeginIndex() and returns the character at that position.
intgetIndex()
Returns the current index.
charlast()
Sets the position to getEndIndex()-1 (getEndIndex() if the text is empty) and returns the character at that position.
charnext()
Increments the iterator's index by one and returns the character at the new index.
charprevious()
Decrements the iterator's index by one and returns the character at the new index.
charsetIndex(int position)
Sets the position to the specified position in the text and returns that character.