public abstract class QueryOperatorCode
extends java.lang.Object
Constants for QueryOperator.code
.
Modifier and Type | Field and Description |
---|---|
static int |
ADD
Constant
QueryOperator.code value for the OData 'add' operator. |
static int |
ALL
Constant
QueryOperator.code value for the OData 'all' operator. |
static int |
AND
Constant
QueryOperator.code value for the OData 'and' operator. |
static int |
ANY
Constant
QueryOperator.code value for the OData 'any' operator. |
static int |
DIVIDE
Constant
QueryOperator.code value for the OData 'div' operator. |
static int |
EQUAL
Constant
QueryOperator.code value for the OData 'eq' operator. |
static int |
GREATER_EQUAL
Constant
QueryOperator.code value for the OData 'ge' operator. |
static int |
GREATER_THAN
Constant
QueryOperator.code value for the OData 'gt' operator. |
static int |
HAS
Constant
QueryOperator.code value for the OData 'has' operator. |
static int |
LESS_EQUAL
Constant
QueryOperator.code value for the OData 'le' operator. |
static int |
LESS_THAN
Constant
QueryOperator.code value for the OData 'lt' operator. |
static int |
MODULO
Constant
QueryOperator.code value for the OData 'mod' operator. |
static int |
MULTIPLY
Constant
QueryOperator.code value for the OData 'mul' operator. |
static int |
NEGATE
Constant
QueryOperator.code value for the OData '-' operator. |
static int |
NOT
Constant
QueryOperator.code value for the OData 'not' operator. |
static int |
NOT_EQUAL
Constant
QueryOperator.code value for the OData 'ne' operator. |
static int |
OR
Constant
QueryOperator.code value for the OData 'or' operator. |
static int |
SUBTRACT
Constant
QueryOperator.code value for the OData 'sub' operator. |
Constructor and Description |
---|
QueryOperatorCode() |
public static final int EQUAL
Constant QueryOperator.code
value for the OData 'eq' operator.
public static final int NOT_EQUAL
Constant QueryOperator.code
value for the OData 'ne' operator.
public static final int GREATER_THAN
Constant QueryOperator.code
value for the OData 'gt' operator.
public static final int GREATER_EQUAL
Constant QueryOperator.code
value for the OData 'ge' operator.
public static final int LESS_THAN
Constant QueryOperator.code
value for the OData 'lt' operator.
public static final int LESS_EQUAL
Constant QueryOperator.code
value for the OData 'le' operator.
public static final int AND
Constant QueryOperator.code
value for the OData 'and' operator.
public static final int OR
Constant QueryOperator.code
value for the OData 'or' operator.
public static final int NOT
Constant QueryOperator.code
value for the OData 'not' operator.
public static final int NEGATE
Constant QueryOperator.code
value for the OData '-' operator.
public static final int ADD
Constant QueryOperator.code
value for the OData 'add' operator.
public static final int SUBTRACT
Constant QueryOperator.code
value for the OData 'sub' operator.
public static final int MULTIPLY
Constant QueryOperator.code
value for the OData 'mul' operator.
public static final int DIVIDE
Constant QueryOperator.code
value for the OData 'div' operator.
public static final int MODULO
Constant QueryOperator.code
value for the OData 'mod' operator.
public static final int ANY
Constant QueryOperator.code
value for the OData 'any' operator.
public static final int ALL
Constant QueryOperator.code
value for the OData 'all' operator.
public static final int HAS
Constant QueryOperator.code
value for the OData 'has' operator.