public enum Operation extends Enum<Operation>
| Enum Constant and Description |
|---|
AVG |
BETWEEN |
BY_DAY |
BY_MONTH |
BY_WEEK |
BY_YEAR |
COUNT |
EQUALS |
GREATER |
GREATER_EQUAL |
IN |
IS_NULL |
LIKE |
LOWER |
LOWER_EQUAL |
MAX |
MIN |
NONE |
NOT_EQUALS |
NOT_NULL |
SUM |
| Modifier and Type | Method and Description |
|---|---|
static Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operation NONE
public static final Operation GREATER
public static final Operation GREATER_EQUAL
public static final Operation LOWER
public static final Operation LOWER_EQUAL
public static final Operation BETWEEN
public static final Operation EQUALS
public static final Operation IN
public static final Operation LIKE
public static final Operation MIN
public static final Operation MAX
public static final Operation AVG
public static final Operation SUM
public static final Operation COUNT
public static final Operation IS_NULL
public static final Operation NOT_NULL
public static final Operation NOT_EQUALS
public static final Operation BY_DAY
public static final Operation BY_WEEK
public static final Operation BY_MONTH
public static final Operation BY_YEAR
public static Operation[] values()
for (Operation c : Operation.values()) System.out.println(c);
public static Operation 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 © 2010–2016 Henix, henix.fr. All rights reserved.