public class LRUCache<K,V> extends LinkedHashMap<K,V>
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V>| Modifier and Type | Field and Description |
|---|---|
protected int |
cacheSizeMax |
| Constructor and Description |
|---|
LRUCache(int cacheSizeMax) |
| Modifier and Type | Method and Description |
|---|---|
int |
getCacheSizeMax() |
protected boolean |
removeEldestEntry(Map.Entry<K,V> eldest) |
void |
setCacheSizeMax(int cacheSizeMax) |
clear, containsValue, entrySet, forEach, get, getOrDefault, keySet, replaceAll, valuesclone, compute, computeIfAbsent, computeIfPresent, containsKey, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, sizeequals, hashCode, toStringfinalize, getClass, notify, notifyAll, wait, wait, waitcompute, computeIfAbsent, computeIfPresent, containsKey, equals, hashCode, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, sizepublic int getCacheSizeMax()
public void setCacheSizeMax(int cacheSizeMax)
protected boolean removeEldestEntry(Map.Entry<K,V> eldest)
removeEldestEntry in class LinkedHashMap<K,V>Copyright © 2017. All rights reserved.