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>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LocalCachedMapOptions.EvictionPolicy
valueOf(String name)
Returns 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 Detail
-
NONE
public static final LocalCachedMapOptions.EvictionPolicy NONE
Local cache without eviction.
-
LRU
public static final LocalCachedMapOptions.EvictionPolicy LRU
Least Recently Used local cache.
-
LFU
public static final LocalCachedMapOptions.EvictionPolicy LFU
Least Frequently Used local cache.
-
SOFT
public static final LocalCachedMapOptions.EvictionPolicy SOFT
Local cache with Soft Reference used for values. All references will be collected by GC
-
WEAK
public static final LocalCachedMapOptions.EvictionPolicy WEAK
Local cache with Weak Reference used for values. All references will be collected by GC
-
-
Method Detail
-
values
public static LocalCachedMapOptions.EvictionPolicy[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LocalCachedMapOptions.EvictionPolicy c : LocalCachedMapOptions.EvictionPolicy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LocalCachedMapOptions.EvictionPolicy valueOf(String name)
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
-
-