public enum Operation extends Enum<Operation>
Enum Constant and Description |
---|
between
Operation between
|
eq
Operation equal
|
gt
Operation greater than
|
gte
Operation greater than or equal
|
in
Operation in
|
like
Operation like
|
lt
Operation less than
|
lte
Operation less than or equal
|
neq
Operation not equal
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
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 eq
public static final Operation neq
public static final Operation lt
public static final Operation lte
public static final Operation gt
public static final Operation gte
public static final Operation in
public static final Operation like
public static final Operation between
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 © 2017. All rights reserved.