Android
java.text
public class

java.text.ParsePosition

java.lang.Object
java.text.ParsePosition

ParsePosition is used to track the current position in a String being parsed.

Summary

Public Constructors

            ParsePosition(int index)
Constructs a new ParsePosition at the specified index.

Public Methods

          boolean  equals(Object object)
Compares the specified object to this ParsePosition and answer if they are equal.
          int  getErrorIndex()
Returns the index at which the parse could not continue.
          int  getIndex()
Returns the current parse position.
          int  hashCode()
Returns an integer hash code for the receiver.
          void  setErrorIndex(int index)
Sets the index at which the parse could not continue.
          void  setIndex(int index)
Sets the current parse position.
          String  toString()
Returns the string representation of this FieldPosition.
Methods inherited from class java.lang.Object

Details

Public Constructors

public ParsePosition(int index)

Constructs a new ParsePosition at the specified index.

Parameters

index the index to begin parsing

Public Methods

public boolean equals(Object object)

Compares the specified object to this ParsePosition and answer if they are equal. The object must be an instance of ParsePosition and have the same index and error index.

Parameters

object the object to compare with this object

Returns

  • true if the specified object is equal to this ParsePosition, false otherwise

See Also

public int getErrorIndex()

Returns the index at which the parse could not continue.

Returns

  • the index of the parse error, or -1 if there is no error

public int getIndex()

Returns the current parse position.

Returns

  • the current position

public int hashCode()

Returns an integer hash code for the receiver. Objects which are equal answer the same value for this method.

Returns

  • the receiver's hash

See Also

public void setErrorIndex(int index)

Sets the index at which the parse could not continue.

Parameters

index the index of the parse error

public void setIndex(int index)

Sets the current parse position.

Parameters

index the current parse position

public String toString()

Returns the string representation of this FieldPosition.

Returns

  • the string representation of this FieldPosition
Copyright 2007 Google Inc. Build 0.9_r1-98467 - 14 Aug 2008 18:56