- java.lang.Object
- 
- java.util.spi.LocaleServiceProvider
- 
- java.util.spi.CalendarNameProvider
 
 
- 
 
 public abstract class CalendarNameProvider extends LocaleServiceProvider An abstract class for service providers that provide localized string representations (display names) ofCalendarfield values.Calendar types are used to specify calendar systems for which the getDisplayNameandgetDisplayNamesmethods provide calendar field value names. SeeCalendar.getCalendarType()for details.Calendar Fields Calendar fields are specified with the constants defined in Calendar. The following are calendar-common fields and their values to be supported for each calendar system.Field Value Description Calendar.MONTHCalendar.JANUARYtoCalendar.UNDECIMBERMonth numbering is 0-based (e.g., 0 - January, ..., 11 - December). Some calendar systems have 13 months. Month names need to be supported in both the formatting and stand-alone forms if required by the supported locales. If there's no distinction in the two forms, the same names should be returned in both of the forms. Calendar.DAY_OF_WEEKCalendar.SUNDAYtoCalendar.SATURDAYDay-of-week numbering is 1-based starting from Sunday (i.e., 1 - Sunday, ..., 7 - Saturday). Calendar.AM_PMCalendar.AMtoCalendar.PM0 - AM, 1 - PM The following are calendar-specific fields and their values to be supported. Calendar Type Field Value Description "gregory"Calendar.ERA0 GregorianCalendar.BC(BCE)1 GregorianCalendar.AD(CE)"buddhist"Calendar.ERA0 BC (BCE) 1 B.E. (Buddhist Era) "japanese"Calendar.ERA0 Seireki (Before Meiji) 1 Meiji 2 Taisho 3 Showa 4 Heisei Calendar.YEAR1 the first year in each era. It should be returned when a long style ( Calendar.LONG_FORMATorCalendar.LONG_STANDALONE) is specified. See also the Year representation inSimpleDateFormat."roc"Calendar.ERA0 Before R.O.C. 1 R.O.C. "islamic"Calendar.ERA0 Before AH 1 Anno Hijrah (AH) Calendar field value names for "gregory"must be consistent with the date-time symbols provided byDateFormatSymbolsProvider.Time zone names are supported by TimeZoneNameProvider.- Since:
- 1.8
- See Also:
- CalendarDataProvider,- Locale.getUnicodeLocaleType(String)
 
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedCalendarNameProvider()Sole constructor.
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract StringgetDisplayName(String calendarType, int field, int value, int style, Locale locale)Returns the string representation (display name) of the calendarfield valuein the givenstyleandlocale.abstract Map<String,Integer>getDisplayNames(String calendarType, int field, int style, Locale locale)Returns aMapcontaining all string representations (display names) of theCalendarfieldin the givenstyleandlocaleand their corresponding field values.- 
Methods inherited from class java.util.spi.LocaleServiceProvidergetAvailableLocales, isSupportedLocale
 
- 
 
- 
- 
- 
Method Detail- 
getDisplayNamepublic abstract String getDisplayName(String calendarType, int field, int value, int style, Locale locale) Returns the string representation (display name) of the calendarfield valuein the givenstyleandlocale. If no string representation is applicable,nullis returned.fieldis aCalendarfield index, such asCalendar.MONTH. The time zone fields,Calendar.ZONE_OFFSETandCalendar.DST_OFFSET, are not supported by this method.nullmust be returned if any time zone fields are specified.valueis the numeric representation of thefieldvalue. For example, iffieldisCalendar.DAY_OF_WEEK, the valid values areCalendar.SUNDAYtoCalendar.SATURDAY(inclusive).stylegives the style of the string representation. It is one ofCalendar.SHORT_FORMAT(SHORT),Calendar.SHORT_STANDALONE,Calendar.LONG_FORMAT(LONG),Calendar.LONG_STANDALONE,Calendar.NARROW_FORMAT, orCalendar.NARROW_STANDALONE.For example, the following call will return "Sunday".getDisplayName("gregory", Calendar.DAY_OF_WEEK, Calendar.SUNDAY, Calendar.LONG_STANDALONE, Locale.ENGLISH);- Parameters:
- calendarType- the calendar type. (Any calendar type given by- localeis ignored.)
- field- the- Calendarfield index, such as- Calendar.DAY_OF_WEEK
- value- the value of the- Calendar field, such as- Calendar.MONDAY
- style- the string representation style: one of- Calendar.SHORT_FORMAT(- SHORT),- Calendar.SHORT_STANDALONE,- Calendar.LONG_FORMAT(- LONG),- Calendar.LONG_STANDALONE,- Calendar.NARROW_FORMAT, or- Calendar.NARROW_STANDALONE
- locale- the desired locale
- Returns:
- the string representation of the field value, ornullif the string representation is not applicable or the given calendar type is unknown
- Throws:
- IllegalArgumentException- if- fieldor- styleis invalid
- NullPointerException- if- localeis- null
- See Also:
- TimeZoneNameProvider,- Calendar.get(int),- Calendar.getDisplayName(int, int, Locale)
 
 - 
getDisplayNamespublic abstract Map<String,Integer> getDisplayNames(String calendarType, int field, int style, Locale locale) Returns aMapcontaining all string representations (display names) of theCalendarfieldin the givenstyleandlocaleand their corresponding field values.fieldis aCalendarfield index, such asCalendar.MONTH. The time zone fields,Calendar.ZONE_OFFSETandCalendar.DST_OFFSET, are not supported by this method.nullmust be returned if any time zone fields are specified.stylegives the style of the string representation. It must be one ofCalendar.ALL_STYLES,Calendar.SHORT_FORMAT(SHORT),Calendar.SHORT_STANDALONE,Calendar.LONG_FORMAT(LONG),Calendar.LONG_STANDALONE,Calendar.NARROW_FORMAT, orCalendar.NARROW_STANDALONE. Note that narrow names may not be unique due to use of single characters, such as "S" for Sunday and Saturday, and that no narrow names are included in that case.For example, the following call will return a Mapcontaining"January"toCalendar.JANUARY,"Jan"toCalendar.JANUARY,"February"toCalendar.FEBRUARY,"Feb"toCalendar.FEBRUARY, and so on.getDisplayNames("gregory", Calendar.MONTH, Calendar.ALL_STYLES, Locale.ENGLISH);- Parameters:
- calendarType- the calendar type. (Any calendar type given by- localeis ignored.)
- field- the calendar field for which the display names are returned
- style- the style applied to the display names; one of- Calendar.ALL_STYLES,- Calendar.SHORT_FORMAT(- SHORT),- Calendar.SHORT_STANDALONE,- Calendar.LONG_FORMAT(- LONG),- Calendar.LONG_STANDALONE,- Calendar.NARROW_FORMAT, or- Calendar.NARROW_STANDALONE
- locale- the desired locale
- Returns:
- a Mapcontaining all display names offieldinstyleandlocaleand theirfieldvalues, ornullif no display names are defined forfield
- Throws:
- NullPointerException- if- localeis- null
- See Also:
- Calendar.getDisplayNames(int, int, Locale)
 
 
- 
 
-