minuteOfHour
minuteOfHour
returns the minutes since the top of the hour in the specified time zone.
Syntax
minuteOfHour(instant, timeZone)
minuteOfHour(dateTime)
Parameters
Parameter | Type | Description |
---|---|---|
instant | Instant | The date-time from which to return the number of minutes. |
timeZone | ZoneId | The time zone. |
dateTime | ZonedDateTime | The date-time from which to return the number of minutes. |
Returns
Returns an int value of minutes since midnight for a specified date-time.
Examples
datetime = parseInstant("2022-01-01T12:34:56 ET")
minute = minuteOfHour(datetime, timeZone("ET"))
println minute
- Log