java.time.Year.atDay() Method Example



Description

The java.time.Year.atDay(int dayOfYear) method combines this year with a day-of-year to create a LocalDate.

Declaration

Following is the declaration for java.time.Year.atDay(int dayOfYear) method.

public LocalDate atDay(int dayOfYear)

Parameters

dayOfYear − the day-of-year to use, from 1 to 365-366.

Return Value

the local date formed from this year and the specified date of year, not null.

Exception

DateTimeException − if the day of year is zero or less, 366 or greater or equal to 366 and this is not a leap year.

Example

The following example shows the usage of java.time.Year.atDay(int dayOfYear) method.

package com.tutorialspoint;

import java.time.LocalDate;
import java.time.Year;

public class YearDemo {
   public static void main(String[] args) {

      Year year = Year.of(2015);
      
      LocalDate date = year.atDay(26);
      System.out.println(date);  
   }
}

Let us compile and run the above program, this will produce the following result −

2015-01-26
Advertisements