java.time.Duration.ofDays() Method Example



Description

The java.time.Duration.ofDays(long days) method obtains a Duration representing a number of standard 24 hour days.

Declaration

Following is the declaration for java.time.Duration.ofDays(long days) method.

public static Duration ofDays(long days)

Parameters

days − the number of days, positive or negative.

Return Value

a Duration, not null.

Exception

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

Example

The following example shows the usage of java.time.Duration.ofDays(long days) 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.getSeconds());      
   }
}

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

172800
Advertisements