CharacterIterator (Java SE 26 & JDK 26)
- All Superinterfaces:
Cloneable
- All Known Subinterfaces:
AttributedCharacterIterator
- All Known Implementing Classes:
Segment, StringCharacterIterator
-
Field Summary
Fields
static final charConstant that is returned when the iterator has reached either the end or the beginning of the text.
-
Method Summary
clone()Create a copy of this iterator
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.
intReturns the start index of the text.
intReturns the end index of the text.
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.
-
Field Details
-
DONE
-
-
Method Details
-
first
-
last
-
current
-
next
-
previous
-
setIndex
-
getBeginIndex
-
getEndIndex
-
getIndex
-
clone
-