public enum BadiMonth extends Enum<BadiMonth> implements BadiDivision
Represents the months used in the Badi calendar.
BadiDivision.comparator()| Enum Constant and Description |
|---|
ALA
The nineteenth month.
|
ASMA
The ninth month.
|
AZAMAT
The fourth month.
|
BAHA
The first month starting at vernal equinox in March.
|
ILM
The twelvth month.
|
IZZAT
The tenth month.
|
JALAL
The second month.
|
JAMAL
The third month.
|
KALIMAT
The seventh month.
|
KAMAL
The eight month.
|
MASAIL
The fifteenth month.
|
MASHIYYAT
The eleventh month.
|
MULK
The eighteenth month.
|
NUR
The fifth month.
|
QAWL
The fourteenth month.
|
QUDRAT
The thirteenth month.
|
RAHMAT
The sixth month.
|
SHARAF
The sixteenth month.
|
SULTAN
The seventeenth month.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getDisplayName(Locale locale)
Gets the description text dependent on the locale.
|
String |
getMeaning(Locale locale)
Gets the meaning dependent on the locale.
|
int |
getValue()
Gets the corresponding numerical value.
|
static BadiMonth |
valueOf(int month)
Gets the enum-constant which corresponds to the given numerical value.
|
static BadiMonth |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BadiMonth[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOfcomparatorpublic static final BadiMonth BAHA
The first month starting at vernal equinox in March.
public static final BadiMonth JALAL
The second month.
public static final BadiMonth JAMAL
The third month.
public static final BadiMonth AZAMAT
The fourth month.
public static final BadiMonth NUR
The fifth month.
public static final BadiMonth RAHMAT
The sixth month.
public static final BadiMonth KALIMAT
The seventh month.
public static final BadiMonth KAMAL
The eight month.
public static final BadiMonth ASMA
The ninth month.
public static final BadiMonth IZZAT
The tenth month.
public static final BadiMonth MASHIYYAT
The eleventh month.
public static final BadiMonth ILM
The twelvth month.
public static final BadiMonth QUDRAT
The thirteenth month.
public static final BadiMonth QAWL
The fourteenth month.
public static final BadiMonth MASAIL
The fifteenth month.
public static final BadiMonth SHARAF
The sixteenth month.
public static final BadiMonth SULTAN
The seventeenth month.
public static final BadiMonth MULK
The eighteenth month.
public static final BadiMonth ALA
The nineteenth month.
public static BadiMonth[] values()
for (BadiMonth c : BadiMonth.values()) System.out.println(c);
public static BadiMonth 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 nullpublic static BadiMonth valueOf(int month)
Gets the enum-constant which corresponds to the given numerical value.
month - badi month in the range [1-19]IllegalArgumentException - if given argument is out of rangepublic int getValue()
Gets the corresponding numerical value.
public String getDisplayName(Locale locale)
Gets the description text dependent on the locale.
locale - language settingnull)public String getMeaning(Locale locale)
Gets the meaning dependent on the locale.
If a meaning is unavailable then this method will fall back to the transcription given by
getDisplayName(Locale).
locale - language settingnull)Copyright © 2014–2021. All rights reserved.