java.time.Month.firstDayOfYear() Method Example



Description

The java.time.Month.firstDayOfYear(boolean leapYear) method gets the day-of-year corresponding to the first day of this month.

Declaration

Following is the declaration for java.time.Month.firstDayOfYear(boolean leapYear) method.

public int firstDayOfYear(boolean leapYear)

Parameters

leapYear − true if the length is required for a leap year.

Return Value

the day of year corresponding to the first day of this month, from 1 to 336.

Example

The following example shows the usage of java.time.Month.firstDayOfYear(boolean leapYear) method.

package com.tutorialspoint;

import java.time.Month;

public class MonthDemo {
   public static void main(String[] args) {
 
      Month month = Month.of(3);
      System.out.println(month.firstDayOfYear(false));  
   }
}

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

60
Advertisements