Example usage for java.time Year atMonthDay

List of usage examples for java.time Year atMonthDay

Introduction

In this page you can find the example usage for java.time Year atMonthDay.

Prototype

public LocalDate atMonthDay(MonthDay monthDay) 

Source Link

Document

Combines this year with a month-day to create a LocalDate .

Usage

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

}