Android
java.text
public class

java.text.FieldPosition

java.lang.Object
java.text.FieldPosition

FieldPosition is used to identify fields in formatted Strings.

Summary

Public Constructors

            FieldPosition(int field)
Constructs a new FieldPosition on the specified field.
            FieldPosition(Format.Field attribute)
Constructs a new FieldPosition on the specified Field attribute.
            FieldPosition(Format.Field attribute, int field)
Constructs a new FieldPosition on the specified Field attribute and field id.

Public Methods

          boolean  equals(Object object)
Compares the specified object to this FieldPosition and answer if they are equal.
          int  getBeginIndex()
Returns the index of the beginning of the field.
          int  getEndIndex()
Returns the index one past the end of the field.
          int  getField()
Returns the field which is being identified.
          Format.Field  getFieldAttribute()
Returns the attribute which is being identified.
          int  hashCode()
Returns an integer hash code for the receiver.
          void  setBeginIndex(int index)
Sets the index of the beginning of the field.
          void  setEndIndex(int index)
Sets the index of the end of the field.
          String  toString()
Returns the string representation of this FieldPosition.
Methods inherited from class java.lang.Object

Details

Public Constructors

public FieldPosition(int field)

Constructs a new FieldPosition on the specified field.

Parameters

field the field to identify

public FieldPosition(Format.Field attribute)

Constructs a new FieldPosition on the specified Field attribute.

Parameters

attribute the field attribute to identify

public FieldPosition(Format.Field attribute, int field)

Constructs a new FieldPosition on the specified Field attribute and field id.

Parameters

attribute the field attribute to identify
field the field to identify

Public Methods

public boolean equals(Object object)

Compares the specified object to this FieldPosition and answer if they are equal. The object must be an instance of FieldPosition with the same field, begin index and end index.

Parameters

object the object to compare with this object

Returns

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

See Also

public int getBeginIndex()

Returns the index of the beginning of the field.

Returns

  • the first index of the field

public int getEndIndex()

Returns the index one past the end of the field.

Returns

  • one past the index of the last character in the field

public int getField()

Returns the field which is being identified.

Returns

  • the field

public Format.Field getFieldAttribute()

Returns the attribute which is being identified.

Returns

  • the field

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 setBeginIndex(int index)

Sets the index of the beginning of the field.

Parameters

index the index of the first character in the field

public void setEndIndex(int index)

Sets the index of the end of the field.

Parameters

index one past the index of the last character in the field

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