public enum OperationName extends Enum<OperationName>
Enum Constant and 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 |
Modifier and Type | Method and 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.
|
public static final OperationName NONE
public static final OperationName BATCH_GET_ITEM
public static final OperationName BATCH_WRITE_ITEM
public static final OperationName CREATE_TABLE
public static final OperationName DELETE_ITEM
public static final OperationName DELETE_TABLE
public static final OperationName DESCRIBE_TABLE
public static final OperationName GET_ITEM
public static final OperationName QUERY
public static final OperationName PUT_ITEM
public static final OperationName SCAN
public static final OperationName TRANSACT_GET_ITEMS
public static final OperationName TRANSACT_WRITE_ITEMS
public static final OperationName UPDATE_ITEM
public static OperationName[] values()
for (OperationName c : OperationName.values()) System.out.println(c);
public static OperationName 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 label()
Copyright © 2021. All rights reserved.