java.time.MonthDay.of() Method Example



Description

The java.time.MonthDay.of(int month, int dayOfMonth) method obtains an instance of MonthDay.

Declaration

Following is the declaration for java.time.MonthDay.of(int month, int dayOfMonth) method.

public static MonthDay of(int month, int dayOfMonth)

Parameters

  • month − the month-of-year to represent, from 1 (January) to 12 (December).

  • dayOfMonth − the day-of-month to represent, from 1 to 31

Return Value

the month-day, not null.

Exceptions

DateTimeException − if the value of any field is out of range, or if the day-of-month is invalid for the month.

Example

The following example shows the usage of java.time.MonthDay.of(int month, int dayOfMonth) method.

package com.tutorialspoint;

import java.time.MonthDay;

public class MonthDayDemo {
   public static void main(String[] args) {
 
      MonthDay date = MonthDay.of(6,30);
      System.out.println(date);  
   }
}

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

--06-30
Advertisements