static MonthDay |
MonthDay.now() |
Obtains the current month-day from the system clock in the default time-zone.
|
static MonthDay |
MonthDay.now(Clock clock) |
Obtains the current month-day from the specified clock.
|
static MonthDay |
MonthDay.of(int monthOfYear,
int dayOfMonth) |
Obtains an instance of MonthDay .
|
static MonthDay |
MonthDay.of(Calendrical calendrical) |
Obtains an instance of MonthDay from a Calendrical.
|
static MonthDay |
MonthDay.of(MonthOfYear monthOfYear,
int dayOfMonth) |
Obtains an instance of MonthDay .
|
static MonthDay |
MonthDay.parse(String text) |
Obtains an instance of MonthDay from a text string such as --12-03 .
|
static MonthDay |
MonthDay.parse(String text,
DateTimeFormatter formatter) |
Obtains an instance of MonthDay from a text string using a specific formatter.
|
MonthDay |
MonthDay.rollDayOfMonth(int days) |
Rolls the day-of-month, adding the specified number of days to a copy
of this MonthDay .
|
MonthDay |
MonthDay.rollMonthOfYear(int months) |
Rolls the month-of-year, adding the specified number of months to a copy
of this MonthDay .
|
MonthDay |
MonthDay.with(MonthOfYear monthOfYear) |
Returns a copy of this MonthDay with the month-of-year altered.
|
MonthDay |
MonthDay.withDayOfMonth(int dayOfMonth) |
Returns a copy of this MonthDay with the day-of-month altered.
|
MonthDay |
MonthDay.withMonthOfYear(int monthOfYear) |
Returns a copy of this MonthDay with the month-of-year altered.
|