Java java.text ParsePosition fields, constructors, methods, implement or subclass

Example usage for Java java.text ParsePosition fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.text ParsePosition.

The text is from its open source code.

Constructor

ParsePosition(int index)
Create a new ParsePosition with the given initial index.

Method

intgetErrorIndex()
Retrieve the index at which an error occurred, or -1 if the error index has not been set.
intgetIndex()
Retrieve the current parse position.
voidsetErrorIndex(int ei)
Set the index at which a parse error occurred.
voidsetIndex(int index)
Set the current parse position.