The dateYearDay() method of java.time.chrono.HijrahChronology class is used to retrieve the local date according to the Islamic hijri calendar for the particular era.
Syntax:
Java
Java
public HijrahDate dateYearDay(Era era,
int year,
int day)
Parameter: This method takes the following arguments as parameter.
- era: which is the object of type Era
- year: which is the integer year for the year field of HijrahDate
- day: which is the integer day for the day field of HijrahDate
// Java program to demonstrate
// dateYearDay() method
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
public class GFG {
public static void main(String[] argv)
{
try {
// creating and initializing
// HijrahDate Object
HijrahDate hidate = HijrahDate.now();
// getting HijrahChronology
// used in HijrahDate
HijrahChronology crono
= hidate.getChronology();
// getting HijrahDate for the
// given date and year field
// by using dateYearDay() method
HijrahDate date
= crono.dateYearDay(
HijrahEra.AH, 1440, 24);
// display the result
System.out.println("HijrahDate is: "
+ date);
}
catch (DateTimeException e) {
System.out.println("passed parameter can "
+ "not form a date");
System.out.println("Exception thrown: " + e);
}
}
}
Output:
Example 2:
HijrahDate is: Hijrah-umalqura AH 1440-01-24
// Java program to demonstrate
// dateYearDay() method
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
public class GFG {
public static void main(String[] argv)
{
try {
// creating and initializing
// HijrahDate Object
HijrahDate hidate
= HijrahDate.now();
// getting HijrahChronology
// used in HijrahDate
HijrahChronology crono
= hidate.getChronology();
// getting HijrahDate for the
// given date and year field
// by using dateYearDay() method
HijrahDate date
= crono.dateYearDay(
HijrahEra.AH, 2019, 24);
// display the result
System.out.println("HijrahDate is: "
+ date);
}
catch (DateTimeException e) {
System.out.println("passed parameter can "
+ "not form a date");
System.out.println("Exception thrown: " + e);
}
}
}
Output:
Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/HijrahChronology.html#dateYearDay-java.time.chrono.Era-int-int-passed parameter can not form a date Exception thrown: java.time.DateTimeException: Invalid Hijrah date, year: 2019, month: 1