| Enum Constant and Description |
|---|
Eq |
Gt |
GtE |
In |
Is |
IsNot |
Lt |
LtE |
NotEq |
NotIn |
UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
static cmpopType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static cmpopType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final cmpopType UNDEFINED
public static final cmpopType Eq
public static final cmpopType NotEq
public static final cmpopType Lt
public static final cmpopType LtE
public static final cmpopType Gt
public static final cmpopType GtE
public static final cmpopType Is
public static final cmpopType IsNot
public static final cmpopType In
public static final cmpopType NotIn
public static cmpopType[] values()
for (cmpopType c : cmpopType.values()) System.out.println(c);
public static cmpopType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null