public static enum StoreConfiguration.StoreMode extends Enum<StoreConfiguration.StoreMode>
| Enum Constant and Description |
|---|
UPDATE_EXISTING |
USE_EXISTING |
| Modifier and Type | Method and Description |
|---|---|
static StoreConfiguration.StoreMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StoreConfiguration.StoreMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StoreConfiguration.StoreMode UPDATE_EXISTING
public static final StoreConfiguration.StoreMode USE_EXISTING
public static StoreConfiguration.StoreMode[] values()
for (StoreConfiguration.StoreMode c : StoreConfiguration.StoreMode.values()) System.out.println(c);
public static StoreConfiguration.StoreMode 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 © 2014. All Rights Reserved.