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