Class WeakMapCache<K,V>
- All Implemented Interfaces:
ICache<K,V>
public class WeakMapCache<K,V> extends java.lang.Object implements ICache<K,V>
HashMap with WeakReferences.- Author:
- ralph
-
Constructor Summary
Constructors Constructor Description WeakMapCache()Constructor. -
Method Summary
Modifier and Type Method Description voidclear()Removes all of the mappings from this map (optional operation).protected voidclearMap()Clears the map by working on the reference queue.booleancontainsKey(java.lang.Object key)Returnstrueif this map contains a mapping for the specified key.booleancontainsValue(java.lang.Object value)Returnstrueif this map maps one or more keys to the specified value.Vget(java.lang.Object key)Returns the value to which the specified key is mapped, ornullif this map contains no mapping for the key.booleanisEmpty()Returnstrueif this map contains no key-value mappings.java.util.Set<K>keySet()Returns aSetview of the keys contained in this map.Vput(K key, V value)Associates the specified value with the specified key in this map (optional operation).Vremove(java.lang.Object key)Removes the mapping for a key from this map if it is present (optional operation).intsize()Returns the number of key-value mappings in this map.java.util.Collection<V>values()Returns aCollectionview of the values contained in this map.
-
Constructor Details
-
WeakMapCache
public WeakMapCache()Constructor.
-
-
Method Details
-
size
public int size()Returns the number of key-value mappings in this map. If the map contains more thanInteger.MAX_VALUEelements, returnsInteger.MAX_VALUE. -
isEmpty
public boolean isEmpty()Returnstrueif this map contains no key-value mappings. -
containsKey
public boolean containsKey(java.lang.Object key)Returnstrueif this map contains a mapping for the specified key. More formally, returnstrueif and only if this map contains a mapping for a keyksuch that(key==null ? k==null : key.equals(k)). (There can be at most one such mapping.)- Specified by:
containsKeyin interfaceICache<K,V>- Parameters:
key- key whose presence in this map is to be tested- Returns:
trueif this map contains a mapping for the specified key
-
containsValue
public boolean containsValue(java.lang.Object value)Returnstrueif this map maps one or more keys to the specified value. More formally, returnstrueif and only if this map contains at least one mapping to a valuevsuch that(value==null ? v==null : value.equals(v)). This operation will probably require time linear in the map size for most implementations of theMapinterface.- Specified by:
containsValuein interfaceICache<K,V>- Parameters:
value- value whose presence in this map is to be tested- Returns:
trueif this map maps one or more keys to the specified value
-
get
Returns the value to which the specified key is mapped, ornullif this map contains no mapping for the key.More formally, if this map contains a mapping from a key
kto a valuevsuch that(key==null ? k==null : key.equals(k)), then this method returnsv; otherwise it returnsnull. (There can be at most one such mapping.)If this map permits null values, then a return value of
nulldoes not necessarily indicate that the map contains no mapping for the key; it's also possible that the map explicitly maps the key tonull. ThecontainsKeyoperation may be used to distinguish these two cases. -
clearMap
protected void clearMap()Clears the map by working on the reference queue. -
put
Associates the specified value with the specified key in this map (optional operation). If the map previously contained a mapping for the key, the old value is replaced by the specified value. (A mapmis said to contain a mapping for a keykif and only ifm.containsKey(k)would returntrue.)- Specified by:
putin interfaceICache<K,V>- Parameters:
key- key with which the specified value is to be associatedvalue- value to be associated with the specified key- Returns:
- the previous value associated with
key, ornullif there was no mapping forkey. (Anullreturn can also indicate that the map previously associatednullwithkey, if the implementation supportsnullvalues.)
-
remove
Removes the mapping for a key from this map if it is present (optional operation). More formally, if this map contains a mapping from keykto valuevsuch that(key==null ? k==null : key.equals(k)), that mapping is removed. (The map can contain at most one such mapping.)Returns the value to which this map previously associated the key, or
nullif the map contained no mapping for the key.If this map permits null values, then a return value of
nulldoes not necessarily indicate that the map contained no mapping for the key; it's also possible that the map explicitly mapped the key tonull.The map will not contain a mapping for the specified key once the call returns.
-
clear
public void clear()Removes all of the mappings from this map (optional operation). The map will be empty after this call returns. -
keySet
Returns aSetview of the keys contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa. If the map is modified while an iteration over the set is in progress (except through the iterator's ownremoveoperation), the results of the iteration are undefined. The set supports element removal, which removes the corresponding mapping from the map, via theIterator.remove,Set.remove,removeAll,retainAll, andclearoperations. It does not support theaddoraddAlloperations. -
values
Returns aCollectionview of the values contained in this map. The collection is backed by the map, so changes to the map are reflected in the collection, and vice-versa. If the map is modified while an iteration over the collection is in progress (except through the iterator's ownremoveoperation), the results of the iteration are undefined. The collection supports element removal, which removes the corresponding mapping from the map, via theIterator.remove,Collection.remove,removeAll,retainAllandclearoperations. It does not support theaddoraddAlloperations.
-