List of usage examples for java.time YearMonth withMonth
public YearMonth withMonth(int month)
From source file:Main.java
public static void main(String[] args) { YearMonth y = YearMonth.now(); YearMonth s = y.withMonth(3); System.out.println(s);//from w w w .j a va 2s . c o m }