static HourMinute |
HourMinute.from(TemporalAccessor temporal) |
Obtains an instance of HourMinute from a temporal object.
|
HourMinute |
HourMinute.minus(long amountToSubtract,
TemporalUnit unit) |
Returns a copy of this hour-minute with the specified amount subtracted.
|
HourMinute |
HourMinute.minus(TemporalAmount amountToSubtract) |
Returns a copy of this hour-minute with the specified amount subtracted.
|
HourMinute |
HourMinute.minusHours(long hoursToSubtract) |
Returns a copy of this hour-minute with the specified period in hours subtracted.
|
HourMinute |
HourMinute.minusMinutes(long minutesToSubtract) |
Returns a copy of this hour-minute with the specified period in minutes subtracted.
|
static HourMinute |
HourMinute.now() |
Obtains the current hour-minute from the system clock in the default time-zone.
|
static HourMinute |
HourMinute.now(Clock clock) |
Obtains the current hour-minute from the specified clock.
|
static HourMinute |
HourMinute.now(ZoneId zone) |
Obtains the current hour-minute from the system clock in the specified time-zone.
|
static HourMinute |
HourMinute.of(int hour,
int minute) |
Obtains an instance of HourMinute from a hour and minute.
|
static HourMinute |
HourMinute.parse(CharSequence text) |
Obtains an instance of HourMinute from a text string such as 12:31 .
|
static HourMinute |
HourMinute.parse(CharSequence text,
DateTimeFormatter formatter) |
Obtains an instance of HourMinute from a text string using a specific formatter.
|
HourMinute |
HourMinute.plus(long amountToAdd,
TemporalUnit unit) |
Returns a copy of this hour-minute with the specified amount added.
|
HourMinute |
HourMinute.plus(TemporalAmount amountToAdd) |
Returns a copy of this hour-minute with the specified amount added.
|
HourMinute |
HourMinute.plusHours(long hoursToAdd) |
Returns a copy of this HourMinute with the specified number of hours added.
|
HourMinute |
HourMinute.plusMinutes(long minutesToAdd) |
Returns a copy of this HourMinute with the specified number of minutes added.
|
HourMinute |
HourMinute.with(TemporalAdjuster adjuster) |
Returns an adjusted copy of this hour-minute.
|
HourMinute |
HourMinute.with(TemporalField field,
long newValue) |
Returns a copy of this hour-minute with the specified field set to a new value.
|
HourMinute |
HourMinute.withHour(int hour) |
Returns a copy of this HourMinute with the hour altered.
|
HourMinute |
HourMinute.withMinute(int minute) |
Returns a copy of this HourMinute with the minute-of-hour altered.
|