El método getChronology() de la clase java.time.chrono.ThaiBuddhistDate se utiliza para recuperar la cronología de esta fecha ThaiBuddhist en la que se encuentra esta fecha.
Sintaxis:
public ThaiBuddhistChronology getChronology()
Parámetro: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve la cronología de esta fecha budista tailandesa.
A continuación se muestran los ejemplos para ilustrar el método getChronology() :
Ejemplo 1:
// Java program to demonstrate // getChronology() 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 // ThaiBuddhistDate Object ThaiBuddhistDate hidate = ThaiBuddhistDate.now(); // Getting the chronology of this date // by using getChronology() method ThaiBuddhistChronology crono = hidate.getChronology(); // Display the result System.out.println( "ThaiBuddhistChronology: " + crono); } catch (DateTimeException e) { System.out.println( "Passed parameter can" + " not form a date"); System.out.println( "Exception thrown: " + e); } } }
Producción:
ThaiBuddhistChronology: ThaiBuddhist
Ejemplo 2:
// Java program to demonstrate // getChronology() 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 // ThaiBuddhistDate Object ThaiBuddhistDate hidate = ThaiBuddhistDate.of(2008, 04, 24); // Getting chronology of this date // by using getChronology() method ThaiBuddhistChronology crono = hidate.getChronology(); // Display the result System.out.println( "ThaiBuddhistChronology: " + crono); } catch (DateTimeException e) { System.out.println( "Passed parameter can" + " not form a date"); System.out.println( "Exception thrown: " + e); } } }
Producción:
ThaiBuddhistChronology: ThaiBuddhist
Referencia: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ThaiBuddhistDate.html#getChronology–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA