List of usage examples for java.time YearMonth plus
@Override public YearMonth plus(long amountToAdd, TemporalUnit unit)
From source file:Main.java
public static void main(String[] args) { YearMonth y = YearMonth.now(); YearMonth s = y.plus(3, ChronoUnit.YEARS); System.out.println(s);/*from w w w . j ava 2 s. c o m*/ }