public class ParsePosition extends Object
ParsePosition
is a simple class used by Format
and its subclasses to keep track of the current position during parsing. The parseObject
method in the various Format
classes requires a ParsePosition
object as an argument. By design, as you parse through a string with different formats, you can use the same ParsePosition
, since the index parameter records the current position.
Constructor | Description |
---|---|
ParsePosition |
Create a new ParsePosition with the given initial index. |
Modifier and Type | Method | Description |
---|---|---|
boolean |
equals |
Overrides equals |
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. |
int |
hashCode() |
Returns a hash code for this ParsePosition. |
void |
setErrorIndex |
Set the index at which a parse error occurred. |
void |
setIndex |
Set the current parse position. |
String |
toString() |
Return a string representation of this ParsePosition. |
public ParsePosition(int index)
index
- initial indexpublic int getIndex()
public void setIndex(int index)
index
- the current parse positionpublic void setErrorIndex(int ei)
ei
- the index at which an error occurredpublic int getErrorIndex()
public boolean equals(Object obj)
public int hashCode()
public String toString()
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/text/ParsePosition.html