El método getCalendarType() de la clase java.time.chrono.HijrahChronology se utiliza para recuperar el tipo de calendario que se encuentra bajo este sistema cronológico hijrah.
Sintaxis:
public String getCalendarType()
Parámetro: Este método no acepta ningún argumento como parámetro.
Valor devuelto: este método devuelve el tipo de calendario que se encuentra bajo este sistema cronológico hijrah.
A continuación se muestran los ejemplos para ilustrar el método getCalendarType() :
Ejemplo 1:
Java
// Java program to demonstrate // getCalendarType() 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 // HijrahDate Object HijrahDate hidate = HijrahDate.now(); // getting HijrahChronology // used in HijrahDate HijrahChronology crono = hidate.getChronology(); // getting type of Calendar // by using getCalendarType() method String era = crono.getCalendarType(); // display the result System.out.println("Type of Calendar : " + era); } }
Producción
Type of Calendar : islamic-umalqura
Ejemplo 2:
Java
// Java program to demonstrate // getCalendarType() 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 // HijrahDate Object HijrahDate hidate = HijrahDate.now( Clock.systemDefaultZone()); // getting HijrahChronology // used in HijrahDate HijrahChronology crono = hidate.getChronology(); // getting type of Calendar // by using getCalendarType() method String era = crono.getCalendarType(); // display the result System.out.println("Type of Calendar : " + era); } }
Producción
Type of Calendar : islamic-umalqura
Referencia: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/HijrahChronology.html#getCalendarType–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA