Java.Text.ICharacterIterator Members

The members of Java.Text.ICharacterIterator are listed below.

Public Properties

[read-only]
BeginIndexint. Returns the begin index.
[read-only]
EndIndexint. Returns the end index.
[read-only]
Indexint. Returns the current index.

Public Methods

Clone() : Java.Lang.Object
Returns a new CharacterIterator with the same properties.
Current() : char
Returns the character at the current index.
First() : char
Sets the current position to the begin index and returns the character at the new position.
Last() : char
Sets the current position to the end index - 1 and returns the character at the new position.
Next() : char
Increments the current index and returns the character at the new index.
Previous() : char
Decrements the current index and returns the character at the new index.
SetIndex(int) : char
Sets the current index to a new position and returns the character at the new index.