java.text.FieldPosition
FieldPosition is used to identify fields in formatted Strings.
Summary
Public Constructors
Public Methods
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait
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
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.
public
Format.Field
getFieldAttribute()
Returns the attribute which is being identified.
public
int
hashCode()
Returns an integer hash code for the receiver. Objects which are equal
answer the same value for this method.
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