List of usage examples for java.time Year with
@Override
public Year with(TemporalAdjuster adjuster)
From source file:Main.java
public static void main(String[] args) { Year y = Year.of(2014); Year l = y.with(Year.of(2013)); System.out.println(l);//from w w w.j av a 2 s . co m }