java.io.Serializable, java.lang.Comparable<IslamicCalendar.CalculationType>public static enum IslamicCalendar.CalculationType extends java.lang.Enum<IslamicCalendar.CalculationType>
| Enum Constant | Description |
|---|---|
ISLAMIC |
Religious calendar (atronomical simulation)
|
ISLAMIC_CIVIL |
Tabular (intercalary years [2,5,7,10,13,16,18,21,24,26,29]) algorithm
with civil (Friday) epoch.
|
ISLAMIC_TBLA |
Tabular (intercalary years [2,5,7,10,13,16,18,21,24,26,29]) algorithm
with astronomical (Thursday) epoch.
|
ISLAMIC_UMALQURA |
Umm al-Qura calendar
|
| Modifier and Type | Method | Description |
|---|---|---|
static IslamicCalendar.CalculationType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static IslamicCalendar.CalculationType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IslamicCalendar.CalculationType ISLAMIC
public static final IslamicCalendar.CalculationType ISLAMIC_CIVIL
public static final IslamicCalendar.CalculationType ISLAMIC_UMALQURA
public static final IslamicCalendar.CalculationType ISLAMIC_TBLA
public static IslamicCalendar.CalculationType[] values()
for (IslamicCalendar.CalculationType c : IslamicCalendar.CalculationType.values()) System.out.println(c);
public static IslamicCalendar.CalculationType 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 nullCopyright ? 2016 Unicode, Inc. and others.