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