java.time.Duration.toMinutes() Method Example



Description

The java.time.Duration.toMinutes() method gets the number of minutes in this duration.

Declaration

Following is the declaration for java.time.Duration.toMinutes() method.

public long toMinutes()

Return Value

the number of minutes in the duration, may be negative.

Example

The following example shows the usage of java.time.Duration.toMinutes() method.

package com.tutorialspoint;

import java.time.Duration;

public class DurationDemo {
   public static void main(String[] args) {

      Duration duration = Duration.ofDays(2);
      System.out.println(duration.toMinutes());  
   }
}

Let us compile and run the above program, this will produce the following result −

2880
Advertisements