public static enum ExpressionOperatorTypes.FUNCTION extends Enum<ExpressionOperatorTypes.FUNCTION>
| Enum Constant and Description |
|---|
CONCAT |
CONTAINS |
ENDSWITH |
INDEXOF |
LENGTH |
STARTSWITH |
SUBSTRING |
SUBSTRINGOF |
TOLOWER |
TOUPPER |
TRIM |
| Modifier and Type | Method and Description |
|---|---|
static ExpressionOperatorTypes.FUNCTION |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExpressionOperatorTypes.FUNCTION[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpressionOperatorTypes.FUNCTION CONCAT
public static final ExpressionOperatorTypes.FUNCTION CONTAINS
public static final ExpressionOperatorTypes.FUNCTION ENDSWITH
public static final ExpressionOperatorTypes.FUNCTION INDEXOF
public static final ExpressionOperatorTypes.FUNCTION LENGTH
public static final ExpressionOperatorTypes.FUNCTION STARTSWITH
public static final ExpressionOperatorTypes.FUNCTION SUBSTRING
public static final ExpressionOperatorTypes.FUNCTION TOLOWER
public static final ExpressionOperatorTypes.FUNCTION TOUPPER
public static final ExpressionOperatorTypes.FUNCTION TRIM
public static final ExpressionOperatorTypes.FUNCTION SUBSTRINGOF
public static ExpressionOperatorTypes.FUNCTION[] values()
for (ExpressionOperatorTypes.FUNCTION c : ExpressionOperatorTypes.FUNCTION.values()) System.out.println(c);
public static ExpressionOperatorTypes.FUNCTION 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.