java.time.MonthDay.isValidYear() Method Example



Description

The java.time.MonthDay.isValidYear(int year) method checks if the year is valid for this month-day.

Declaration

Following is the declaration for java.time.MonthDay.isValidYear(int year) method.

public boolean isValidYear(int year)

Parameters

year − the year to validate.

Return Value

true if the year is valid for this month-day.

Example

The following example shows the usage of java.time.MonthDay.isValidYear(int year) method.

package com.tutorialspoint;

import java.time.MonthDay;

public class MonthDayDemo {
   public static void main(String[] args) {
 
      MonthDay date = MonthDay.parse("--02-29");
      System.out.println(date.isValidYear(2000));  
   }
}

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

true
Advertisements