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