Thursday, December 18, 2025
HomeLanguagesJavaHijrahChronology getCalendarType() method in Java with Example

HijrahChronology getCalendarType() method in Java with Example

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




// Java program to demonstrate
// getCalendarType() method
 
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
 
public class GFG {
    public static void main(String[] argv)
    {
        // creating and initializing
        // HijrahDate Object
        HijrahDate hidate
            = HijrahDate.now();
 
        // getting HijrahChronology
        // used in HijrahDate
        HijrahChronology crono
            = hidate.getChronology();
 
        // getting type of Calendar
        // by using getCalendarType() method
        String era = crono.getCalendarType();
 
        // display the result
        System.out.println("Type of Calendar : "
                           + era);
    }
}


Output

Type of Calendar : islamic-umalqura

Example 2: 

Java




// Java program to demonstrate
// getCalendarType() method
 
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
 
public class GFG {
    public static void main(String[] argv)
    {
        // creating and initializing
        // HijrahDate Object
        HijrahDate hidate
            = HijrahDate.now(
                Clock.systemDefaultZone());
 
        // getting HijrahChronology
        // used in HijrahDate
        HijrahChronology crono
            = hidate.getChronology();
 
        // getting type of Calendar
        // by using getCalendarType() method
        String era = crono.getCalendarType();
 
        // display the result
        System.out.println("Type of Calendar : "
                           + era);
    }
}


Output

Type of Calendar : islamic-umalqura

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/HijrahChronology.html#getCalendarType– 

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32455 POSTS0 COMMENTS
Milvus
108 POSTS0 COMMENTS
Nango Kala
6823 POSTS0 COMMENTS
Nicole Veronica
11958 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12036 POSTS0 COMMENTS
Shaida Kate Naidoo
6958 POSTS0 COMMENTS
Ted Musemwa
7203 POSTS0 COMMENTS
Thapelo Manthata
6910 POSTS0 COMMENTS
Umr Jansen
6890 POSTS0 COMMENTS