List of usage examples for java.time Year atMonthDay
public LocalDate atMonthDay(MonthDay monthDay)
From source file:Main.java
public static void main(String[] args) { Year y = Year.of(2014); LocalDate l = y.atMonthDay(MonthDay.of(Month.JANUARY, 21)); System.out.println(l);//w w w. j a va 2s . com }