java.time.Duration.ofNanos() Method Example



Description

The java.time.Duration.ofNanos(long nanos) method obtains a Duration representing a number of standard nanoseconds.

Declaration

Following is the declaration for java.time.Duration.ofNanos(long nanos) method.

public static Duration ofNanos(long nanos)

Parameters

nanos − the number of nanoseconds, positive or negative.

Return Value

a Duration, not null.

Exception

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

Example

The following example shows the usage of java.time.Duration.ofNanos(long nanos) method.

package com.tutorialspoint;

import java.time.Duration;

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

      Duration duration = Duration.ofNanos(2000000000);
      System.out.println(duration.getSeconds());      
   }
}

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

2
Advertisements