Hebrew Month
Entries
Value of the month field indicating Adar II, the leap (intercalary or embolismic) thirteenth (Undecimber) numeric month of the year added in Jewish leap year). The leap years are years 3, 6, 8, 11, 14, 17 and 19 of a 19 year cycle. With the year starting at TISHREI, it would actually be the 7th month of the year.
Types
Properties
Returns a representation of an immutable list of all enum entries, in the order they're declared.
Returns the HebrewMonth which follows this month, with the first being NISSAN and last being ADAR_II. If this is the last month, this will wrap around and return the first month (which would actually be part of the next year). Note: this does not account for leap years and the presence of ADAR_II - it blindly gets the next month. In order to properly determine the next month accounting for leap years and without wrapping, use getNextMonthInYear.
Returns the HebrewMonth which came before this month, with the first being NISSAN and last being ADAR_II. If this is the first month, this will wrap around and return the last month (which would actually be part of the previous year). Note: this does not account for leap years and the presence of ADAR_II - it blindly gets the next month. In order to properly determine the previous month accounting for leap years and without wrapping, use getPreviousMonthInYear.
Functions
Returns the next month in the jewishYear (with TISHREI being the first if tishreiBased is true, otherwise NISSAN), or null if this is the last month of the year. This method will not return ADAR_II if jewishYear is not a leap year.
Returns the number of days in this month for the given jewishYear.
Returns the previous month in the jewishYear (with TISHREI being the first if tishreiBased is true, otherwise NISSAN), or null if this is the first month of the year. This method will not return ADAR_II if jewishYear is not a leap year.
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
Returns an array containing the constants of this enum type, in the order they're declared.