@Deprecated public class ExtendedMessageFormat extends MessageFormat
MessageFormat to allow pluggable/additional formatting
options for embedded format elements. Client code should specify a registry
of FormatFactory instances associated with String
format names. This registry will be consulted when the format elements are
parsed from the message pattern. In this way custom patterns can be specified,
and the formats supported by MessageFormat can be overridden
at the format and/or format style level (see MessageFormat). A "format element"
embedded in the message pattern is specified (()? signifies optionality):{argument-number(,format-name
(,format-style)?)?}
format-name and format-style values are trimmed of surrounding whitespace
in the manner of MessageFormat. If format-name denotes
FormatFactory formatFactoryInstance in registry, a Format
matching format-name and format-style is requested from
formatFactoryInstance. If this is successful, the Format
found is used for this format element.
NOTICE: The various subformat mutator methods are considered unnecessary; they exist on the parent
class to allow the type of customization which it is the job of this class to provide in
a configurable fashion. These methods have thus been disabled and will throw
UnsupportedOperationException if called.
Limitations inherited from MessageFormat:
Formats, including MessageFormat and thus
ExtendedMessageFormat, is not guaranteed.MessageFormat.Field| Constructor and Description |
|---|
ExtendedMessageFormat(String pattern)
Deprecated.
Create a new ExtendedMessageFormat for the default locale.
|
ExtendedMessageFormat(String pattern,
Locale locale)
Deprecated.
Create a new ExtendedMessageFormat.
|
ExtendedMessageFormat(String pattern,
Locale locale,
Map<String,? extends FormatFactory> registry)
Deprecated.
Create a new ExtendedMessageFormat.
|
ExtendedMessageFormat(String pattern,
Map<String,? extends FormatFactory> registry)
Deprecated.
Create a new ExtendedMessageFormat for the default locale.
|
| Modifier and Type | Method and Description |
|---|---|
void |
applyPattern(String pattern)
Deprecated.
Apply the specified pattern.
|
boolean |
equals(Object obj)
Deprecated.
|
int |
hashCode()
Deprecated.
|
void |
setFormat(int formatElementIndex,
Format newFormat)
Deprecated.
Throws UnsupportedOperationException - see class Javadoc for details.
|
void |
setFormatByArgumentIndex(int argumentIndex,
Format newFormat)
Deprecated.
Throws UnsupportedOperationException - see class Javadoc for details.
|
void |
setFormats(Format[] newFormats)
Deprecated.
Throws UnsupportedOperationException - see class Javadoc for details.
|
void |
setFormatsByArgumentIndex(Format[] newFormats)
Deprecated.
Throws UnsupportedOperationException - see class Javadoc for details.
|
String |
toPattern()
Deprecated.
|
clone, format, format, format, formatToCharacterIterator, getFormats, getFormatsByArgumentIndex, getLocale, parse, parse, parseObject, setLocaleformat, parseObjectpublic ExtendedMessageFormat(String pattern)
pattern - the pattern to use, not nullIllegalArgumentException - in case of a bad pattern.public ExtendedMessageFormat(String pattern, Locale locale)
pattern - the pattern to use, not nulllocale - the locale to use, not nullIllegalArgumentException - in case of a bad pattern.public ExtendedMessageFormat(String pattern, Locale locale, Map<String,? extends FormatFactory> registry)
pattern - the pattern to use, not null.locale - the locale to use.registry - the registry of format factories, may be null.IllegalArgumentException - in case of a bad pattern.public ExtendedMessageFormat(String pattern, Map<String,? extends FormatFactory> registry)
pattern - the pattern to use, not nullregistry - the registry of format factories, may be nullIllegalArgumentException - in case of a bad pattern.public final void applyPattern(String pattern)
applyPattern in class MessageFormatpattern - Stringpublic boolean equals(Object obj)
equals in class MessageFormatpublic int hashCode()
hashCode in class MessageFormatpublic void setFormat(int formatElementIndex,
Format newFormat)
setFormat in class MessageFormatformatElementIndex - format element indexnewFormat - the new formatUnsupportedOperationException - always thrown since this isn't supported by ExtendMessageFormatpublic void setFormatByArgumentIndex(int argumentIndex,
Format newFormat)
setFormatByArgumentIndex in class MessageFormatargumentIndex - argument indexnewFormat - the new formatUnsupportedOperationException - always thrown since this isn't supported by ExtendMessageFormatpublic void setFormats(Format[] newFormats)
setFormats in class MessageFormatnewFormats - new formatsUnsupportedOperationException - always thrown since this isn't supported by ExtendMessageFormatpublic void setFormatsByArgumentIndex(Format[] newFormats)
setFormatsByArgumentIndex in class MessageFormatnewFormats - new formatsUnsupportedOperationException - always thrown since this isn't supported by ExtendMessageFormatpublic String toPattern()
toPattern in class MessageFormatCopyright © 2001–2025 The Apache Software Foundation. All rights reserved.