List of usage examples for java.time YearMonth with
@Override public YearMonth with(TemporalField field, long newValue)
From source file:Main.java
public static void main(String[] args) { YearMonth y = YearMonth.now(); YearMonth s = y.with(ChronoField.YEAR, 2013); System.out.println(s);//from w w w. jav a 2 s .co m }