public class LRUCache<K,V>
extends java.util.LinkedHashMap<K,V>
Constructor and Description |
---|
LRUCache(int maxEntries)
creates a new LRU cached with maxEntires slots
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
removeEldestEntry(java.util.Map.Entry<K,V> eldest)
removes the eldest entry, i.e.
|
clear, containsValue, entrySet, forEach, get, getOrDefault, keySet, replaceAll, values
clone, compute, computeIfAbsent, computeIfPresent, containsKey, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, size
Copyright © 2003-2019 The KeY-Project.