public enum Ddb2Operations extends Enum<Ddb2Operations>
| Enum Constant and Description |
|---|
BatchGetItems |
DeleteItem |
DeleteTable |
DescribeTable |
GetItem |
PutItem |
Query |
Scan |
UpdateItem |
UpdateTable |
| Modifier and Type | Method and Description |
|---|---|
static Ddb2Operations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Ddb2Operations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Ddb2Operations BatchGetItems
public static final Ddb2Operations DeleteItem
public static final Ddb2Operations DeleteTable
public static final Ddb2Operations DescribeTable
public static final Ddb2Operations GetItem
public static final Ddb2Operations PutItem
public static final Ddb2Operations Query
public static final Ddb2Operations Scan
public static final Ddb2Operations UpdateItem
public static final Ddb2Operations UpdateTable
public static Ddb2Operations[] values()
for (Ddb2Operations c : Ddb2Operations.values()) System.out.println(c);
public static Ddb2Operations 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 nullApache Camel