object MonthDay extends Serializable
- Annotations
- @SerialVersionUID()
- Alphabetic
- By Inheritance
- MonthDay
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def from(temporal: TemporalAccessor): MonthDay
Obtains an instance of
MonthDay
from a temporal object.Obtains an instance of
MonthDay
from a temporal object.A
TemporalAccessor
represents some form of date and time information. This factory converts the arbitrary temporal object to an instance ofMonthDay
.The conversion extracts the
MONTH_OF_YEAR
andDAY_OF_MONTH
fields. The extraction is only permitted if the date-time has an ISO chronology.This method matches the signature of the functional interface
TemporalQuery
allowing it to be used in queries via method reference,MonthDay::from
.- temporal
the temporal object to convert, not null
- returns
the month-day, not null
- Exceptions thrown
DateTimeException
if unable to convert to a { @code MonthDay}
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def now(clock: Clock): MonthDay
Obtains the current month-day from the specified clock.
Obtains the current month-day from the specified clock.
This will query the specified clock to obtain the current month-day. Using this method allows the use of an alternate clock for testing. The alternate clock may be introduced using
dependency injection
.- clock
the clock to use, not null
- returns
the current month-day, not null
- def now(zone: ZoneId): MonthDay
Obtains the current month-day from the system clock in the specified time-zone.
Obtains the current month-day from the system clock in the specified time-zone.
This will query the
system clock
to obtain the current month-day. Specifying the time-zone avoids dependence on the default time-zone.Using this method will prevent the ability to use an alternate clock for testing because the clock is hard-coded.
- zone
the zone ID to use, not null
- returns
the current month-day using the system clock, not null
- def now: MonthDay
Obtains the current month-day from the system clock in the default time-zone.
Obtains the current month-day from the system clock in the default time-zone.
This will query the
system clock
in the default time-zone to obtain the current month-day.Using this method will prevent the ability to use an alternate clock for testing because the clock is hard-coded.
- returns
the current month-day using the system clock and default time-zone, not null
- def of(month: Int, dayOfMonth: Int): MonthDay
Obtains an instance of
MonthDay
.Obtains an instance of
MonthDay
.The day-of-month must be valid for the month within a leap year. Hence, for month 2 (February), day 29 is valid.
For example, passing in month 4 (April) and day 31 will throw an exception, as there can never be April 31st in any year. By contrast, passing in February 29th is permitted, as that month-day can sometimes be valid.
- month
the month-of-year to represent, from 1 (January) to 12 (December)
- dayOfMonth
the day-of-month to represent, from 1 to 31
- returns
the month-day, not null
- Exceptions thrown
DateTimeException
if the day-of-month is invalid for the month
- def of(month: Month, dayOfMonth: Int): MonthDay
Obtains an instance of
MonthDay
.Obtains an instance of
MonthDay
.The day-of-month must be valid for the month within a leap year. Hence, for February, day 29 is valid.
For example, passing in April and day 31 will throw an exception, as there can never be April 31st in any year. By contrast, passing in February 29th is permitted, as that month-day can sometimes be valid.
- month
the month-of-year to represent, not null
- dayOfMonth
the day-of-month to represent, from 1 to 31
- returns
the month-day, not null
- Exceptions thrown
DateTimeException
if the day-of-month is invalid for the month
- def parse(text: CharSequence, formatter: DateTimeFormatter): MonthDay
Obtains an instance of
MonthDay
from a text string using a specific formatter.Obtains an instance of
MonthDay
from a text string using a specific formatter.The text is parsed using the formatter, returning a month-day.
- text
the text to parse, not null
- formatter
the formatter to use, not null
- returns
the parsed month-day, not null
- Exceptions thrown
DateTimeParseException
if the text cannot be parsed
- def parse(text: CharSequence): MonthDay
Obtains an instance of
MonthDay
from a text string such as--12-03
.Obtains an instance of
MonthDay
from a text string such as--12-03
.The string must represent a valid month-day. The format is
--MM-dd
.- text
the text to parse such as "--12-03", not null
- returns
the parsed month-day, not null
- Exceptions thrown
DateTimeParseException
if the text cannot be parsed
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()