LocalTime getLong(TemporalField field)
gets the value of the specified field from this time as a long.
getLong
has the following syntax.
public long getLong(TemporalField field)
The following example shows how to use getLong
.
import java.time.LocalTime; import java.time.temporal.ChronoField; // w w w. j a v a 2 s . c om 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.