TimeUnit.toMinutes(long duration) has the following syntax.
public long toMinutes(long duration)
In the following code shows how to use TimeUnit.toMinutes(long duration) method.
/*from ww w . j a va 2 s .c o m*/ import java.util.concurrent.TimeUnit; 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.toMinutes(1)); } }
The code above generates the following result.