How to convert nanoseconds to seconds using the TimeUnit enum?
TimeUnit Enum The following expression uses the TimeUnit enum (Java 5 and later) to convert from nanoseconds to seconds: TimeUnit.SECONDS.convert(elapsedTime, TimeUnit.NANOSECONDS)
TimeUnit Enum The following expression uses the TimeUnit enum (Java 5 and later) to convert from nanoseconds to seconds: TimeUnit.SECONDS.convert(elapsedTime, TimeUnit.NANOSECONDS)