Duration toMinutes() method in Java with Examples

Last Updated : 26 Nov, 2018
The toMinutes() method of Duration Class in java.time package is used get the value of this duration in number of minutes. Syntax:
public long toMinutes()
Parameters: This method do not accepts any parameter. Return Value: This method returns a long value which is the number of minutes in this duration. Below examples illustrate the Duration.toMinutes() method: Example 1: Java
// Java code to illustrate toMinutes() method

import java.time.Duration;

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

        // Duration using parse() method
        Duration duration
            = Duration.parse("P2DT3H4M");

        System.out.println("Duration: "
                           + duration);

        // Get the number of minutes
        // using toMinutes() method
        System.out.println(duration.toMinutes());
    }
}
Output:
Duration: PT51H4M
3064
Example 2: Java
// Java code to illustrate toMinutes() method

import java.time.Duration;

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

        // Duration using ofMinutes() method
        Duration duration
            = Duration.ofMinutes(10);

        System.out.println("Duration: "
                           + duration);

        // Get the number of minutes
        // using toMinutes() method
        System.out.println(duration.toMinutes());
    }
}
Comment