OffsetDateTime withNano(int nanoOfSecond)
returns
a copy of this OffsetDateTime with the nano-of-second value altered.
withNano
has the following syntax.
public OffsetDateTime withNano(int nanoOfSecond)
The following example shows how to use withNano
.
import java.time.OffsetDateTime; 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.