- java.lang.Object
-
- java.util.spi.LocaleServiceProvider
-
- java.text.spi.DateFormatSymbolsProvider
-
public abstract class DateFormatSymbolsProvider extends LocaleServiceProvider
An abstract class for service providers that provide instances of theDateFormatSymbolsclass.- Since:
- 1.6
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedDateFormatSymbolsProvider()Sole constructor.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract DateFormatSymbolsgetInstance(Locale locale)Returns a newDateFormatSymbolsinstance for the specified locale.-
Methods declared in class java.util.spi.LocaleServiceProvider
getAvailableLocales, isSupportedLocale
-
-
-
-
Method Detail
-
getInstance
public abstract DateFormatSymbols getInstance(Locale locale)
Returns a newDateFormatSymbolsinstance for the specified locale.- Parameters:
locale- the desired locale- Returns:
- a
DateFormatSymbolsinstance. - Throws:
NullPointerException- iflocaleis nullIllegalArgumentException- iflocaleisn't one of the locales returned fromgetAvailableLocales().- See Also:
DateFormatSymbols.getInstance(java.util.Locale)
-
-