public enum DualCacheRamMode extends java.lang.Enum<DualCacheRamMode>
| Enum Constant and Description |
|---|
DISABLE
The RAM layer is not used.
|
ENABLE_WITH_REFERENCE
Means that only references to objects will be stored in the RAM layer.
|
ENABLE_WITH_SPECIFIC_SERIALIZER
Means that object will be serialized with a specific serializer in RAM.
|
| Modifier and Type | Method and Description |
|---|---|
static DualCacheRamMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DualCacheRamMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DualCacheRamMode ENABLE_WITH_SPECIFIC_SERIALIZER
public static final DualCacheRamMode ENABLE_WITH_REFERENCE
public static final DualCacheRamMode DISABLE
public static DualCacheRamMode[] values()
for (DualCacheRamMode c : DualCacheRamMode.values()) System.out.println(c);
public static DualCacheRamMode 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