OffsetTime 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.OffsetTime; import java.time.temporal.ChronoField; //from w w w.java 2s . c o m public class Main { public static void main(String[] args) { OffsetTime m = OffsetTime.now(); long z = m.getLong(ChronoField.HOUR_OF_DAY); System.out.println(z); } }
The code above generates the following result.