public enum C_OperatorType extends Enum<C_OperatorType>
| 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 AVG
public static final C_OperatorType COUNT
public static final C_OperatorType MAX
public static final C_OperatorType MIN
public static final C_OperatorType SUM
public static final C_OperatorType ST_EXTENT
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 CONCAT
public static final C_OperatorType SUBSTRING_BY_INDEX
public static final C_OperatorType SUBSTRING_BY_REGEX
public static final C_OperatorType SUBSTRING_POSITION
public static final C_OperatorType TEXT_REPLACE_MATCHING_REGEX
public static final C_OperatorType CAST
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.