public static enum BalancedProcessorConfiguration.DataStateStorageHandlerType extends java.lang.Enum<BalancedProcessorConfiguration.DataStateStorageHandlerType>
Enum Constant and Description |
---|
CAS |
JAVA_NOLOCK |
MEMORY_OPTIMIZED |
MEMORY_OPTIMIZED_NOLOCK |
PRIMITIVE_NOLOCK |
RWLOCK |
Modifier and Type | Method and Description |
---|---|
static BalancedProcessorConfiguration.DataStateStorageHandlerType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BalancedProcessorConfiguration.DataStateStorageHandlerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BalancedProcessorConfiguration.DataStateStorageHandlerType CAS
public static final BalancedProcessorConfiguration.DataStateStorageHandlerType RWLOCK
public static final BalancedProcessorConfiguration.DataStateStorageHandlerType MEMORY_OPTIMIZED
public static final BalancedProcessorConfiguration.DataStateStorageHandlerType PRIMITIVE_NOLOCK
public static final BalancedProcessorConfiguration.DataStateStorageHandlerType MEMORY_OPTIMIZED_NOLOCK
public static final BalancedProcessorConfiguration.DataStateStorageHandlerType JAVA_NOLOCK
public static BalancedProcessorConfiguration.DataStateStorageHandlerType[] values()
for (BalancedProcessorConfiguration.DataStateStorageHandlerType c : BalancedProcessorConfiguration.DataStateStorageHandlerType.values()) System.out.println(c);
public static BalancedProcessorConfiguration.DataStateStorageHandlerType 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 null