public enum Operator extends Enum<Operator>
| Enum Constant and Description |
|---|
ADDITION |
ALL |
AND |
ANY |
BEGINS_WITH |
BETWEEN |
CONTAINS |
DIVISION |
ENDS_WITH |
EQUALS |
EXISTS |
GREATER |
GREATER_OR_EQUALS |
IN |
IS_NOT_NULL |
IS_NULL |
LESSER |
LESSER_OR_EQUALS |
LIKE |
MATCH_REGEX |
MODULUS |
MULTIPLICATION |
NOT |
NOT_EQUALS |
NOT_GREATER |
NOT_LESSER |
OR |
REPLACE_REGEX |
SELECT_IN |
SUBTRACTION |
UNIQUE |
| Modifier and Type | Method and Description |
|---|---|
static Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operator ADDITION
public static final Operator SUBTRACTION
public static final Operator MULTIPLICATION
public static final Operator DIVISION
public static final Operator MODULUS
public static final Operator EQUALS
public static final Operator GREATER
public static final Operator LESSER
public static final Operator GREATER_OR_EQUALS
public static final Operator LESSER_OR_EQUALS
public static final Operator NOT_EQUALS
public static final Operator NOT_GREATER
public static final Operator NOT_LESSER
public static final Operator ALL
public static final Operator AND
public static final Operator ANY
public static final Operator BETWEEN
public static final Operator EXISTS
public static final Operator IN
public static final Operator LIKE
public static final Operator NOT
public static final Operator OR
public static final Operator IS_NULL
public static final Operator UNIQUE
public static final Operator IS_NOT_NULL
public static final Operator BEGINS_WITH
public static final Operator ENDS_WITH
public static final Operator CONTAINS
public static final Operator MATCH_REGEX
public static final Operator REPLACE_REGEX
public static final Operator SELECT_IN
public static Operator[] values()
for (Operator c : Operator.values()) System.out.println(c);
public static Operator 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 © 2014. All Rights Reserved.