List of usage examples for java.time Year adjustInto
@Override
public Temporal adjustInto(Temporal temporal)
From source file:Main.java
public static void main(String[] args) { Year y = Year.of(2014); Temporal l = y.adjustInto(Year.of(2000)); System.out.println(l);/*from w w w . jav a 2 s . c om*/ }