java.lang.Object
java.util.spi.LocaleServiceProvider
java.text.spi.DateFormatProvider
An abstract class for service providers that
provide concrete implementations of the
DateFormat
class.- Since:
- 1.6
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionabstract DateFormat
getDateInstance
(int style, Locale locale) Returns a newDateFormat
instance which formats date with the given formatting style for the specified locale.abstract DateFormat
getDateTimeInstance
(int dateStyle, int timeStyle, Locale locale) Returns a newDateFormat
instance which formats date and time with the given formatting style for the specified locale.abstract DateFormat
getTimeInstance
(int style, Locale locale) Returns a newDateFormat
instance which formats time with the given formatting style for the specified locale.Methods declared in class java.util.spi.LocaleServiceProvider
getAvailableLocales, isSupportedLocale
-
Constructor Details
-
DateFormatProvider
protected DateFormatProvider()Sole constructor. (For invocation by subclass constructors, typically implicit.)
-
-
Method Details
-
getTimeInstance
Returns a newDateFormat
instance 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
- ifstyle
is invalid, or iflocale
isn't one of the locales returned fromgetAvailableLocales()
.NullPointerException
- iflocale
is null- See Also:
-
getDateInstance
Returns a newDateFormat
instance 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
- ifstyle
is invalid, or iflocale
isn't one of the locales returned fromgetAvailableLocales()
.NullPointerException
- iflocale
is null- See Also:
-
getDateTimeInstance
Returns a newDateFormat
instance 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
- ifdateStyle
ortimeStyle
is invalid, or iflocale
isn't one of the locales returned fromgetAvailableLocales()
.NullPointerException
- iflocale
is null- See Also:
-