java.time.Year.isValidMonthDay() Method Example



Description

The java.time.Year.isValidMonthDay(MonthDay monthDay) method checks if the month-day is valid for this year.

Declaration

Following is the declaration for java.time.Year.isValidMonthDay(MonthDay monthDay) method.

public boolean isValidMonthDay(MonthDay monthDay)

Parameters

monthDay − the month-day to validate, null returns false.

Return Value

true if the month and day are valid for this year.

Example

The following example shows the usage of java.time.Year.isValidMonthDay(MonthDay monthDay) method.

package com.tutorialspoint;

import java.time.Year;
import java.time.MonthDay;

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

      Year date = Year.of(2020);
      MonthDay monthday = MonthDay.of(12,26);	  
      System.out.println(date.isValidMonthDay(monthday));  
   }
}

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

true
Advertisements