Liferay 6.2-ce-ga5

com.liferay.portal.kernel.nio.intraband.cache
Enum PortalCacheActionType

java.lang.Object
  extended by java.lang.Enum<PortalCacheActionType>
      extended by com.liferay.portal.kernel.nio.intraband.cache.PortalCacheActionType
All Implemented Interfaces:
Serializable, Comparable<PortalCacheActionType>

public enum PortalCacheActionType
extends Enum<PortalCacheActionType>


Enum Constant Summary
DESTROY
           
GET
           
GET_BULK
           
PUT
           
PUT_TTL
           
RECONFIGURE
           
REMOVE
           
REMOVE_ALL
           
 
Method Summary
static PortalCacheActionType valueOf(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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DESTROY

public static final PortalCacheActionType DESTROY

GET

public static final PortalCacheActionType GET

GET_BULK

public static final PortalCacheActionType GET_BULK

PUT

public static final PortalCacheActionType PUT

PUT_TTL

public static final PortalCacheActionType PUT_TTL

RECONFIGURE

public static final PortalCacheActionType RECONFIGURE

REMOVE

public static final PortalCacheActionType REMOVE

REMOVE_ALL

public static final PortalCacheActionType REMOVE_ALL
Method Detail

values

public static PortalCacheActionType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (PortalCacheActionType c : PortalCacheActionType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static PortalCacheActionType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

Liferay 6.2-ce-ga5