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