Here you can find the source of randomNanoTime()
public static long randomNanoTime()
//package com.java2s; //License from project: Apache License public class Main { /**/*from w w w. j av a2s.c o m*/ * * @return */ public static long randomNanoTime() { long nano = System.nanoTime(); return nano; } }