Example usage for Java java.text FieldPosition fields, constructors, methods, implement or subclass
The text is from its open source code.
FieldPosition(int field) Creates a FieldPosition object for the given field. | |
FieldPosition(Format.Field attribute) Creates a FieldPosition object for the given field constant. |
int | getBeginIndex() Retrieves the index of the first character in the requested field. |
int | getEndIndex() Retrieves the index of the character following the last character in the requested field. |
int | getField() Retrieves the field identifier. |
void | setBeginIndex(int bi) Sets the begin index. |
void | setEndIndex(int ei) Sets the end index. |