Package org.redisson.api
Enum LocalCachedMapOptions.EvictionPolicy
java.lang.Object
java.lang.Enum<LocalCachedMapOptions.EvictionPolicy>
org.redisson.api.LocalCachedMapOptions.EvictionPolicy
- All Implemented Interfaces:
Serializable
,Comparable<LocalCachedMapOptions.EvictionPolicy>
- Enclosing class:
LocalCachedMapOptions<K,
V>
public static enum LocalCachedMapOptions.EvictionPolicy
extends Enum<LocalCachedMapOptions.EvictionPolicy>
-
Enum Constant Summary
Enum ConstantDescriptionLeast Frequently Used local cache eviction policy.Least Recently Used local cache eviction policy.Local cache without eviction.Local cache eviction policy with Soft Reference used for values.Local cache eviction policy with Weak Reference used for values. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static LocalCachedMapOptions.EvictionPolicy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NONE
Local cache without eviction. -
LRU
Least Recently Used local cache eviction policy. -
LFU
Least Frequently Used local cache eviction policy. -
SOFT
Local cache eviction policy with Soft Reference used for values. All references will be collected by GC -
WEAK
Local cache eviction policy with Weak Reference used for values. All references will be collected by GC
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-