public static enum TierObjectStore.Backend extends Enum<TierObjectStore.Backend>
| Enum Constant and Description |
|---|
AzureBlockBlob |
GCS |
Mock |
S3 |
Test |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static TierObjectStore.Backend |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TierObjectStore.Backend[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TierObjectStore.Backend AzureBlockBlob
public static final TierObjectStore.Backend GCS
public static final TierObjectStore.Backend Mock
public static final TierObjectStore.Backend S3
public static final TierObjectStore.Backend Test
public static TierObjectStore.Backend[] values()
for (TierObjectStore.Backend c : TierObjectStore.Backend.values()) System.out.println(c);
public static TierObjectStore.Backend 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 getName()