List of usage examples for java.time MonthDay atYear
public LocalDate atYear(int year)
From source file:Main.java
public static void main(String[] args) { MonthDay m = MonthDay.now(); LocalDate n = m.atYear(1990); System.out.println(n);/*from www. jav a 2 s . c o m*/ }