public static enum Region.EvictionAction extends Enum<Region.EvictionAction>
Enum Constant and Description |
---|
LOCAL_DESTROY |
OVERFLOW_TO_DISK |
Modifier and Type | Method and Description |
---|---|
static Region.EvictionAction |
valueOf(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(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 null