the locales
Gets the text for the specified field, locale and style for the purpose of printing.
Gets the text for the specified field, locale and style for the purpose of printing.
The text associated with the value is returned. The null return value should be used if there is no applicable text, or if the text would be a numeric representation of the value.
the field to get text for, not null
the field value to get text for, not null
the style to get text for, not null
the locale to get text for, not null
the text for the field value, null if no text found
Gets an iterator of text to field for the specified field, locale and style for the purpose of parsing.
Gets an iterator of text to field for the specified field, locale and style for the purpose of parsing.
The iterator must be returned in order from the longest text to the shortest.
The null return value should be used if there is no applicable parsable text, or if the text would be a numeric representation of the value. Text can only be parsed if all the values for that field-style-locale combination are unique.
the field to get text for, not null
the style to get text for, null for all parsable text
the locale to get text for, not null
the iterator of text to field pairs, in order from longest text to shortest text, null if the field or style is not parsable
The Service Provider Implementation to obtain date-time text for a field.
This implementation is based on extraction of data from a
DateFormatSymbols
.Specification for implementors
This class is immutable and thread-safe.