List of usage examples for java.time LocalDate with
@Override public LocalDate with(TemporalField field, long newValue)
From source file:Main.java
public static void main(String[] args) { LocalDate a = LocalDate.of(2014, 6, 30); LocalDate b = a.with(ChronoField.YEAR, 2015); System.out.println(b);//from w w w . j a v a 2s . c om }