K
- V
- public class LRUCache<K,V> extends LinkedHashMap<K,V>
Implementation of a Least Recently Used cache. Currently used by the ReflectionEngine to cache resolution of Java members.
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V>
Modifier and Type | Field and Description |
---|---|
static int |
DEFAULT_CACHE_SIZE |
Modifier and Type | Method and Description |
---|---|
protected boolean |
removeEldestEntry(Map.Entry<K,V> eldest) |
clear, containsValue, get
clone, containsKey, entrySet, isEmpty, keySet, put, putAll, remove, size, values
equals, hashCode, toString
public static final int DEFAULT_CACHE_SIZE
protected boolean removeEldestEntry(Map.Entry<K,V> eldest)
removeEldestEntry
in class LinkedHashMap<K,V>