Class LRUMap<A,B>
java.lang.Object
java.util.AbstractMap<A,B>
java.util.HashMap<A,B>
java.util.LinkedHashMap<A,B>
net.thevpc.common.collections.LRUMap<A,B>
- All Implemented Interfaces:
Serializable, Cloneable, Map<A,B>, SequencedMap<A, B>
-
Nested Class Summary
Nested classes/interfaces inherited from class AbstractMap
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K, V> -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected booleanremoveEldestEntry(Map.Entry<A, B> eldest) Returns true if thisLruCachehas more entries than the maximum specified when it was created.voidresize(int maxEntries) Methods inherited from class LinkedHashMap
clear, containsValue, entrySet, forEach, get, getOrDefault, keySet, newLinkedHashMap, putFirst, putLast, replaceAll, reversed, sequencedEntrySet, sequencedKeySet, sequencedValues, valuesMethods inherited from class HashMap
clone, compute, computeIfAbsent, computeIfPresent, containsKey, isEmpty, merge, newHashMap, put, putAll, putIfAbsent, remove, remove, replace, replace, sizeMethods inherited from class AbstractMap
equals, hashCode, toStringMethods inherited from interface Map
compute, computeIfAbsent, computeIfPresent, containsKey, equals, hashCode, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, sizeMethods inherited from interface SequencedMap
firstEntry, lastEntry, pollFirstEntry, pollLastEntry
-
Constructor Details
-
LRUMap
public LRUMap(int maxEntries)
-
-
Method Details
-
removeEldestEntry
Returns true if thisLruCachehas more entries than the maximum specified when it was created.This method does not modify the underlying
Map; it relies on the implementation ofLinkedHashMapto do that, but that behavior is documented in the JavaDoc forLinkedHashMap.- Overrides:
removeEldestEntryin classLinkedHashMap<A,B> - Parameters:
eldest- theEntryin question; this implementation doesn't care what it is, since the implementation is only dependent on the size of the cache- Returns:
- true if the oldest
- See Also:
-
resize
public void resize(int maxEntries)
-