Class Overview
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.
|
|
[Expand]
Inherited Methods |
From class java.lang.Object
|
Object
|
clone()
Returns a new instance of the same class as the receiver, whose slots
have been filled in with the values in the slots of the receiver.
|
|
boolean
|
equals(Object o)
Compares the argument to the receiver, and returns true if they represent
the same object using a class specific comparison.
|
|
void
|
finalize()
Called by the virtual machine when there are no longer any (non-weak)
references to the receiver.
|
|
final
Class<? extends Object>
|
getClass()
Returns the unique instance of java.lang.Class which represents the class
of the receiver.
|
|
int
|
hashCode()
Returns an integer hash code for the receiver.
|
|
final
void
|
notify()
Causes one thread which is wait ing on the receiver to be
made ready to run.
|
|
final
void
|
notifyAll()
Causes all threads which are wait ing on the receiver to
be made ready to run.
|
|
String
|
toString()
Returns a string containing a concise, human-readable description of the
receiver.
|
|
final
void
|
wait(long time, int frac)
Causes the thread which sent this message to be made not ready to run
either pending some change in the receiver (as indicated by
notify or notifyAll) or the expiration of
the timeout.
|
|
final
void
|
wait(long time)
Causes the thread which sent this message to be made not ready to run
either pending some change in the receiver (as indicated by
notify or notifyAll) or the expiration of
the timeout.
|
|
final
void
|
wait()
Causes the thread which sent this message to be made not ready to run
pending some change in the receiver (as indicated by notify
or notifyAll).
|
|
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