public abstract class DateFormatProvider extends LocaleServiceProvider
DateFormat
class.Modifier | Constructor and Description |
---|---|
protected |
DateFormatProvider()
Sole constructor.
|
Modifier and Type | Method and Description |
---|---|
abstract DateFormat |
getDateInstance(int style,
Locale locale)
Returns a new
DateFormat instance which formats date
with the given formatting style for the specified locale. |
abstract DateFormat |
getDateTimeInstance(int dateStyle,
int timeStyle,
Locale locale)
Returns a new
DateFormat instance which formats date and time
with the given formatting style for the specified locale. |
abstract DateFormat |
getTimeInstance(int style,
Locale locale)
Returns a new
DateFormat instance which formats time
with the given formatting style for the specified locale. |
getAvailableLocales, isSupportedLocale
protected DateFormatProvider()
public abstract DateFormat getTimeInstance(int style, Locale locale)
DateFormat
instance which formats time
with the given formatting style for the specified locale.IllegalArgumentException
- if style
is invalid,
or if locale
isn't
one of the locales returned from
getAvailableLocales()
.NullPointerException
- if locale
is nullstyle
- the given formatting style. Either one of
DateFormat.SHORT
,
DateFormat.MEDIUM
,
DateFormat.LONG
, or
DateFormat.FULL
.locale
- the desired locale.DateFormat.getTimeInstance(int, java.util.Locale)
public abstract DateFormat getDateInstance(int style, Locale locale)
DateFormat
instance which formats date
with the given formatting style for the specified locale.IllegalArgumentException
- if style
is invalid,
or if locale
isn't
one of the locales returned from
getAvailableLocales()
.NullPointerException
- if locale
is nullstyle
- the given formatting style. Either one of
DateFormat.SHORT
,
DateFormat.MEDIUM
,
DateFormat.LONG
, or
DateFormat.FULL
.locale
- the desired locale.DateFormat.getDateInstance(int, java.util.Locale)
public abstract DateFormat getDateTimeInstance(int dateStyle, int timeStyle, Locale locale)
DateFormat
instance which formats date and time
with the given formatting style for the specified locale.IllegalArgumentException
- if dateStyle
or
timeStyle
is invalid,
or if locale
isn't
one of the locales returned from
getAvailableLocales()
.NullPointerException
- if locale
is nulldateStyle
- the given date formatting style. Either one of
DateFormat.SHORT
,
DateFormat.MEDIUM
,
DateFormat.LONG
, or
DateFormat.FULL
.timeStyle
- the given time formatting style. Either one of
DateFormat.SHORT
,
DateFormat.MEDIUM
,
DateFormat.LONG
, or
DateFormat.FULL
.locale
- the desired locale.DateFormat.getDateTimeInstance(int, int, java.util.Locale)
aicas GmbH, Karlsruhe, Germany —www.aicas.com
Copyright © 2001-2016 aicas GmbH. All Rights Reserved.