The getCalendarType() method of java.time.chrono.HijrahChronology class is used to retrieve the type of calendar lies under this hijrah chronological system.
Syntax:
public String getCalendarType()
Parameter: This method does not accept any argument as a parameter.
Return Value: This method returns the type of calendar lies under this hijrah chronological system.
Below are the examples to illustrate the getCalendarType() 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)
{
HijrahDate hidate
= HijrahDate.now();
HijrahChronology crono
= hidate.getChronology();
String era = crono.getCalendarType();
System.out.println( "Type of Calendar : "
+ era);
}
}
|
OutputType of Calendar : islamic-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)
{
HijrahDate hidate
= HijrahDate.now(
Clock.systemDefaultZone());
HijrahChronology crono
= hidate.getChronology();
String era = crono.getCalendarType();
System.out.println( "Type of Calendar : "
+ era);
}
}
|
OutputType of Calendar : islamic-umalqura
Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/HijrahChronology.html#getCalendarType–