Enum TransformOperation.Type
- java.lang.Object
-
- java.lang.Enum<TransformOperation.Type>
-
- software.amazon.awssdk.services.quicksight.model.TransformOperation.Type
-
- All Implemented Interfaces:
Serializable,Comparable<TransformOperation.Type>
- Enclosing class:
- TransformOperation
public static enum TransformOperation.Type extends Enum<TransformOperation.Type>
- See Also:
TransformOperation.type()
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TransformOperation.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static TransformOperation.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROJECT_OPERATION
public static final TransformOperation.Type PROJECT_OPERATION
-
FILTER_OPERATION
public static final TransformOperation.Type FILTER_OPERATION
-
CREATE_COLUMNS_OPERATION
public static final TransformOperation.Type CREATE_COLUMNS_OPERATION
-
RENAME_COLUMN_OPERATION
public static final TransformOperation.Type RENAME_COLUMN_OPERATION
-
CAST_COLUMN_TYPE_OPERATION
public static final TransformOperation.Type CAST_COLUMN_TYPE_OPERATION
-
TAG_COLUMN_OPERATION
public static final TransformOperation.Type TAG_COLUMN_OPERATION
-
UNTAG_COLUMN_OPERATION
public static final TransformOperation.Type UNTAG_COLUMN_OPERATION
-
OVERRIDE_DATASET_PARAMETER_OPERATION
public static final TransformOperation.Type OVERRIDE_DATASET_PARAMETER_OPERATION
-
UNKNOWN_TO_SDK_VERSION
public static final TransformOperation.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static TransformOperation.Type[] 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 (TransformOperation.Type c : TransformOperation.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TransformOperation.Type 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
-
-