- java.lang.Object
-
- java.lang.Enum<ThaiBuddhistEra>
-
- java.time.chrono.ThaiBuddhistEra
-
- All Implemented Interfaces:
-
Serializable
,Comparable<ThaiBuddhistEra>
,Era
,TemporalAccessor
,TemporalAdjuster
public enum ThaiBuddhistEra extends Enum<ThaiBuddhistEra> implements Era
泰国佛教日历系统的时代。泰国佛教日历系统有两个时代。 当今时代,从1年起,被称为“佛教”时期。 所有前几年,在零食或更早的时候,在这个时代的数字,一年或更长的时间,是“前佛教时代”的一部分。
Buddhist years and eras year-of-era era proleptic-year ISO proleptic-year 2 BE 2 -542 1 BE 1 -543 1 BEFORE_BE 0 -544 2 BEFORE_BE -1 -545不要使用
ordinal()
获得的数字表示ThaiBuddhistEra
。 改用getValue()
。- 实现要求:
- 这是一个不可变的和线程安全的枚举。
- 从以下版本开始:
- 1.8
-
-
方法摘要
所有方法 静态方法 接口方法 具体的方法 Modifier and Type 方法 描述 int
getValue()
获得数字时代int
价值。static ThaiBuddhistEra
of(int thaiBuddhistEra)
从int
获取ThaiBuddhistEra
的实例。static ThaiBuddhistEra
valueOf(String name)
以指定的名称返回此类型的枚举常量。static ThaiBuddhistEra[]
values()
按照它们声明的顺序返回一个包含此枚举类型常量的数组。-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface java.time.chrono.Era
adjustInto, get, getDisplayName, getLong, isSupported, query, range
-
-
-
-
Enum Constant Detail
-
BEFORE_BE
public static final ThaiBuddhistEra BEFORE_BE
在当前时代之前的“以前的佛教时代”,其数值为0的单例实例。
-
BE
public static final ThaiBuddhistEra BE
当代时代的单身实例“佛教时代”,其数值为1。
-
-
方法详细信息
-
values
public static ThaiBuddhistEra[] values()
按照它们声明的顺序返回一个包含此枚举类型常量的数组。 该方法可用于遍历常量如下:for (ThaiBuddhistEra c : ThaiBuddhistEra.values()) System.out.println(c);
- 结果
- 一个包含这个枚举类型的常量的数组,按照它们被声明的顺序
-
valueOf
public static ThaiBuddhistEra valueOf(String name)
以指定的名称返回此类型的枚举常量。 字符串必须完全匹配用于声明此类型的枚举常量的标识符。 (不允许使用外来空白字符。)- 参数
-
name
- 要返回的枚举常量的名称。 - 结果
- 具有指定名称的枚举常数
- 异常
-
IllegalArgumentException
- 如果此枚举类型没有指定名称的常量 -
NullPointerException
- 如果参数为空
-
of
public static ThaiBuddhistEra of(int thaiBuddhistEra)
从int
获取ThaiBuddhistEra
的实例。ThaiBuddhistEra
是代表BEFORE_BE / BE的泰国佛教时代的枚举。 该工厂允许从int
获得枚举。- 参数
-
thaiBuddhistEra
- 代表时代,从0到1 - 结果
- 佛教徒单身人士,从不为空
- 异常
-
DateTimeException
- 如果时代无效
-
-