@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum DatadogConnectorOperator extends Enum<DatadogConnectorOperator>
| Enum Constant and Description |
|---|
ADDITION |
BETWEEN |
DIVISION |
EQUAL_TO |
MASK_ALL |
MASK_FIRST_N |
MASK_LAST_N |
MULTIPLICATION |
NO_OP |
PROJECTION |
SUBTRACTION |
VALIDATE_NON_NEGATIVE |
VALIDATE_NON_NULL |
VALIDATE_NON_ZERO |
VALIDATE_NUMERIC |
| Modifier and Type | Method and Description |
|---|---|
static DatadogConnectorOperator |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static DatadogConnectorOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatadogConnectorOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatadogConnectorOperator PROJECTION
public static final DatadogConnectorOperator BETWEEN
public static final DatadogConnectorOperator EQUAL_TO
public static final DatadogConnectorOperator ADDITION
public static final DatadogConnectorOperator MULTIPLICATION
public static final DatadogConnectorOperator DIVISION
public static final DatadogConnectorOperator SUBTRACTION
public static final DatadogConnectorOperator MASK_ALL
public static final DatadogConnectorOperator MASK_FIRST_N
public static final DatadogConnectorOperator MASK_LAST_N
public static final DatadogConnectorOperator VALIDATE_NON_NULL
public static final DatadogConnectorOperator VALIDATE_NON_ZERO
public static final DatadogConnectorOperator VALIDATE_NON_NEGATIVE
public static final DatadogConnectorOperator VALIDATE_NUMERIC
public static final DatadogConnectorOperator NO_OP
public static DatadogConnectorOperator[] values()
for (DatadogConnectorOperator c : DatadogConnectorOperator.values()) System.out.println(c);
public static DatadogConnectorOperator 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 toString()
toString in class Enum<DatadogConnectorOperator>public static DatadogConnectorOperator fromValue(String value)
value - real valueIllegalArgumentException - If the specified value does not map to one of the known values in this enum.