Module org.apache.wicket.util
Class MostRecentlyUsedMap<K,V>
java.lang.Object
java.util.AbstractMap<K,V>
java.util.HashMap<K,V>
java.util.LinkedHashMap<K,V>
org.apache.wicket.util.collections.MostRecentlyUsedMap<K,V>
- Type Parameters:
K- key typeV- value type
- All Implemented Interfaces:
Serializable,Cloneable,Map<K,V>
Holds a map of most recently used items of a given maximum size. Old entries are expired when the
map exceeds that maximum size.
- Author:
- Jonathan Locke
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object, V extends Object> -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class java.util.LinkedHashMap
clear, containsValue, entrySet, forEach, get, getOrDefault, keySet, replaceAll, valuesMethods inherited from class java.util.HashMap
clone, compute, computeIfAbsent, computeIfPresent, containsKey, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, sizeMethods inherited from class java.util.AbstractMap
equals, hashCode, toStringMethods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, containsKey, equals, hashCode, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, size
-
Field Details
-
removedValue
Value most recently removed from map
-
-
Constructor Details
-
MostRecentlyUsedMap
Constructor- Parameters:
maxEntries- Maximum number of entries allowed in the map
-
-
Method Details
-
getRemovedValue
- Returns:
- Returns the removedValue.
-
removeEldestEntry
- Overrides:
removeEldestEntryin classLinkedHashMap<K,V> - See Also:
-