List of usage examples for java.time Period plusMonths
public Period plusMonths(long monthsToAdd)
From source file:Main.java
public static void main(String[] args) { Period p = Period.ofMonths(1); Period l = p.plusMonths(12); System.out.println(l);// w w w . j a va 2 s. co m }