public static enum HebrewMonth.Order extends Enum<HebrewMonth.Order>
Determines which order should be applied on Hebrew months.
| Enum Constant and Description |
|---|
BIBLICAL
The first month of the biblical numbering is NISAN.
|
CIVIL
The first month of this standard numbering is TISHRI.
|
ENUM
This technical numbering is based on the ordinal number of enum, incremented by one.
|
| Modifier and Type | Method and Description |
|---|---|
static HebrewMonth.Order |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HebrewMonth.Order[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HebrewMonth.Order CIVIL
The first month of this standard numbering is TISHRI.
If no leap month exists then the numbers of following months will be reduced by one.
public static final HebrewMonth.Order BIBLICAL
The first month of the biblical numbering is NISAN.
If no leap month exists then the numbers of following months will be reduced by one.
public static final HebrewMonth.Order ENUM
This technical numbering is based on the ordinal number of enum, incremented by one.
public static HebrewMonth.Order[] values()
for (HebrewMonth.Order c : HebrewMonth.Order.values()) System.out.println(c);
public static HebrewMonth.Order 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 © 2014–2021. All rights reserved.