Java tutorial
import java.time.LocalDate; import java.time.Month; import java.time.MonthDay; import java.time.Year; public class Main { public static void main(String[] args) { Year y = Year.of(2014); LocalDate l = y.atMonthDay(MonthDay.of(Month.JANUARY, 21)); System.out.println(l); } }