public static enum EvictionEvent.Type extends Enum<EvictionEvent.Type>
Enum Constant and Description |
---|
ADD_ELEMENT_EVENT |
ADD_NODE_EVENT |
MARK_IN_USE_EVENT |
REMOVE_ELEMENT_EVENT |
REMOVE_NODE_EVENT |
UNMARK_USE_EVENT |
VISIT_NODE_EVENT |
Modifier and Type | Method and Description |
---|---|
static EvictionEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EvictionEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EvictionEvent.Type ADD_NODE_EVENT
public static final EvictionEvent.Type REMOVE_NODE_EVENT
public static final EvictionEvent.Type VISIT_NODE_EVENT
public static final EvictionEvent.Type ADD_ELEMENT_EVENT
public static final EvictionEvent.Type REMOVE_ELEMENT_EVENT
public static final EvictionEvent.Type MARK_IN_USE_EVENT
public static final EvictionEvent.Type UNMARK_USE_EVENT
public static EvictionEvent.Type[] values()
for (EvictionEvent.Type c : EvictionEvent.Type.values()) System.out.println(c);
public static EvictionEvent.Type 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 JBoss, a division of Red Hat. All Rights Reserved.