DateFormatProvider (Java SE 13 & JDK 13 )
public abstract class DateFormatProvider extends LocaleServiceProvider
An abstract class for service providers that
provide concrete implementations of the
DateFormat class.
- Since:
- 1.6
-
Constructor Summary
Constructors Modifier Constructor Description protectedDateFormatProvider()Sole constructor.
-
Method Summary
Modifier and Type Method Description abstract DateFormatgetDateInstance(int style, Locale locale)Returns a new
DateFormatinstance which formats date with the given formatting style for the specified locale.abstract DateFormatgetDateTimeInstance(int dateStyle, int timeStyle, Locale locale)Returns a new
DateFormatinstance which formats date and time with the given formatting style for the specified locale.abstract DateFormatgetTimeInstance(int style, Locale locale)Returns a new
DateFormatinstance which formats time with the given formatting style for the specified locale.
-
Constructor Details
-
DateFormatProvider
protected DateFormatProvider()
Sole constructor. (For invocation by subclass constructors, typically implicit.)
-
-
Method Details
-
getTimeInstance
public abstract DateFormat getTimeInstance(int style, Locale locale)
Returns a new
DateFormatinstance which formats time with the given formatting style for the specified locale.- Parameters:
style- the given formatting style. Either one ofDateFormat.SHORT,DateFormat.MEDIUM,DateFormat.LONG, orDateFormat.FULL.locale- the desired locale.- Returns:
- a time formatter.
- Throws:
IllegalArgumentException- ifstyleis invalid, or iflocaleisn't one of the locales returned fromgetAvailableLocales().NullPointerException- iflocaleis null- See Also:
DateFormat.getTimeInstance(int, java.util.Locale)
-
getDateInstance
public abstract DateFormat getDateInstance(int style, Locale locale)
Returns a new
DateFormatinstance which formats date with the given formatting style for the specified locale.- Parameters:
style- the given formatting style. Either one ofDateFormat.SHORT,DateFormat.MEDIUM,DateFormat.LONG, orDateFormat.FULL.locale- the desired locale.- Returns:
- a date formatter.
- Throws:
IllegalArgumentException- ifstyleis invalid, or iflocaleisn't one of the locales returned fromgetAvailableLocales().NullPointerException- iflocaleis null- See Also:
DateFormat.getDateInstance(int, java.util.Locale)
-
getDateTimeInstance
public abstract DateFormat getDateTimeInstance(int dateStyle, int timeStyle, Locale locale)
Returns a new
DateFormatinstance which formats date and time with the given formatting style for the specified locale.- Parameters:
dateStyle- the given date formatting style. Either one ofDateFormat.SHORT,DateFormat.MEDIUM,DateFormat.LONG, orDateFormat.FULL.timeStyle- the given time formatting style. Either one ofDateFormat.SHORT,DateFormat.MEDIUM,DateFormat.LONG, orDateFormat.FULL.locale- the desired locale.- Returns:
- a date/time formatter.
- Throws:
IllegalArgumentException- ifdateStyleortimeStyleis invalid, or iflocaleisn't one of the locales returned fromgetAvailableLocales().NullPointerException- iflocaleis null- See Also:
DateFormat.getDateTimeInstance(int, int, java.util.Locale)
-
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2019, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.