public enum Operator extends Enum<Operator>
| Enum Constant and Description |
|---|
AND |
EQ |
GT |
GT_EQ |
IN |
IS |
NOT |
NOT_EQ |
OR |
ST |
ST_EQ |
| Modifier and Type | Method and Description |
|---|---|
String |
getEncodedValue() |
static Map<String,Operator> |
getEncodedValueMap() |
int |
getPrecedence() |
String |
getValue() |
static Map<String,Operator> |
getValueMap() |
static Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operator OR
public static final Operator AND
public static final Operator IN
public static final Operator IS
public static final Operator EQ
public static final Operator GT
public static final Operator GT_EQ
public static final Operator ST
public static final Operator ST_EQ
public static final Operator NOT_EQ
public static final Operator NOT
public static Operator[] values()
for (Operator c : Operator.values()) System.out.println(c);
public static 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 nullpublic String getValue()
public String getEncodedValue()
public int getPrecedence()
Copyright © 2020 SAP. All Rights Reserved.