List of usage examples for java.time Period withMonths
public Period withMonths(int months)
From source file:Main.java
public static void main(String[] args) { Period p = Period.ofMonths(1); Period l = p.withMonths(10); System.out.println(l);//w w w .j a v a 2 s.c o m }