Instant getNano() example

Description

Instant getNano() gets the number of nanoseconds, later along the time-line, from the start of the second.

Syntax

getNano has the following syntax.


public int getNano()

Example

The following example shows how to use getNano.


import java.time.Instant;
/* w  w w  .j  a  va 2 s.com*/
public class Main {
  public static void main(String[] args) {
    Instant instant = Instant.parse("2014-12-03T10:15:30.00Z");
    System.out.println(instant.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