Example usage for Java java.text ParsePosition fields, constructors, methods, implement or subclass
The text is from its open source code.
ParsePosition(int index) Create a new ParsePosition with the given initial index. |
int | getErrorIndex() Retrieve the index at which an error occurred, or -1 if the error index has not been set. |
int | getIndex() Retrieve the current parse position. |
void | setErrorIndex(int ei) Set the index at which a parse error occurred. |
void | setIndex(int index) Set the current parse position. |