List of usage examples for java.time Instant getNano
public int getNano()
From source file:org.trellisldp.triplestore.TriplestoreResourceServiceTest.java
private static boolean isReallyLaterThan(final Instant time) { final Instant t = now(); return t.isAfter(time) && (t.toEpochMilli() > time.toEpochMilli() || t.getNano() > time.getNano()); }