List of usage examples for java.time Year get
@Override public int get(TemporalField field)
Source Link
From source file:Main.java
public static void main(String[] args) { Year y = Year.of(2014); System.out.println(y.get(ChronoField.YEAR)); }