public static enum ExpressionOperatorTypes.BINARY_OPERATOR extends Enum<ExpressionOperatorTypes.BINARY_OPERATOR>
| Enum Constant and Description |
|---|
ADD |
AND |
DIV |
EQ |
GE |
GT |
LE |
LT |
MOD |
MUL |
NE |
OR |
SUB |
| Modifier and Type | Method and Description |
|---|---|
static ExpressionOperatorTypes.BINARY_OPERATOR |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExpressionOperatorTypes.BINARY_OPERATOR[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpressionOperatorTypes.BINARY_OPERATOR EQ
public static final ExpressionOperatorTypes.BINARY_OPERATOR NE
public static final ExpressionOperatorTypes.BINARY_OPERATOR LT
public static final ExpressionOperatorTypes.BINARY_OPERATOR GT
public static final ExpressionOperatorTypes.BINARY_OPERATOR LE
public static final ExpressionOperatorTypes.BINARY_OPERATOR GE
public static final ExpressionOperatorTypes.BINARY_OPERATOR AND
public static final ExpressionOperatorTypes.BINARY_OPERATOR OR
public static final ExpressionOperatorTypes.BINARY_OPERATOR ADD
public static final ExpressionOperatorTypes.BINARY_OPERATOR MUL
public static final ExpressionOperatorTypes.BINARY_OPERATOR SUB
public static final ExpressionOperatorTypes.BINARY_OPERATOR DIV
public static final ExpressionOperatorTypes.BINARY_OPERATOR MOD
public static ExpressionOperatorTypes.BINARY_OPERATOR[] values()
for (ExpressionOperatorTypes.BINARY_OPERATOR c : ExpressionOperatorTypes.BINARY_OPERATOR.values()) System.out.println(c);
public static ExpressionOperatorTypes.BINARY_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 © 2020 SAP. All Rights Reserved.