Java Date Time - YearMonth with(TemporalAdjuster adjuster) example








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 a va 2 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.