public enum BackendDataModel extends java.lang.Enum<BackendDataModel>
| Modifier and Type | Method and Description |
|---|---|
abstract AwsStore |
createStoreBackend(DynamoDBStoreManager manager,
java.lang.String prefix,
java.lang.String name) |
static BackendDataModel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BackendDataModel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BackendDataModel SINGLE
public static final BackendDataModel MULTI
public static BackendDataModel[] values()
for (BackendDataModel c : BackendDataModel.values()) System.out.println(c);
public static BackendDataModel valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic abstract AwsStore createStoreBackend(DynamoDBStoreManager manager, java.lang.String prefix, java.lang.String name)