public enum ConditionType extends Enum<ConditionType>
| Enum Constant and Description |
|---|
Equals |
Greater |
GreaterEquals |
Less |
LessEquals |
Match |
NotEquals |
NotMatch |
| Modifier and Type | Method and Description |
|---|---|
static ConditionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConditionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConditionType LessEquals
public static final ConditionType Less
public static final ConditionType GreaterEquals
public static final ConditionType Greater
public static final ConditionType Equals
public static final ConditionType NotEquals
public static final ConditionType Match
public static final ConditionType NotMatch
public static ConditionType[] values()
for (ConditionType c : ConditionType.values()) System.out.println(c);
public static ConditionType 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 © 2017. All rights reserved.