Instant plusNanos(long nanosToAdd) example
Description
Instant plusNanos(long nanosToAdd)
returns a copy of
this instant with the specified duration in nanoseconds added.
Syntax
plusNanos
has the following syntax.
public Instant plusNanos(long nanosToAdd)
Example
The following example shows how to use plusNanos
.
import java.time.Instant;
/* w w w . j av a 2 s. co m*/
public class Main {
public static void main(String[] args) {
Instant instant = Instant.parse("2014-12-03T10:15:30.00Z");
instant = instant.plusNanos(10000);
System.out.println(instant);
}
}
The code above generates the following result.