The members of Java.Text.ICharacterIterator are listed below.
| Clone() Returns a new CharacterIterator with the same properties. | ||
| Current() Returns the character at the current index. | ||
| First() Sets the current position to the begin index and returns the character at the new position. | ||
| Last() Sets the current position to the end index - 1 and returns the character at the new position. | ||
| Next() Increments the current index and returns the character at the new index. | ||
| Previous() Decrements the current index and returns the character at the new index. | ||
| SetIndex(int) Sets the current index to a new position and returns the character at the new index. | ||