Enum OperationName
- java.lang.Object
-
- java.lang.Enum<OperationName>
-
- software.amazon.awssdk.enhanced.dynamodb.internal.operations.OperationName
-
- All Implemented Interfaces:
Serializable
,Comparable<OperationName>
public enum OperationName extends Enum<OperationName>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BATCH_GET_ITEM
BATCH_WRITE_ITEM
CREATE_TABLE
DELETE_ITEM
DELETE_TABLE
DESCRIBE_TABLE
GET_ITEM
NONE
PUT_ITEM
QUERY
SCAN
TRANSACT_GET_ITEMS
TRANSACT_WRITE_ITEMS
UPDATE_ITEM
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
label()
static OperationName
valueOf(String name)
Returns the enum constant of this type with the specified name.static OperationName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final OperationName NONE
-
BATCH_GET_ITEM
public static final OperationName BATCH_GET_ITEM
-
BATCH_WRITE_ITEM
public static final OperationName BATCH_WRITE_ITEM
-
CREATE_TABLE
public static final OperationName CREATE_TABLE
-
DELETE_ITEM
public static final OperationName DELETE_ITEM
-
DELETE_TABLE
public static final OperationName DELETE_TABLE
-
DESCRIBE_TABLE
public static final OperationName DESCRIBE_TABLE
-
GET_ITEM
public static final OperationName GET_ITEM
-
QUERY
public static final OperationName QUERY
-
PUT_ITEM
public static final OperationName PUT_ITEM
-
SCAN
public static final OperationName SCAN
-
TRANSACT_GET_ITEMS
public static final OperationName TRANSACT_GET_ITEMS
-
TRANSACT_WRITE_ITEMS
public static final OperationName TRANSACT_WRITE_ITEMS
-
UPDATE_ITEM
public static final OperationName UPDATE_ITEM
-
-
Method Detail
-
values
public static OperationName[] 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 (OperationName c : OperationName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationName 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
-
label
public String label()
-
-