Open In App

MinguoChronology eraOf() method in Java with Example

Last Updated : 24 Apr, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The eraOf() method of java.time.chrono.MinguoChronology class is used to retrieve the MinguoEra by using numeric value.

Syntax:

public MinguoEra eraOf(int eraValue)

Parameter: This method takes the eraValue integer as a parameter for which MinguoEra is going to be generated.

Return Value: This method returns the Minguo Era by using numeric value.

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

Example 1:




// Java program to demonstrate
// eraOf() 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 MinguoChronology
            // used in LocalDate
            MinguoChronology crono
                = hidate.getChronology();
  
            // getting MinguoEra for the
            // given integer value
            // by using eraOf() method
            MinguoEra era = crono.eraOf(0);
  
            // display the result
            System.out.println(
                "MinguoEra is: "
                + era);
        }
        catch (DateTimeException e) {
            System.out.println(
                "MinguoEra is invalid");
            System.out.println(
                "Exception thrown: " + e);
        }
    }
}


Output:

MinguoEra is: BEFORE_ROC

Example 2:




// Java program to demonstrate
// eraOf() 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 MinguoChronology
            // used in LocalDate
            MinguoChronology crono
                = hidate.getChronology();
  
            // getting MinguoEra for the
            // given integer value
            // by using eraOf() method
            MinguoEra era = crono.eraOf(1);
  
            // display the result
            System.out.println(
                "MinguoEra is: "
                + era);
        }
        catch (DateTimeException e) {
            System.out.println(
                "MinguoEra is invalid");
            System.out.println(
                "Exception thrown: " + e);
        }
    }
}


Output:

MinguoEra is: ROC

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/MinguoChronology.html#eraOf-int-



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads