Java Date Time - OffsetTime get(TemporalField field) example








OffsetTime get(TemporalField field) gets the value of the specified field from this time as an int.

Syntax

get has the following syntax.

public int get(TemporalField field)

Example

The following example shows how to use get.

import java.time.OffsetTime;
import java.time.temporal.ChronoField;
/*  w w  w  .ja v a2 s  .c  o  m*/
public class Main {
  public static void main(String[] args) {
    OffsetTime m = OffsetTime.now();
    int z = m.get(ChronoField.HOUR_OF_DAY);
    System.out.println(z);

  }
}

The code above generates the following result.