| Package | Description |
|---|---|
| net.time4j.calendar |
Support for various regional calendars.
|
| Modifier and Type | Field and Description |
|---|---|
static TextElement<EastAsianMonth> |
VietnameseCalendar.MONTH_OF_YEAR
Represents the Vietnamese month.
|
static TextElement<EastAsianMonth> |
KoreanCalendar.MONTH_OF_YEAR
Represents the Korean month.
|
static TextElement<EastAsianMonth> |
JapaneseCalendar.MONTH_OF_YEAR
Represents the Japanese month.
|
static TextElement<EastAsianMonth> |
ChineseCalendar.MONTH_OF_YEAR
Represents the Chinese month.
|
| Modifier and Type | Method and Description |
|---|---|
EastAsianMonth |
JapaneseCalendar.getMonth()
Yields the Japanese month.
|
EastAsianMonth |
EastAsianCalendar.getMonth()
Yields the (lunar) month including the numerical value and the possible leap month flag.
|
static EastAsianMonth |
EastAsianMonth.valueOf(int month)
Gets the standard East Asian month which corresponds to the given numerical value.
|
EastAsianMonth |
EastAsianMonth.withLeap()
Obtains the leap month version of this month.
|
| Modifier and Type | Method and Description |
|---|---|
Optional<EastAsianMonth> |
EastAsianCalendar.findLeapMonth()
Tries to obtain the leap month of the calendar year associated with this calendar date.
|
| Modifier and Type | Method and Description |
|---|---|
int |
EastAsianMonth.compareTo(EastAsianMonth other) |
static boolean |
VietnameseCalendar.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 |
ChineseCalendar.isValid(EastAsianYear year,
EastAsianMonth month,
int dayOfMonth)
Queries if given parameter values form a well defined calendar date.
|
static VietnameseCalendar |
VietnameseCalendar.of(EastAsianYear year,
EastAsianMonth month,
int dayOfMonth)
Creates a new instance of a Vietnamese calendar date.
|
static KoreanCalendar |
KoreanCalendar.of(EastAsianYear year,
EastAsianMonth month,
int dayOfMonth)
Creates a new instance of a Korean 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 to
JapaneseCalendar.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.
|
Copyright © 2014–2021. All rights reserved.