Enum OperatorPropertiesKeys
- java.lang.Object
-
- java.lang.Enum<OperatorPropertiesKeys>
-
- software.amazon.awssdk.services.appflow.model.OperatorPropertiesKeys
-
- All Implemented Interfaces:
Serializable
,Comparable<OperatorPropertiesKeys>
@Generated("software.amazon.awssdk:codegen") public enum OperatorPropertiesKeys extends Enum<OperatorPropertiesKeys>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperatorPropertiesKeys
fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<OperatorPropertiesKeys>
knownValues()
String
toString()
static OperatorPropertiesKeys
valueOf(String name)
Returns the enum constant of this type with the specified name.static OperatorPropertiesKeys[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VALUE
public static final OperatorPropertiesKeys VALUE
-
VALUES
public static final OperatorPropertiesKeys VALUES
-
DATA_TYPE
public static final OperatorPropertiesKeys DATA_TYPE
-
UPPER_BOUND
public static final OperatorPropertiesKeys UPPER_BOUND
-
LOWER_BOUND
public static final OperatorPropertiesKeys LOWER_BOUND
-
SOURCE_DATA_TYPE
public static final OperatorPropertiesKeys SOURCE_DATA_TYPE
-
DESTINATION_DATA_TYPE
public static final OperatorPropertiesKeys DESTINATION_DATA_TYPE
-
VALIDATION_ACTION
public static final OperatorPropertiesKeys VALIDATION_ACTION
-
MASK_VALUE
public static final OperatorPropertiesKeys MASK_VALUE
-
MASK_LENGTH
public static final OperatorPropertiesKeys MASK_LENGTH
-
TRUNCATE_LENGTH
public static final OperatorPropertiesKeys TRUNCATE_LENGTH
-
MATH_OPERATION_FIELDS_ORDER
public static final OperatorPropertiesKeys MATH_OPERATION_FIELDS_ORDER
-
CONCAT_FORMAT
public static final OperatorPropertiesKeys CONCAT_FORMAT
-
SUBFIELD_CATEGORY_MAP
public static final OperatorPropertiesKeys SUBFIELD_CATEGORY_MAP
-
EXCLUDE_SOURCE_FIELDS_LIST
public static final OperatorPropertiesKeys EXCLUDE_SOURCE_FIELDS_LIST
-
INCLUDE_NEW_FIELDS
public static final OperatorPropertiesKeys INCLUDE_NEW_FIELDS
-
ORDERED_PARTITION_KEYS_LIST
public static final OperatorPropertiesKeys ORDERED_PARTITION_KEYS_LIST
-
UNKNOWN_TO_SDK_VERSION
public static final OperatorPropertiesKeys UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static OperatorPropertiesKeys[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OperatorPropertiesKeys c : OperatorPropertiesKeys.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperatorPropertiesKeys valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<OperatorPropertiesKeys>
-
fromValue
public static OperatorPropertiesKeys fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value
- real value- Returns:
- OperatorPropertiesKeys corresponding to the value
-
knownValues
public static Set<OperatorPropertiesKeys> knownValues()
Use this in place ofvalues()
to return aSet
of all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION
.- Returns:
- a
Set
of knownOperatorPropertiesKeys
s
-
-