LocalDateTime withNano(int nanoOfSecond) example

Description

LocalDateTime withNano(int nanoOfSecond) returns a copy of this LocalDateTime with the nano-of-second value altered.

Syntax

withNano has the following syntax.


public LocalDateTime withNano(int nanoOfSecond)

Example

The following example shows how to use withNano.


import java.time.LocalDateTime;
/*  w w w.  j ava 2  s . c  om*/
public class Main {
  public static void main(String[] args) {
    LocalDateTime a = LocalDateTime.of(2014, 6, 30, 12, 01);
    
    LocalDateTime t = a.withNano(1234);
    
    System.out.println(t);
  }
}

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