List of usage examples for java.time YearMonth get
@Override public int get(TemporalField field)
From source file:Main.java
public static void main(String[] args) { YearMonth y = YearMonth.now(); long m = y.get(ChronoField.YEAR); System.out.println(m);// w w w . j a va 2s . c om }