OffsetDateTime withNano(int nanoOfSecond) example
Description
OffsetDateTime withNano(int nanoOfSecond)
returns
a copy of this OffsetDateTime with the nano-of-second value altered.
Syntax
withNano
has the following syntax.
public OffsetDateTime withNano(int nanoOfSecond)
Example
The following example shows how to use withNano
.
import java.time.OffsetDateTime;
/*w w w . j a v a2 s . c o m*/
public class Main {
public static void main(String[] args) {
OffsetDateTime o = OffsetDateTime.now();
OffsetDateTime d = o.withNano(1234);
System.out.println(d);
}
}
The code above generates the following result.