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