Java Nano Second Convert nanoSeconds(long millis)

Here you can find the source of nanoSeconds(long millis)

Description

nano Seconds

License

Open Source License

Declaration

public static long nanoSeconds(long millis) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static long nanoSeconds(long millis) {
        return millis * 1000000;
    }//from   w  ww.  j  av  a 2  s  . c o m
}

Related

  1. durationInSeconds(long startNano)
  2. humanReadableNanoseconds(long delta)
  3. microSecondToStr(int nanos, int meta)
  4. nano()
  5. nano2milli(double nano)
  6. nanoSecondsToSeconds(final long nanoSeconds)
  7. nanosecondsToSeconds(Long nanoseconds)
  8. nanosecondsToString(long ns)
  9. nanoSecondToSecond(double nano, int decimal)