Package java.text
Interface CharacterIterator
-
- All Superinterfaces:
Cloneable
- All Known Subinterfaces:
AttributedCharacterIterator
- All Known Implementing Classes:
StringCharacterIterator
public interface CharacterIterator extends Cloneable
-
-
Field Summary
Fields Modifier and Type Field Description static char
DONE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
clone()
char
current()
char
first()
int
getBeginIndex()
int
getEndIndex()
int
getIndex()
char
last()
char
next()
char
previous()
char
setIndex(int var0)
-
-
-
Field Detail
-
DONE
static final char DONE
- See Also:
- Constant Field Values
-
-
Method Detail
-
clone
Object clone()
-
current
char current()
-
first
char first()
-
getBeginIndex
int getBeginIndex()
-
getEndIndex
int getEndIndex()
-
getIndex
int getIndex()
-
last
char last()
-
next
char next()
-
previous
char previous()
-
setIndex
char setIndex(int var0)
-
-