The getId() method of java.time.chrono.MinguoChronology class is used to retrieve the identification status for the particular chronology for which getId() method is revoked.
Syntax:
public String getId()
Parameter: This method does not accept any argument as a parameter.
Return Value: This method returns the identification status for the particular chronology for which getId() method is revoked.
Below are the examples to illustrate the getId() method:
Example 1:
// Java program to demonstrate // getId() 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 id of this Chronology // by using getId() method String id = crono.getId(); // display the result System.out.println( "id : " + id); } } |
id : Minguo
Example 2:
// Java program to demonstrate // getId() 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 id of this Chronology // by using getId() method String id = crono.getId(); // display the result System.out.println( "id : " + id); } } |
id : Minguo
Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/MinguoChronology.html#getId–
Attention reader! Don’t stop learning now. Get hold of all the important Java Foundation and Collections concepts with the Fundamentals of Java and Java Collections Course at a student-friendly price and become industry ready.