| Enum Constant and Description |
|---|
EQUAL_TO |
LESS_THAN |
LESS_THAN_OR_EQUAL_TO |
LIKE |
MORE_THAN |
MORE_THAN_OR_EQUAL_TO |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static Where.Exp |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Where.Exp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Where.Exp EQUAL_TO
public static final Where.Exp MORE_THAN
public static final Where.Exp MORE_THAN_OR_EQUAL_TO
public static final Where.Exp LESS_THAN
public static final Where.Exp LESS_THAN_OR_EQUAL_TO
public static final Where.Exp LIKE
public static Where.Exp[] values()
for (Where.Exp c : Where.Exp.values()) System.out.println(c);
public static Where.Exp 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<Where.Exp>