List of usage examples for java.time OffsetTime until
@Override public long until(Temporal endExclusive, TemporalUnit unit)
From source file:Main.java
public static void main(String[] args) { OffsetTime m = OffsetTime.now(); long n = m.until(OffsetTime.now(), ChronoUnit.MINUTES); System.out.println(n);// ww w. j a v a 2 s . c o m }