public enum DynamoDBAutoGenerateStrategy extends Enum<DynamoDBAutoGenerateStrategy>
DynamoDBAutoGeneratedTimestamp
Enum Constant and Description |
---|
ALWAYS
Instructs to always generate both on create and update.
|
CREATE
Instructs to generate on create only.
|
Modifier and Type | Method and Description |
---|---|
static DynamoDBAutoGenerateStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DynamoDBAutoGenerateStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DynamoDBAutoGenerateStrategy ALWAYS
public static final DynamoDBAutoGenerateStrategy CREATE
public static DynamoDBAutoGenerateStrategy[] values()
for (DynamoDBAutoGenerateStrategy c : DynamoDBAutoGenerateStrategy.values()) System.out.println(c);
public static DynamoDBAutoGenerateStrategy 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 nullCopyright © 2020. All rights reserved.