public static enum DistributedStoreManager.Deployment extends Enum<DistributedStoreManager.Deployment>
| Enum Constant and Description |
|---|
EMBEDDED
Embedded with storage backend and communicates inside the JVM
|
LOCAL
Connects to storage backend over localhost or some other connection with very low latency
|
REMOTE
Connects to storage backend over the network or some other connection with significant latency
|
| Modifier and Type | Method and Description |
|---|---|
static DistributedStoreManager.Deployment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DistributedStoreManager.Deployment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DistributedStoreManager.Deployment REMOTE
public static final DistributedStoreManager.Deployment LOCAL
public static final DistributedStoreManager.Deployment EMBEDDED
public static DistributedStoreManager.Deployment[] values()
for (DistributedStoreManager.Deployment c : DistributedStoreManager.Deployment.values()) System.out.println(c);
public static DistributedStoreManager.Deployment 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 © 2012–2015. All rights reserved.