List of usage examples for java.time LocalDate withMonth
public LocalDate withMonth(int month)
From source file:Main.java
public static void main(String[] args) { LocalDate a = LocalDate.of(2014, 6, 30); LocalDate b = a.withMonth(10); System.out.println(b);/*from w ww .ja v a2 s . c om*/ }