java.time.Duration.ofMinutes() Method Example



Description

The public Duration ofMinutes(long minutes) method obtains a Duration representing a number of standard minutes.

Declaration

Following is the declaration for java.time.Duration.ofMinutes(long minutes) method.

public static Duration ofMinutes(long minutes)

Parameters

minutes − the number of minutes, positive or negative.

Return Value

a Duration, not null.

Exception

ArithmeticException − if the input minutes exceeds the capacity of Duration.

Example

The following example shows the usage of java.time.Duration.ofMinutes(long minutes) method.

package com.tutorialspoint;

import java.time.Duration;

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

      Duration duration = Duration.ofMinutes(2);
      System.out.println(duration.getSeconds());      
   }
}

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

120
Advertisements