public enum Condition extends Enum<Condition>
| Enum Constant and Description |
|---|
EQUALS |
EXISTS |
GREATER |
LESS |
MATCHES |
NOTEQUALS |
NOTEXISTS |
NOTMATCHES |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Condition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Condition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Condition MATCHES
public static final Condition NOTMATCHES
public static final Condition EXISTS
public static final Condition NOTEXISTS
public static final Condition EQUALS
public static final Condition NOTEQUALS
public static final Condition LESS
public static final Condition GREATER
public static Condition[] values()
for (Condition c : Condition.values()) System.out.println(c);
public static Condition 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 © 2025. All rights reserved.