Serializable
, Comparable<IslamicCalendar.CalculationType>
public static enum IslamicCalendar.CalculationType extends 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(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(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright ? 2016 Unicode, Inc. and others.