public enum CacheConfigurationProperty extends java.lang.Enum<CacheConfigurationProperty>
Enum Constant and Description |
---|
ADD_LISTENER
used to register new
CacheEventListener |
REMOVE_LISTENER
used to remove
CacheEventListener |
UPDATE_SIZE
used to update size of ResourcePool in RuntimeConfig
|
Modifier and Type | Method and Description |
---|---|
static CacheConfigurationProperty |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CacheConfigurationProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CacheConfigurationProperty UPDATE_SIZE
public static final CacheConfigurationProperty ADD_LISTENER
CacheEventListener
public static final CacheConfigurationProperty REMOVE_LISTENER
CacheEventListener
public static CacheConfigurationProperty[] values()
for (CacheConfigurationProperty c : CacheConfigurationProperty.values()) System.out.println(c);
public static CacheConfigurationProperty 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