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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。