VOOZH about

URL: https://www.geeksforgeeks.org/java/hijrahdate-isleapyear-method-in-java-with-example/

⇱ HijrahDate isLeapYear() method in Java with Example - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

HijrahDate isLeapYear() method in Java with Example

Last Updated : 27 Feb, 2020
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:
Output:
HijrahDate: Hijrah-umalqura AH 1441-06-25
Leap year
Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/HijrahDate.html#isLeapYear--
Comment