Java Date Time - Year atMonthDay(MonthDay monthDay) example








Year atMonthDay(MonthDay monthDay) combines this year with a month-day to create a LocalDate.

Syntax

atMonthDay has the following syntax.

public LocalDate atMonthDay(MonthDay monthDay)

Example

The following example shows how to use atMonthDay.

import java.time.LocalDate;
import java.time.Month;
import java.time.MonthDay;
import java.time.Year;
//  w w w.j a v  a2  s  . c  o m
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);

  }
}

The code above generates the following result.