List of usage examples for java.time LocalDateTime withYear
public LocalDateTime withYear(int year)
From source file:Main.java
public static void main(String[] args) { LocalDateTime a = LocalDateTime.of(2014, 6, 30, 12, 01); LocalDateTime t = a.withYear(2012); System.out.println(t);/* w ww . j a v a 2 s .c o m*/ }