public static enum CacheContainerAdmin.AdminFlag extends java.lang.Enum<CacheContainerAdmin.AdminFlag>
| Enum Constant and Description |
|---|
PERMANENT
If the operation affects configuration, make it permanent, which means it will survive restarts.
|
| Modifier and Type | Method and Description |
|---|---|
static java.util.EnumSet<CacheContainerAdmin.AdminFlag> |
fromString(java.lang.String s) |
static CacheContainerAdmin.AdminFlag |
valueOf(int index) |
static CacheContainerAdmin.AdminFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CacheContainerAdmin.AdminFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CacheContainerAdmin.AdminFlag PERMANENT
public static CacheContainerAdmin.AdminFlag[] values()
for (CacheContainerAdmin.AdminFlag c : CacheContainerAdmin.AdminFlag.values()) System.out.println(c);
public static CacheContainerAdmin.AdminFlag 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 static CacheContainerAdmin.AdminFlag valueOf(int index)
public static java.util.EnumSet<CacheContainerAdmin.AdminFlag> fromString(java.lang.String s)