LocalTime get(TemporalField field)
gets the value of the
specified field from this time as an int.
get
has the following syntax.
public int get(TemporalField field)
The following example shows how to use get
.
import java.time.LocalTime; import java.time.temporal.ChronoField; /*from www. j av a 2 s .co m*/ public class Main { public static void main(String[] args) { LocalTime l = LocalTime.now(); System.out.println(l.get(ChronoField.MINUTE_OF_HOUR)); } }
The code above generates the following result.