public enum HashIndexPriority extends java.lang.Enum<HashIndexPriority>
NUM_CACHED_ATTRIBUTES
of them are actually hashed in the server.Enum Constant and Description |
---|
Hashable
The item the CacheObjectAttribute refers to will be entered into the in-memory datagrid hashtable if there's room
after attempting to hash all higher priority items.
|
HighPriorityHashable
The item the
CacheObjectAttribute refers to will be entered into the StateServer Hashtable if there's
room. |
NotHashable
The item in the CacheObjectAttribute refers to is never entered into the
StateServer Hashtable.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Retrieves the value for this enum.
|
static HashIndexPriority |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HashIndexPriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HashIndexPriority NotHashable
public static final HashIndexPriority Hashable
public static final HashIndexPriority HighPriorityHashable
CacheObjectAttribute
refers to will be entered into the StateServer Hashtable if there's
room. Items with this priority will take precedence over any items marked Hashable
.public static HashIndexPriority[] values()
for (HashIndexPriority c : HashIndexPriority.values()) System.out.println(c);
public static HashIndexPriority 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 nullpublic int getValue()