public enum EDataType extends Enum<EDataType>
Enum Constant and Description |
---|
Boolean
布尔
|
Byte
字节
|
Char
字符
|
Default
缺省空白字符串
|
Double
双精度浮点数
|
Float
单精度浮点数
|
Integer
整型
|
Long
长整型
|
Object
对象结构
|
Short
短整型
|
String
字符串
|
Modifier and Type | Method and Description |
---|---|
static EDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EDataType Byte
public static final EDataType Short
public static final EDataType Long
public static final EDataType Integer
public static final EDataType Boolean
public static final EDataType Char
public static final EDataType String
public static final EDataType Float
public static final EDataType Double
public static final EDataType Object
public static final EDataType Default
public static EDataType[] values()
for (EDataType c : EDataType.values()) System.out.println(c);
public static EDataType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2018. All rights reserved.