Class DateTimeFormatterPatternProvider
java.lang.Object
java.util.spi.LocaleServiceProvider
java.time.format.DateTimeFormatterPatternProvider
Service Provider Interface for retrieving localized patterns used by
DateTimeFormatter and DateTimeFormatterBuilder classes.
The methods in this class provide localized format pattern strings for use
with methods such as ofLocalizedDateTime(FormatStyle)
and appendLocalized(FormatStyle, FormatStyle).
For details on using the Locale Sensitive SPI, see
LocaleServiceProvider.- Since:
- 27
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract StringgetDateTimeFormatterPattern(String requestedTemplate, String calType, Locale locale) Returns the localized pattern string for the requested template, calendar type, and locale.abstract StringgetDateTimeFormatterPattern(FormatStyle dateStyle, FormatStyle timeStyle, String calType, Locale locale) Returns the localized pattern string for the date style, time style, calendar type, and locale.Methods declared in class LocaleServiceProvider
getAvailableLocales, isSupportedLocaleModifier and TypeMethodDescriptionabstract Locale[]Returns an array of all locales for which this locale service provider can provide localized objects or names.booleanisSupportedLocale(Locale locale) Returnstrueif the givenlocaleis supported by this locale service provider.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
DateTimeFormatterPatternProvider
protected DateTimeFormatterPatternProvider()Sole constructor. (For invocation by subclass constructors, typically implicit.)
-
-
Method Details
-
getDateTimeFormatterPattern
public abstract String getDateTimeFormatterPattern(FormatStyle dateStyle, FormatStyle timeStyle, String calType, Locale locale) Returns the localized pattern string for the date style, time style, calendar type, and locale. EitherdateStyleortimeStylemay benull. In such cases, the returned pattern represents only the time or only the date, respectively. If both arenull, anIllegalArgumentExceptionis thrown.- Parameters:
dateStyle-FormatStylerepresenting date style.nullfor time-only patterntimeStyle-FormatStylerepresenting time style.nullfor date-only patterncalType- Non-nullStringrepresenting a CLDR/LDML calendar type, such as "japanese", "iso8601".locale-Localeused to obtain the localized pattern. Non-null.- Returns:
- the localized pattern string for the date style, time style, calendar type, and locale
- Throws:
IllegalArgumentException- if bothdateStyleandtimeStylearenull.DateTimeException- if no formatting pattern is available for the specified arguments.NullPointerException- ifcalTypeorlocaleisnull.- See Also:
-
getDateTimeFormatterPattern
public abstract String getDateTimeFormatterPattern(String requestedTemplate, String calType, Locale locale) Returns the localized pattern string for the requested template, calendar type, and locale. TherequestedTemplatemust match the regular expression described inDateTimeFormatterBuilder.appendLocalized(String); otherwise, anIllegalArgumentExceptionis thrown.- Parameters:
requestedTemplate- requested template, Non-null.calType- Non-nullStringrepresenting a CLDR/LDML calendar type, such as "japanese", "iso8601".locale- theLocaleused to obtain the localized pattern. Non-null.- Returns:
- the localized pattern string for the requested template, calendar type, and locale
- Throws:
IllegalArgumentException- ifrequestedTemplatedoes not match the regular expression syntax described inappendLocalized(String).DateTimeException- if no formatting pattern is available for the specified arguments.NullPointerException- ifrequestedTemplate,calType, orlocaleisnull.- See Also:
-