|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<CacheEvictionConfig.CacheMaxSizePolicy> com.hazelcast.config.CacheEvictionConfig.CacheMaxSizePolicy
public static enum CacheEvictionConfig.CacheMaxSizePolicy
Maximum Size Policy
Enum Constant Summary | |
---|---|
ENTRY_COUNT
Decide maximum entry count according to node |
|
FREE_NATIVE_MEMORY_PERCENTAGE
Decide minimum free native memory percentage to trigger cleanup |
|
FREE_NATIVE_MEMORY_SIZE
Decide minimum free native memory size to trigger cleanup |
|
USED_NATIVE_MEMORY_PERCENTAGE
Decide maximum size with use native memory percentage |
|
USED_NATIVE_MEMORY_SIZE
Decide maximum size with use native memory size |
Method Summary | |
---|---|
static CacheEvictionConfig.CacheMaxSizePolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static CacheEvictionConfig.CacheMaxSizePolicy[] |
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 |
---|
public static final CacheEvictionConfig.CacheMaxSizePolicy ENTRY_COUNT
public static final CacheEvictionConfig.CacheMaxSizePolicy USED_NATIVE_MEMORY_SIZE
public static final CacheEvictionConfig.CacheMaxSizePolicy USED_NATIVE_MEMORY_PERCENTAGE
public static final CacheEvictionConfig.CacheMaxSizePolicy FREE_NATIVE_MEMORY_SIZE
public static final CacheEvictionConfig.CacheMaxSizePolicy FREE_NATIVE_MEMORY_PERCENTAGE
Method Detail |
---|
public static CacheEvictionConfig.CacheMaxSizePolicy[] values()
for (CacheEvictionConfig.CacheMaxSizePolicy c : CacheEvictionConfig.CacheMaxSizePolicy.values()) System.out.println(c);
public static CacheEvictionConfig.CacheMaxSizePolicy valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |