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