public enum EvictionStrategyType extends Enum<EvictionStrategyType>
EvictionStrategy
Enum Constant and Description |
---|
SAMPLING_BASED_EVICTION
Sampling based eviction strategy type
|
Modifier and Type | Field and Description |
---|---|
static EvictionStrategyType |
DEFAULT_EVICTION_STRATEGY
Default 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
EvictionStrategyType
public 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 © 2016 Hazelcast, Inc.. All Rights Reserved.