public enum WhereOperator extends Enum<WhereOperator>
| Modifier and Type | Method and Description |
|---|---|
static WhereOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WhereOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WhereOperator LT
public static final WhereOperator LE
public static final WhereOperator EQ
public static final WhereOperator NE
public static final WhereOperator GE
public static final WhereOperator GT
public static final WhereOperator LIKE
public static final WhereOperator UNLIKE
public static final WhereOperator IN
public static WhereOperator[] values()
for (WhereOperator c : WhereOperator.values()) System.out.println(c);
public static WhereOperator 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.