Enum Class ClassType
- 所有已实现的接口:
Serializable,Comparable<ClassType>,Constable
类的类型
- 作者:
- orange
-
枚举常量详细资料
-
Array
数组 -
Enum
枚举 -
Long
长整型 -
Int
整型 -
Double
双精度 -
String
字符串 -
Boolean
布尔值 -
Date
日期 -
SqlDate
Sql日期 -
Timestamp
时间戳 -
Time
时间 -
List
List -
Map
Map -
Byte
字节 -
Char
字符 -
Short
短整型 -
Object
对象 -
Class
类 -
ClassObject
类对象 -
BigDecimal
Big Decimal -
BigInteger
Big Integer -
Null
空值
-
-
方法详细资料
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- 返回:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- 参数:
name- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- 如果参数为空值
-