List of usage examples for java.time MonthDay adjustInto
@Override
public Temporal adjustInto(Temporal temporal)
From source file:Main.java
public static void main(String[] args) { MonthDay m = MonthDay.now(); Temporal n = m.adjustInto(LocalDate.now()); System.out.println(n);//from w ww. ja v a2s . c o m }