Duration getNano() example

Description

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;
/*from  ww w.jav a2s .c o m*/
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.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset