public static enum EntryEvictionConfiguration.Algorithm extends Enum<EntryEvictionConfiguration.Algorithm>
| Enum Constant and Description |
|---|
LRU
Evicts the least recently used entry when thresholds are hit.
|
NONE
Unlimited cache.
|
| Modifier and Type | Method and Description |
|---|---|
static EntryEvictionConfiguration.Algorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntryEvictionConfiguration.Algorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntryEvictionConfiguration.Algorithm NONE
No specific configuration.
public static final EntryEvictionConfiguration.Algorithm LRU
Support maxentries property. See LRUEvictionConfiguration.
public static EntryEvictionConfiguration.Algorithm[] values()
for (EntryEvictionConfiguration.Algorithm c : EntryEvictionConfiguration.Algorithm.values()) System.out.println(c);
public static EntryEvictionConfiguration.Algorithm 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 © 2004–2022 XWiki. All rights reserved.