List of usage examples for java.time Month adjustInto
@Override
public Temporal adjustInto(Temporal temporal)
From source file:Main.java
public static void main(String[] args) { Month m = Month.from(LocalDate.now()); Temporal n = m.adjustInto(LocalDate.now()); System.out.println(n);/*from w w w . j ava 2 s . c om*/ }