public enum ConditionType extends Enum<ConditionType>
| 枚举常量和说明 |
|---|
LOGIC_AND
logical and condition
|
LOGIC_NOT
logical not condition
|
LOGIC_OR
logical or condition
|
RANGE
range condition
|
RELATIVE
relative condition
|
SIMPLE
simple condition
|
public static final ConditionType SIMPLE
public static final ConditionType RELATIVE
public static final ConditionType RANGE
public static final ConditionType LOGIC_NOT
public static final ConditionType LOGIC_OR
public static final ConditionType LOGIC_AND
public static ConditionType[] values()
for (ConditionType c : ConditionType.values()) System.out.println(c);
public static ConditionType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2022. All rights reserved.