FieldPosition is a simple class used by Format
and its subclasses to identify fields in formatted output. Fields are
identified by constants, whose names typically end with _FIELD,
defined in the various subclasses of Format. See
ERA_FIELD and its friends in DateFormat for
an example.
FieldPosition keeps track of the position of the
field within the formatted output with two indices: the index
of the first character of the field and the index of the last
character of the field.
One version of the format method in the various
Format classes requires a FieldPosition
object as an argument. You use this format method
to perform partial formatting or to get information about the
formatted output (such as the position of a field).
Creates a FieldPosition object for the given field. Fields are
identified by constants, whose names typically end with _FIELD,
in the various subclasses of Format.
Submit a bug or feature For further API reference and developer documentation, see Java 2 SDK SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries. Copyright 1993-2001 Sun Microsystems, Inc. 901 San Antonio Road Palo Alto, California, 94303, U.S.A. All Rights Reserved.