All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.text.Format Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
/*

This is not an official specification document, and usage is restricted.

NOTICE


(c) 2005-2007 Sun Microsystems, Inc. All Rights Reserved.

Neither this file nor any files generated from it describe a complete specification, and they may only be used as described below. For example, no permission is given for you to incorporate this file, in whole or in part, in an implementation of a Java specification.

Sun Microsystems Inc. owns the copyright in this file and it is provided to you for informative, as opposed to normative, use. The file and any files generated from it may be used to generate other informative documentation, such as a unified set of documents of API signatures for a platform that includes technologies expressed as Java APIs. The file may also be used to produce "compilation stubs," which allow applications to be compiled and validated for such platforms.

Any work generated from this file, such as unified javadocs or compiled stub files, must be accompanied by this notice in its entirety.

This work corresponds to the API signatures of JSR 219: Foundation Profile 1.1. In the event of a discrepency between this work and the JSR 219 specification, which is available at http://www.jcp.org/en/jsr/detail?id=219, the latter takes precedence. */ package java.text; import java.io.Serializable; /** * 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 Strings (the * format method) and for parsing Strings 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, a * format 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, and * NumberFormat--for formatting dates, messages, and numbers, * respectively. *

* Concrete subclasses must implement three methods: *

    *
  1. format(Object obj, StringBuffer toAppendTo, FieldPosition pos) *
  2. formatToCharacterIterator(Object obj) *
  3. parseObject(String source, ParsePosition pos) *
* These general methods allow polymorphic parsing and formatting of objects * and are used, for example, by MessageFormat. * Subclasses often also provide additional format methods for * specific input types as well as parse methods for specific * result types. Any parse method that does not take a * ParsePosition argument should throw ParseException * when no text in the required format is at the beginning of the input text. * *

* Most subclasses will also implement the following factory methods: *

    *
  1. * getInstance for getting a useful format object appropriate * for the current locale *
  2. * getInstance(Locale) for getting a useful format * object appropriate for the specified locale *
* In addition, some subclasses may also implement other * getXxxxInstance methods for more specialized control. For * example, the NumberFormat class provides * getPercentInstance and getCurrencyInstance * 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 {@link 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 java.text.ParsePosition * @see java.text.FieldPosition * @see java.text.NumberFormat * @see java.text.DateFormat * @see java.text.MessageFormat * @version 1.28, 01/19/00 * @author Mark Davis */ public abstract class Format implements Serializable, Cloneable { private static final long serialVersionUID = -299282585814624189L; public Format() { } /** * Formats an object to produce a string. This is equivalent to *

* {@link #format(Object, StringBuffer, FieldPosition) format}(obj, * new StringBuffer(), new FieldPosition(0)).toString(); *
* * @param obj The object to format * @return Formatted string. * @exception IllegalArgumentException if the Format cannot format the given * object */ public final String format(Object obj) { return null; } /** * 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. * * @param obj The object to format * @param toAppendTo where the text is to be appended * @param pos A FieldPosition identifying a field * in the formatted text * @return the string buffer passed in as toAppendTo, * with formatted text appended * @exception NullPointerException if toAppendTo or * pos is null * @exception IllegalArgumentException if the Format cannot format the given * object */ public abstract StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos); /** * 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 type * Field. It is up to each Format implementation * to define what the legal values are for each attribute in the * AttributedCharacterIterator, but typically the attribute * key is also used as the attribute value. *

The default implementation creates an * AttributedCharacterIterator with no attributes. Subclasses * that support fields should override this and create an * AttributedCharacterIterator with meaningful attributes. * * @exception NullPointerException if obj is null. * @exception IllegalArgumentException when the Format cannot format the * given object. * @param obj The object to format * @return AttributedCharacterIterator describing the formatted value. * @since 1.4 */ public AttributedCharacterIterator formatToCharacterIterator(Object obj) { return null; } /** * Parses text from a string to produce an object. *

* The method attempts to parse text starting at the index given by * pos. * 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. * * @param source A String, part of which should be parsed. * @param pos A ParsePosition object with index and error * index information as described above. * @return An Object parsed from the string. In case of * error, returns null. * @exception NullPointerException if pos is null. */ public abstract Object parseObject(String source, ParsePosition pos); /** * 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. * * @param source A String whose beginning should be parsed. * @return An Object parsed from the string. * @exception ParseException if the beginning of the specified string * cannot be parsed. */ public Object parseObject(String source) throws ParseException { return null; } /** * Creates and returns a copy of this object. * * @return a clone of this instance. */ public Object clone() { return null; } /** * Defines constants that are used as attribute keys in the * AttributedCharacterIterator returned * from Format.formatToCharacterIterator and as * field identifiers in FieldPosition. * * @since 1.4 */ public static class Field extends AttributedCharacterIterator.Attribute { /** * Creates a Field with the specified name. * * @param name Name of the attribute */ protected Field(String name) { super(name); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy