Here you can find the source of nanos(Instant instant)
public static long nanos(Instant instant)
//package com.java2s; //License from project: Open Source License import java.time.Instant; public class Main { public static long nanos(Instant instant) { return instant.getEpochSecond() * 1000_000_000L + instant.getNano(); }//from ww w . j a va2 s .co m }