- java.lang.Object
-
- java.util.spi.LocaleServiceProvider
-
- java.text.spi.DateFormatProvider
-
public abstract class DateFormatProvider extends LocaleServiceProvider
An abstract class for service providers that provide concrete implementations of theDateFormat
class.- Since:
- 1.6
-
-
Constructor Summary
Constructors Modifier Constructor and Description protected
DateFormatProvider()
Sole constructor.
-
Method Summary
Methods Modifier and Type Method and Description abstract 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 inherited from class java.util.spi.LocaleServiceProvider
getAvailableLocales
-
-
-
-
Constructor Detail
-
DateFormatProvider
protected DateFormatProvider()
Sole constructor. (For invocation by subclass constructors, typically implicit.)
-
-
Method Detail
-
getTimeInstance
public abstract DateFormat getTimeInstance(int style, Locale locale)
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:
DateFormat.getTimeInstance(int, java.util.Locale)
-
getDateInstance
public abstract DateFormat getDateInstance(int style, Locale locale)
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:
DateFormat.getDateInstance(int, java.util.Locale)
-
getDateTimeInstance
public 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.- 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:
DateFormat.getDateTimeInstance(int, int, java.util.Locale)
-
-
Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-java/text/spi/DateFormatProvider.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.