Uses of Class
net.time4j.calendar.EastAsianMonth
-
Uses of EastAsianMonth in net.time4j.calendar
Modifier and TypeFieldDescriptionstatic TextElement<EastAsianMonth>
ChineseCalendar.MONTH_OF_YEAR
Represents the Chinese month.static TextElement<EastAsianMonth>
JapaneseCalendar.MONTH_OF_YEAR
Represents the Japanese month.static TextElement<EastAsianMonth>
KoreanCalendar.MONTH_OF_YEAR
Represents the Korean month.static TextElement<EastAsianMonth>
VietnameseCalendar.MONTH_OF_YEAR
Represents the Vietnamese month.Modifier and TypeMethodDescriptionEastAsianCalendar.getMonth()
Yields the (lunar) month including the numerical value and the possible leap month flag.JapaneseCalendar.getMonth()
Yields the Japanese month.static EastAsianMonth
EastAsianMonth.valueOf(int month)
Gets the standard East Asian month which corresponds to the given numerical value.EastAsianMonth.withLeap()
Obtains the leap month version of this month.Modifier and TypeMethodDescriptionEastAsianCalendar.findLeapMonth()
Tries to obtain the leap month of the calendar year associated with this calendar date.Modifier and TypeMethodDescriptionint
EastAsianMonth.compareTo(EastAsianMonth other)
static boolean
ChineseCalendar.isValid(EastAsianYear year, EastAsianMonth month, int dayOfMonth)
Queries if given parameter values form a well defined calendar date.static boolean
KoreanCalendar.isValid(EastAsianYear year, EastAsianMonth month, int dayOfMonth)
Queries if given parameter values form a well defined calendar date.static boolean
VietnameseCalendar.isValid(EastAsianYear year, EastAsianMonth month, int dayOfMonth)
Queries if given parameter values form a well defined calendar date.static ChineseCalendar
ChineseCalendar.of(EastAsianYear year, EastAsianMonth month, int dayOfMonth)
Creates a new instance of a Chinese calendar date.static JapaneseCalendar
JapaneseCalendar.of(Nengo nengo, int yearOfNengo, EastAsianMonth month, int dayOfMonth)
Equivalent toJapaneseCalendar.of(nengo, yearOfNengo, month, dayOfMonth, Leniency.SMART)
.static JapaneseCalendar
JapaneseCalendar.of(Nengo nengo, int yearOfNengo, EastAsianMonth month, int dayOfMonth, Leniency leniency)
Creates a new instance of a Japanese calendar date.static KoreanCalendar
KoreanCalendar.of(EastAsianYear year, EastAsianMonth month, int dayOfMonth)
Creates a new instance of a Korean calendar date.static VietnameseCalendar
VietnameseCalendar.of(EastAsianYear year, EastAsianMonth month, int dayOfMonth)
Creates a new instance of a Vietnamese calendar date.