TimeUnit.toMicros(long duration) has the following syntax.
public long toMicros(long duration)
In the following code shows how to use TimeUnit.toMicros(long duration) method.
import java.util.concurrent.TimeUnit; // w ww . ja va2 s. co m public class Main { public static void main(String[] args) { TimeUnit tu = TimeUnit.DAYS; System.out.println(tu.toDays(1)); System.out.println(tu.toHours(1)); System.out.println(tu.toMicros(1)); } }
The code above generates the following result.