DateFormatProvider (Java SE 17 & JDK 17)
An abstract class for service providers that
provide concrete implementations of the
DateFormat class.
- Since:
- 1.6
-
Constructor Summary
Constructors
-
Method Summary
Returns a new
DateFormatinstance which formats date with the given formatting style for the specified locale.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.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:
-
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:
-
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:
-