java.time.Duration.getNano() Method Example



Description

The java.time.Duration.getNano() method gets the number of nanoseconds within the second in this duration.

Declaration

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

public int getNano()

Return Value

The nanoseconds within the second part of the length of the duration, from 0 to 999,999,999.

Example

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

package com.tutorialspoint;

import java.time.Duration;
import java.time.LocalTime;

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

      Duration duration = Duration.between(LocalTime.NOON,LocalTime.MAX);  
      System.out.println(duration.getNano());
   }
}

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

999999999
Advertisements