Open In App

MinguoChronology getCalendarType() method in Java with Example

Improve
Improve
Like Article
Like
Save
Share
Report

The getCalendarType() method of java.time.chrono.MinguoChronology class is used to retrieve the type of calendar lies under this Minguo 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 Minguo 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
        // MinguoDate Object
        MinguoDate hidate
            = MinguoDate.now();
 
        // getting MinguoChronology
        // used in MinguoDate
        MinguoChronology 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 : roc

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
        // MinguoDate Object
        MinguoDate hidate
            = MinguoDate.now(Clock.systemDefaultZone());
 
        // getting MinguoChronology
        // used in MinguoDate
        MinguoChronology 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 : roc

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



Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads