public static enum MaxSizeConfig.MaxSizePolicy extends Enum<MaxSizeConfig.MaxSizePolicy>
| Enum Constant and Description | 
|---|
FREE_HEAP_PERCENTAGE
Decide minimum free heap percentage to trigger map cleanup 
 | 
FREE_HEAP_SIZE
Decide minimum free heap size to trigger map cleanup 
 | 
PER_NODE
Decide maximum size of map according to node 
 | 
PER_PARTITION
Decide maximum size of map according to partition 
 | 
USED_HEAP_PERCENTAGE
Decide maximum size of map with use heap percentage 
 | 
USED_HEAP_SIZE
Decide maximum size of map with use heap size 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static MaxSizeConfig.MaxSizePolicy | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static MaxSizeConfig.MaxSizePolicy[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final MaxSizeConfig.MaxSizePolicy PER_NODE
public static final MaxSizeConfig.MaxSizePolicy PER_PARTITION
public static final MaxSizeConfig.MaxSizePolicy USED_HEAP_PERCENTAGE
public static final MaxSizeConfig.MaxSizePolicy USED_HEAP_SIZE
public static final MaxSizeConfig.MaxSizePolicy FREE_HEAP_PERCENTAGE
public static final MaxSizeConfig.MaxSizePolicy FREE_HEAP_SIZE
public static MaxSizeConfig.MaxSizePolicy[] values()
for (MaxSizeConfig.MaxSizePolicy c : MaxSizeConfig.MaxSizePolicy.values()) System.out.println(c);
public static MaxSizeConfig.MaxSizePolicy valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2014 Hazelcast, Inc.. All Rights Reserved.