public enum EvictionStrategyType extends Enum<EvictionStrategyType>
EvictionStrategy| Enum Constant and Description | 
|---|
| SAMPLING_BASED_EVICTIONSampling based eviction strategy type | 
| Modifier and Type | Field and Description | 
|---|---|
| static EvictionStrategyType | DEFAULT_EVICTION_STRATEGYDefault value of  EvictionStrategyType | 
| Modifier and Type | Method and Description | 
|---|---|
| static EvictionStrategyType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static EvictionStrategyType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final EvictionStrategyType SAMPLING_BASED_EVICTION
public static final EvictionStrategyType DEFAULT_EVICTION_STRATEGY
EvictionStrategyTypepublic static EvictionStrategyType[] values()
for (EvictionStrategyType c : EvictionStrategyType.values()) System.out.println(c);
public static EvictionStrategyType 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 © 2015 Hazelcast, Inc.. All Rights Reserved.