Format (Java 2 Platform SE 5.0) (original) (raw)
java.text
Class Format
java.lang.Object
java.text.Format
All Implemented Interfaces:
Direct Known Subclasses:
DateFormat, MessageFormat, NumberFormat
public abstract class Format
extends Object
implements Serializable, Cloneable
Format
is an abstract base class for formatting locale-sensitive information such as dates, messages, and numbers.
Format
defines the programming interface for formatting locale-sensitive objects into String
s (theformat
method) and for parsing String
s back into objects (the parseObject
method).
Generally, a format's parseObject
method must be able to parse any string formatted by its format
method. However, there may be exceptional cases where this is not possible. For example, aformat
method might create two adjacent integer numbers with no separator in between, and in this case the parseObject
could not tell which digits belong to which number.
Subclassing
The Java 2 platform provides three specialized subclasses of Format
--DateFormat
, MessageFormat
, andNumberFormat
--for formatting dates, messages, and numbers, respectively.
Concrete subclasses must implement three methods:
format(Object obj, StringBuffer toAppendTo, FieldPosition pos)
formatToCharacterIterator(Object obj)
parseObject(String source, ParsePosition pos)
These general methods allow polymorphic parsing and formatting of objects and are used, for example, byMessageFormat
. Subclasses often also provide additionalformat
methods for specific input types as well asparse
methods for specific result types. Anyparse
method that does not take aParsePosition
argument should throwParseException
when no text in the required format is at the beginning of the input text.
Most subclasses will also implement the following factory methods:
getInstance
for getting a useful format object appropriate for the current localegetInstance(Locale)
for getting a useful format object appropriate for the specified locale In addition, some subclasses may also implement othergetXxxxInstance
methods for more specialized control. For example, theNumberFormat
class providesgetPercentInstance
andgetCurrencyInstance
methods for getting specialized number formatters.
Subclasses of Format
that allow programmers to create objects for locales (with getInstance(Locale)
for example) must also implement the following class method:
public static Locale[] getAvailableLocales()
And finally subclasses may define a set of constants to identify the various fields in the formatted output. These constants are used to create a FieldPosition object which identifies what information is contained in the field and its position in the formatted result. These constants should be named_item__FIELD
where _item_
identifies the field. For examples of these constants, see ERA_FIELD
and its friends in DateFormat.
Synchronization
Formats are generally not synchronized. It is recommended to create separate format instances for each thread. If multiple threads access a format concurrently, it must be synchronized externally.
See Also:
ParsePosition, FieldPosition, NumberFormat, DateFormat, MessageFormat, Serialized Form
Nested Class Summary | |
---|---|
static class | Format.Field Defines constants that are used as attribute keys in theAttributedCharacterIterator returned from Format.formatToCharacterIterator and as field identifiers in FieldPosition. |
Constructor Summary |
---|
Format() |
Method Summary | |
---|---|
Object | clone() Creates and returns a copy of this object. |
String | format(Object obj) Formats an object to produce a string. |
abstract StringBuffer | [format](../../java/text/Format.html#format%28java.lang.Object, java.lang.StringBuffer, java.text.FieldPosition%29)(Object obj,StringBuffer toAppendTo,FieldPosition pos) Formats an object and appends the resulting text to a given string buffer. |
AttributedCharacterIterator | formatToCharacterIterator(Object obj) Formats an Object producing an AttributedCharacterIterator. |
Object | parseObject(String source) Parses text from the beginning of the given string to produce an object. |
abstract Object | [parseObject](../../java/text/Format.html#parseObject%28java.lang.String, java.text.ParsePosition%29)(String source,ParsePosition pos) Parses text from a string to produce an object. |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, [wait](../../java/lang/Object.html#wait%28long, int%29) |
Constructor Detail |
---|
Format
public Format()
Method Detail |
---|
format
public final String format(Object obj)
Formats an object to produce a string. This is equivalent to
[format](../../java/text/Format.html#format%28java.lang.Object, java.lang.StringBuffer, java.text.FieldPosition%29)
(obj, new StringBuffer(), new FieldPosition(0)).toString();
Parameters:
obj
- The object to format
Returns:
Formatted string.
Throws:
[IllegalArgumentException](../../java/lang/IllegalArgumentException.html "class in java.lang")
- if the Format cannot format the given object
format
public abstract StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos)
Formats an object and appends the resulting text to a given string buffer. If the pos
argument identifies a field used by the format, then its indices are set to the beginning and end of the first such field encountered.
Parameters:
obj
- The object to format
toAppendTo
- where the text is to be appended
pos
- A FieldPosition
identifying a field in the formatted text
Returns:
the string buffer passed in as toAppendTo
, with formatted text appended
Throws:
[NullPointerException](../../java/lang/NullPointerException.html "class in java.lang")
- if toAppendTo
orpos
is null
[IllegalArgumentException](../../java/lang/IllegalArgumentException.html "class in java.lang")
- if the Format cannot format the given object
formatToCharacterIterator
public AttributedCharacterIterator formatToCharacterIterator(Object obj)
Formats an Object producing an AttributedCharacterIterator
. You can use the returned AttributedCharacterIterator
to build the resulting String, as well as to determine information about the resulting String.
Each attribute key of the AttributedCharacterIterator will be of typeField
. It is up to each Format
implementation to define what the legal values are for each attribute in theAttributedCharacterIterator
, but typically the attribute key is also used as the attribute value.
The default implementation creates anAttributedCharacterIterator
with no attributes. Subclasses that support fields should override this and create anAttributedCharacterIterator
with meaningful attributes.
Parameters:
obj
- The object to format
Returns:
AttributedCharacterIterator describing the formatted value.
Throws:
[NullPointerException](../../java/lang/NullPointerException.html "class in java.lang")
- if obj is null.
[IllegalArgumentException](../../java/lang/IllegalArgumentException.html "class in java.lang")
- when the Format cannot format the given object.
Since:
1.4
parseObject
public abstract Object parseObject(String source, ParsePosition pos)
Parses text from a string to produce an object.
The method attempts to parse text starting at the index given bypos
. If parsing succeeds, then the index of pos
is updated to the index after the last character used (parsing does not necessarily use all characters up to the end of the string), and the parsed object is returned. The updated pos
can be used to indicate the starting point for the next call to this method. If an error occurs, then the index of pos
is not changed, the error index of pos
is set to the index of the character where the error occurred, and null is returned.
Parameters:
source
- A String
, part of which should be parsed.
pos
- A ParsePosition
object with index and error index information as described above.
Returns:
An Object
parsed from the string. In case of error, returns null.
Throws:
[NullPointerException](../../java/lang/NullPointerException.html "class in java.lang")
- if pos
is null.
parseObject
public Object parseObject(String source) throws ParseException
Parses text from the beginning of the given string to produce an object. The method may not use the entire text of the given string.
Parameters:
source
- A String
whose beginning should be parsed.
Returns:
An Object
parsed from the string.
Throws:
[ParseException](../../java/text/ParseException.html "class in java.text")
- if the beginning of the specified string cannot be parsed.
clone
public Object clone()
Creates and returns a copy of this object.
Overrides:
[clone](../../java/lang/Object.html#clone%28%29)
in class [Object](../../java/lang/Object.html "class in java.lang")
Returns:
a clone of this instance.
See Also:
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.
Copyright © 2004, 2010 Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.