Wednesday, July 3, 2024
HomeLanguagesJavaThaiBuddhistChronology getId() method in Java with Example

ThaiBuddhistChronology getId() method in Java with Example

The getId() method of java.time.chrono.ThaiBuddhistChronology 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
        // ThaiBuddhistDate Object
        ThaiBuddhistDate hidate
            = ThaiBuddhistDate.now();
  
        // getting ThaiBuddhistChronology
        // used in ThaiBuddhistDate
        ThaiBuddhistChronology crono
            = hidate.getChronology();
  
        // getting id of this Chronology
        // by using getId() method
        String id = crono.getId();
  
        // display the result
        System.out.println("id : " + id);
    }
}


Output:

id : ThaiBuddhist

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
        // ThaiBuddhistDate Object
        ThaiBuddhistDate hidate
            = ThaiBuddhistDate.now(
                Clock.systemDefaultZone());
  
        // getting ThaiBuddhistChronology
        // used in ThaiBuddhistDate
        ThaiBuddhistChronology crono
            = hidate.getChronology();
  
        // getting id of this Chronology
        // by using getId() method
        String id = crono.getId();
  
        // display the result
        System.out.println("id : " + id);
    }
}


Output:

id : ThaiBuddhist

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

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments