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