类 LRUCache<K,V>
- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- java.util.HashMap<K,V>
-
- java.util.LinkedHashMap<K,V>
-
- com.alibaba.dubbo.common.utils.LRUCache<K,V>
-
- 所有已实现的接口:
Serializable
,Cloneable
,Map<K,V>
public class LRUCache<K,V> extends LinkedHashMap<K,V>
- 另请参阅:
- 序列化表格
-
-
嵌套类概要
-
从类继承的嵌套类/接口 java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object,V extends Object>
-
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 void
clear()
boolean
containsKey(Object key)
V
get(Object key)
int
getMaxCapacity()
V
put(K key, V value)
V
remove(Object key)
void
setMaxCapacity(int maxCapacity)
int
size()
-
从类继承的方法 java.util.LinkedHashMap
containsValue, entrySet, forEach, getOrDefault, keySet, replaceAll, values
-
从类继承的方法 java.util.HashMap
clone, compute, computeIfAbsent, computeIfPresent, isEmpty, merge, putAll, putIfAbsent, remove, replace, replace
-
从类继承的方法 java.util.AbstractMap
equals, hashCode, toString
-
从接口继承的方法 java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, hashCode, isEmpty, merge, putAll, putIfAbsent, remove, replace, replace
-
-
-
-
方法详细资料
-
containsKey
public boolean containsKey(Object key)
- 指定者:
containsKey
在接口中Map<K,V>
- 覆盖:
containsKey
在类中HashMap<K,V>
-
getMaxCapacity
public int getMaxCapacity()
-
setMaxCapacity
public void setMaxCapacity(int maxCapacity)
-
-