Here you can find the source of timeSince(final long startNanos, final TimeUnit destUnit)
public static long timeSince(final long startNanos, final TimeUnit destUnit)
//package com.java2s; //License from project: Apache License import java.util.concurrent.TimeUnit; public class Main { public static long timeSince(final long startNanos, final TimeUnit destUnit) { return destUnit.convert(System.nanoTime() - startNanos, TimeUnit.NANOSECONDS); }/* w w w .jav a 2 s . co m*/ }