LocalTime getLong(TemporalField field) example

Description

LocalTime getLong(TemporalField field) gets the value of the specified field from this time as a long.

Syntax

getLong has the following syntax.


public long getLong(TemporalField field)

Example

The following example shows how to use getLong.


import java.time.LocalTime;
import java.time.temporal.ChronoField;
/*from w  w w  .  jav  a 2  s  .  c  o m*/
public class Main {
  public static void main(String[] args) {
    LocalTime l = LocalTime.now();

    System.out.println(l.getLong(ChronoField.MINUTE_OF_HOUR));
  }
}

The code above generates the following result.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset