The getChronology() method of java.time.chrono.HijrahDate class is used to retrieve the chronology of this hijrah date under which this date lies.
Syntax:
public HijrahChronology getChronology()
Parameter: This method does not accept any parameter.
Return Value: This method returns the chronology of this hijrah date.
Below are the examples to illustrate the getChronology() method:
Example 1:
Java
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
public class GFG {
public static void main(String[] argv) {
try {
HijrahDate hidate = HijrahDate.now();
HijrahChronology crono
= hidate.getChronology();
System.out.println( "HijrahChronology: "
+ crono);
} catch (DateTimeException e) {
System.out.println( "passed parameter can"
+ " not form a date" );
System.out.println( "Exception thrown: " + e);
}
}
}
|
OutputHijrahChronology: Hijrah-umalqura
Example 2:
Java
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
public class GFG {
public static void main(String[] argv) {
try {
HijrahDate hidate
= HijrahDate.of( 1444 , 04 , 24 );
HijrahChronology crono
= hidate.getChronology();
System.out.println( "HijrahChronology : "
+ crono);
} catch (DateTimeException e) {
System.out.println( "passed parameter can"
+ " not form a date" );
System.out.println( "Exception thrown: " + e);
}
}
}
|
OutputHijrahChronology : Hijrah-umalqura
Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/HijrahDate.html#getChronology–