Package org.infinispan.eviction
Enum Class EvictionStrategy
- All Implemented Interfaces:
Serializable
,Comparable<EvictionStrategy>
,Constable
Supported eviction strategies
- Since:
- 4.0
- Author:
- Manik Surtani
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionStrategy where the cache will block new entries from being written if they would exceed the configured sizeStrategy where the cache does nothing but the user is assumed to manually invoke evict methodEviction Strategy where nothing is done by the cache and the user is probably not going to use eviction manuallyStrategy where the cache will remove entries to make room for new ones while staying under the configured size -
Method Summary
Modifier and TypeMethodDescriptionboolean
Whether or not the cache will do something due to the strategyboolean
The cache will throw exceptions to prevent memory growthboolean
The cache will remove other entries to make room to limit memory growthstatic EvictionStrategy
Returns the enum constant of this class with the specified name.static EvictionStrategy[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
Eviction Strategy where nothing is done by the cache and the user is probably not going to use eviction manually -
MANUAL
Strategy where the cache does nothing but the user is assumed to manually invoke evict method -
REMOVE
Strategy where the cache will remove entries to make room for new ones while staying under the configured size -
EXCEPTION
Strategy where the cache will block new entries from being written if they would exceed the configured size
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
isEnabled
public boolean isEnabled()Whether or not the cache will do something due to the strategy- Returns:
-
isExceptionBased
public boolean isExceptionBased()The cache will throw exceptions to prevent memory growth- Returns:
-
isRemovalBased
public boolean isRemovalBased()The cache will remove other entries to make room to limit memory growth- Returns:
-