public class UCharacterIteratorWrapper extends Object implements CharacterIterator
DONE| Constructor and Description |
|---|
UCharacterIteratorWrapper(UCharacterIterator iter) |
| Modifier and Type | Method and Description |
|---|---|
Object |
clone()
Create a copy of this iterator
|
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 |
getBeginIndex()
Returns the start index of the text.
|
int |
getEndIndex()
Returns the end index of the text.
|
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.
|
public UCharacterIteratorWrapper(UCharacterIterator iter)
public char first()
first in interface CharacterIteratorUCharacterIteratorWrapper.getBeginIndex()public char last()
last in interface CharacterIteratorUCharacterIteratorWrapper.getEndIndex()public char current()
current in interface CharacterIteratorUCharacterIteratorWrapper.getIndex()public char next()
next in interface CharacterIteratorpublic char previous()
previous in interface CharacterIteratorpublic char setIndex(int position)
setIndex in interface CharacterIteratorposition - the position within the text. Valid values range from
getBeginIndex() to getEndIndex(). An IllegalArgumentException is thrown
if an invalid value is supplied.public int getBeginIndex()
getBeginIndex in interface CharacterIteratorpublic int getEndIndex()
getEndIndex in interface CharacterIteratorpublic int getIndex()
getIndex in interface CharacterIteratorpublic Object clone()
clone in interface CharacterIteratorclone in class Object