public enum CalendarType extends java.lang.Enum<CalendarType>
| Enum Constant and Description |
|---|
ARABIC |
CHINESE |
GREGORIAN |
HEBREW |
HIJRI |
JAPANESE_EMPEROR_ERA |
KOREAN_AND_JAPANESE |
KOREAN_TANGUN_ERA |
MIDDLE_EAST_FRENCH |
NONE |
SAKA_ERA |
TAIWAN_CALENDAR |
THAI |
TRANSLITERATED_ENGLISH |
TRANSLITERATED_FRENCH |
| Modifier and Type | Method and Description |
|---|---|
static CalendarType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CalendarType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CalendarType ARABIC
public static final CalendarType CHINESE
public static final CalendarType GREGORIAN
public static final CalendarType HEBREW
public static final CalendarType HIJRI
public static final CalendarType JAPANESE_EMPEROR_ERA
public static final CalendarType KOREAN_AND_JAPANESE
public static final CalendarType KOREAN_TANGUN_ERA
public static final CalendarType MIDDLE_EAST_FRENCH
public static final CalendarType NONE
public static final CalendarType SAKA_ERA
public static final CalendarType TAIWAN_CALENDAR
public static final CalendarType THAI
public static final CalendarType TRANSLITERATED_ENGLISH
public static final CalendarType TRANSLITERATED_FRENCH
public static CalendarType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static CalendarType[] values()
for (CalendarType c : CalendarType.values()) System.out.println(c);