java.time.chrono.ThaiBuddhistChronology類的getCalendarType()方法用於檢索此ThaiBuddhist時序係統下的日曆類型。
用法:
public String getCalendarType()
參數:此方法不接受任何參數作為參數。
返回值:此方法返回此ThaiBuddhist年表係統下的日曆類型。
下麵是說明getCalendarType()方法的示例:
範例1:
// 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
// ThaiBuddhistDate Object
ThaiBuddhistDate hidate
= ThaiBuddhistDate.now();
// getting ThaiBuddhistChronology
// used in ThaiBuddhistDate
ThaiBuddhistChronology crono
= hidate.getChronology();
// getting type of Calander
// by using getCalendarType() method
String era = crono.getCalendarType();
// display the result
System.out.println("Type of Calander:"
+ era);
}
}
輸出:
Type of Calander:buddhist
範例2:
// 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
// ThaiBuddhistDate Object
ThaiBuddhistDate hidate
= ThaiBuddhistDate.now(
Clock.systemDefaultZone());
// getting ThaiBuddhistChronology
// used in ThaiBuddhistDate
ThaiBuddhistChronology crono
= hidate.getChronology();
// getting type of Calander
// by using getCalendarType() method
String era = crono.getCalendarType();
// display the result
System.out.println("Type of Calander:"
+ era);
}
}
輸出:
Type of Calander:buddhist
相關用法
- Java MinguoChronology getCalendarType()用法及代碼示例
- Java HijrahChronology getCalendarType()用法及代碼示例
- Java JapaneseChronology getCalendarType()用法及代碼示例
- Java IsoChronology getCalendarType()用法及代碼示例
- Java ThaiBuddhistChronology isLeapYear()用法及代碼示例
- Java ThaiBuddhistChronology resolveDate()用法及代碼示例
- Java ThaiBuddhistChronology date(int, int, int)用法及代碼示例
- Java ThaiBuddhistChronology localDateTime()用法及代碼示例
- Java ThaiBuddhistChronology eraOf()用法及代碼示例
- Java ThaiBuddhistChronology dateEpochDay()用法及代碼示例
- Java ThaiBuddhistChronology dateYearDay(int, int)用法及代碼示例
- Java ThaiBuddhistChronology getId()用法及代碼示例
- Java ThaiBuddhistChronology dateYearDay(Era, int, int)用法及代碼示例
- Java ThaiBuddhistChronology prolepticYear()用法及代碼示例
- Java ThaiBuddhistChronology eras()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 ThaiBuddhistChronology getCalendarType() method in Java with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。