Java Date Time - Duration getNano() example








Duration getNano() gets the number of nanoseconds within the second in this duration.

Syntax

getNano has the following syntax.

public int getNano()

Example

The following example shows how to use getNano.

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

public class Main {
  public static void main(String[] args) {
    Duration duration = Duration.between(LocalTime.MIDNIGHT,LocalTime.NOON);
    System.out.println(duration.getNano());
  }
}

The code above generates the following result.