Java Nano Second Convert nowInNanoseconds()

Here you can find the source of nowInNanoseconds()

Description

now In Nanoseconds

License

Apache License

Declaration

static long nowInNanoseconds() 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    static long nowInNanoseconds() {
        return System.currentTimeMillis() * 1000000;
    }/*from w  ww .  jav  a2  s  .  com*/
}

Related

  1. nanoToMsConverter(long time)
  2. nanoToSec(Long n)
  3. nanoToSeconds(double nano)
  4. nanoToSecs(final long nanoTime)
  5. nanoToStr(long tsp)
  6. parseNanoseconds(String s)
  7. stringToNanoseconds(String time)