Package org.redisson.api.options
Enum ClientSideCachingOptions.EvictionPolicy
java.lang.Object
java.lang.Enum<ClientSideCachingOptions.EvictionPolicy>
org.redisson.api.options.ClientSideCachingOptions.EvictionPolicy
- All Implemented Interfaces:
Serializable,Comparable<ClientSideCachingOptions.EvictionPolicy>
- Enclosing interface:
ClientSideCachingOptions
public static enum ClientSideCachingOptions.EvictionPolicy
extends Enum<ClientSideCachingOptions.EvictionPolicy>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionLeast Frequently Used client cache eviction policy.Least Recently Used client cache eviction policy.Client cache without eviction.Client cache eviction policy with Soft Reference used for values.Client cache eviction policy with Weak Reference used for values. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NONE
Client cache without eviction. -
LRU
Least Recently Used client cache eviction policy. -
LFU
Least Frequently Used client cache eviction policy. -
SOFT
Client cache eviction policy with Soft Reference used for values. All references will be collected by GC -
WEAK
Client 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
-