Thursday, June 18, 2026
HomeLanguagesJavaMinguoDate getEra() method in Java with Example

MinguoDate getEra() method in Java with Example

The getEra() method of java.time.chrono.MinguoDate class is used to retrieve the era related to this Minguo date.

Syntax: 

public MinguoEra getEra()

Parameter: This method does not accept any parameter.

Return Value: This method returns the era of this Minguo date.

Below are the examples to illustrate the getEra() method:

Example 1: 

Java




// Java program to demonstrate
// getEra() 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
            // MinguoDate Object
            MinguoDate hidate = MinguoDate.now();
  
            // getting chronology of this date
            // by using getEra() method
            MinguoEra crono = hidate.getEra();
  
            // display the result
            System.out.println("MinguoEra: "
                               + crono);
        }
        catch (DateTimeException e) {
            System.out.println("passed parameter can"
                               + " not form a date");
            System.out.println("Exception thrown: "
                               + e);
        }
    }
}


Output:

MinguoEra: ROC

Example 2:  

Java




// Java program to demonstrate
// getEra() 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
            // MinguoDate Object
            MinguoDate hidate = MinguoDate.of(2008, 04, 24);
  
            // getting chronology of this date
            // by using getEra() method
            MinguoEra crono = hidate.getEra();
  
            // display the result
            System.out.println("MinguoEra: "
                               + crono);
        }
        catch (DateTimeException e) {
            System.out.println("passed parameter can"
                               + " not form a date");
            System.out.println("Exception thrown: "
                               + e);
        }
    }
}


Output:

MinguoEra: ROC

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

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

2 COMMENTS

Most Popular

Dominic
32516 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6898 POSTS0 COMMENTS
Nicole Veronica
12014 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6965 POSTS0 COMMENTS