public enum OValueType extends Enum<OValueType>
| 枚举常量和说明 |
|---|
Bignumber
大数字(为序列化做准备)
|
Boolean
boolean 类型
|
DateTime
datetime 类型
|
Decimal
小数 类型
|
Integer
整数 类型
|
Null
null 类型
|
String
string 类型
|
public static final OValueType Null
public static final OValueType String
public static final OValueType Integer
public static final OValueType Decimal
public static final OValueType Boolean
public static final OValueType DateTime
public static final OValueType Bignumber
public static OValueType[] values()
for (OValueType c : OValueType.values()) System.out.println(c);
public static OValueType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2020. All rights reserved.