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