List of usage examples for java.time OffsetDateTime getLong
@Override public long getLong(TemporalField field)
From source file:Main.java
public static void main(String[] args) { OffsetDateTime o = OffsetDateTime.now(); long l = o.getLong(ChronoField.DAY_OF_WEEK); System.out.println(l);/*from w w w . j a v a 2 s. c o m*/ }