How to convert a value from nanoseconds to seconds?
Here\'s the code segment:
import java.io.*; import java.util.concurrent.*; .. class Stamper
TimeUnit is an enum, so you can't create a new one.
The following will convert 1000000000000ns to seconds.
TimeUnit.NANOSECONDS.toSeconds(1000000000000L);