The
isLeapYear() method of
java.time.chrono.HijrahDate class is used to differentiate between the leap year and non leap year. If the year represented by this HijrahDate is a leap year, this method will return true, otherwise false.
Syntax:
public boolean isLeapYear()
Parameter: This method does not accept any argument as a parameter.
Return Value: This method returns
Boolean value, i.e. true if the proleptic year is leap year otherwise false.
Below are the examples to illustrate the
isLeapYear() method:
Example 1:
Output:
HijrahDate: Hijrah-umalqura AH 1398-03-23
Not a leap year
Example 2: