public enum RuntimeRuleMetaType extends java.lang.Enum<RuntimeRuleMetaType>
| 枚举常量和说明 |
|---|
Others
其他
|
UpdateRule
余额更新规则
|
| 限定符和类型 | 方法和说明 |
|---|---|
short |
getValue() |
static RuntimeRuleMetaType |
valueOf(int value) |
static RuntimeRuleMetaType |
valueOf(short value)
把传入值转为元数据类型
|
static RuntimeRuleMetaType |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static RuntimeRuleMetaType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final RuntimeRuleMetaType UpdateRule
public static final RuntimeRuleMetaType Others
public static RuntimeRuleMetaType[] values()
for (RuntimeRuleMetaType c : RuntimeRuleMetaType.values()) System.out.println(c);
public static RuntimeRuleMetaType valueOf(java.lang.String name)
name - 要返回的枚举常量的名称。java.lang.IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException - 如果参数为空值public short getValue()
public static RuntimeRuleMetaType valueOf(short value)
value - 传入值public static RuntimeRuleMetaType valueOf(int value)