Enum IcebergUpdateAction
- java.lang.Object
-
- java.lang.Enum<IcebergUpdateAction>
-
- software.amazon.awssdk.services.glue.model.IcebergUpdateAction
-
- All Implemented Interfaces:
Serializable,Comparable<IcebergUpdateAction>
@Generated("software.amazon.awssdk:codegen") public enum IcebergUpdateAction extends Enum<IcebergUpdateAction>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_ENCRYPTION_KEYADD_SCHEMAADD_SORT_ORDERADD_SPECREMOVE_ENCRYPTION_KEYREMOVE_PROPERTIESSET_CURRENT_SCHEMASET_DEFAULT_SORT_ORDERSET_DEFAULT_SPECSET_LOCATIONSET_PROPERTIESUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IcebergUpdateActionfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<IcebergUpdateAction>knownValues()StringtoString()static IcebergUpdateActionvalueOf(String name)Returns the enum constant of this type with the specified name.static IcebergUpdateAction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADD_SCHEMA
public static final IcebergUpdateAction ADD_SCHEMA
-
SET_CURRENT_SCHEMA
public static final IcebergUpdateAction SET_CURRENT_SCHEMA
-
ADD_SPEC
public static final IcebergUpdateAction ADD_SPEC
-
SET_DEFAULT_SPEC
public static final IcebergUpdateAction SET_DEFAULT_SPEC
-
ADD_SORT_ORDER
public static final IcebergUpdateAction ADD_SORT_ORDER
-
SET_DEFAULT_SORT_ORDER
public static final IcebergUpdateAction SET_DEFAULT_SORT_ORDER
-
SET_LOCATION
public static final IcebergUpdateAction SET_LOCATION
-
SET_PROPERTIES
public static final IcebergUpdateAction SET_PROPERTIES
-
REMOVE_PROPERTIES
public static final IcebergUpdateAction REMOVE_PROPERTIES
-
ADD_ENCRYPTION_KEY
public static final IcebergUpdateAction ADD_ENCRYPTION_KEY
-
REMOVE_ENCRYPTION_KEY
public static final IcebergUpdateAction REMOVE_ENCRYPTION_KEY
-
UNKNOWN_TO_SDK_VERSION
public static final IcebergUpdateAction UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static IcebergUpdateAction[] 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 (IcebergUpdateAction c : IcebergUpdateAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IcebergUpdateAction 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:
toStringin classEnum<IcebergUpdateAction>
-
fromValue
public static IcebergUpdateAction 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:
- IcebergUpdateAction corresponding to the value
-
knownValues
public static Set<IcebergUpdateAction> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownIcebergUpdateActions
-
-