YearMonth with(TemporalAdjuster adjuster) example
Description
YearMonth with(TemporalAdjuster adjuster)
returns an adjusted copy of this year-month.
Syntax
with
has the following syntax.
public YearMonth with(TemporalAdjuster adjuster)
Example
The following example shows how to use with
.
import java.time.YearMonth;
/*ww w . j ava2 s. co m*/
public class Main {
public static void main(String[] args) {
YearMonth y = YearMonth.now();
YearMonth s = y.with(YearMonth.of(2013,01));
System.out.println(s);
}
}
The code above generates the following result.