public class RefValueHashMap<K,V>
extends java.lang.Object
implements java.util.Map<K,V>
WeakValueHashMap
for a hash map with weak referenced values.
The behavior of this hashmap is that it is possible that a value is
null
because of garbage collection although
containsKey(Object)
says that the associated key is defined.
It is able to handle null
keys and null
values.
The default constructors enable auto cleaning, which will automatically remove all dead values each time a dead value is detected, but there are also constructors accepting a boolean autoClean parameter which allow to switch this feature off.
Some invariances usually true for maps hold not here:
containsValue(Object)
may return different results.
containsKey(Object)
.
keySet()
may
no longer be keys when used.
put(Object, Object)
,
putAll(java.util.Map)
and get(Object)
methods, when expecting a null
return
on the latter even if a value was added before.SoftValueHashMap
,
WeakValueHashMap
Constructor and Description |
---|
RefValueHashMap(ReferenceCreator<? extends java.lang.ref.Reference<V>,V> creator)
Constructs an empty SoftValueHashMap with the default initial
capacity (16) and the default load factor (0.75).
|
RefValueHashMap(ReferenceCreator<? extends java.lang.ref.Reference<V>,V> creator,
boolean autoClean)
Constructs an empty SoftValueHashMap with the default initial
capacity (16) and the default load factor (0.75).
|
RefValueHashMap(ReferenceCreator<? extends java.lang.ref.Reference<V>,V> creator,
boolean autoClean,
int initialCapacity)
Constructs an empty SoftValueHashMap with the specified initial
capacity and the default load factor (0.75).
|
RefValueHashMap(ReferenceCreator<? extends java.lang.ref.Reference<V>,V> creator,
boolean autoClean,
int initialCapacity,
float loadFactor)
Constructs an empty HashMap with the specified initial
capacity and load factor.
|
RefValueHashMap(ReferenceCreator<? extends java.lang.ref.Reference<V>,V> creator,
boolean autoClean,
java.util.Map<? extends K,? extends V> m)
Constructs a new HashMap with the same mappings as the
specified Map.
|
RefValueHashMap(ReferenceCreator<? extends java.lang.ref.Reference<V>,V> creator,
int initialCapacity)
Constructs an empty SoftValueHashMap with the specified initial
capacity and the default load factor (0.75).
|
RefValueHashMap(ReferenceCreator<? extends java.lang.ref.Reference<V>,V> creator,
int initialCapacity,
float loadFactor)
Constructs an empty HashMap with the specified initial
capacity and load factor.
|
RefValueHashMap(ReferenceCreator<? extends java.lang.ref.Reference<V>,V> creator,
java.util.Map<? extends K,? extends V> m)
Constructs a new HashMap with the same mappings as the
specified Map.
|
Modifier and Type | Method and Description |
---|---|
void |
clear()
Removes all mappings from this map (optional operation).
|
boolean |
containsKey(java.lang.Object key)
Returns true if this map contains a mapping for the specified
key.
|
boolean |
containsValue(java.lang.Object value)
Returns true if this map maps one or more keys to the
specified value.
|
java.util.Set<java.util.Map.Entry<K,V>> |
entrySet()
Returns a set view of the mappings contained in this map.
|
V |
get(java.lang.Object key)
Returns the value to which this map maps the specified key.
|
boolean |
hasDeadValue(K key)
Return whether the value for a given key was garbage collected.
|
boolean |
isEmpty()
Returns true if this map contains no key-value mappings.
|
java.util.Set<K> |
keySet()
Returns a set view of the keys contained in this map.
|
V |
put(K key,
V value)
Associates the specified value with the specified key in this map
(optional operation).
|
void |
putAll(java.util.Map<? extends K,? extends V> t)
Copies all of the mappings from the specified map to this map
(optional operation).
|
V |
remove(java.lang.Object key)
Removes the mapping for this key from this map if it is present
(optional operation).
|
void |
removeDeadValues()
Remove all entries from this map which have dead values.
|
int |
size()
Returns the number of key-value mappings in this map.
|
java.util.Collection<V> |
values()
Returns a collection view of the values contained in this map.
|
public RefValueHashMap(@NotNull ReferenceCreator<? extends java.lang.ref.Reference<V>,V> creator)
creator
- reference creatorpublic RefValueHashMap(@NotNull ReferenceCreator<? extends java.lang.ref.Reference<V>,V> creator, int initialCapacity)
creator
- reference creatorinitialCapacity
- the initial capacity.java.lang.IllegalArgumentException
- if the initial capacity is negative.public RefValueHashMap(@NotNull ReferenceCreator<? extends java.lang.ref.Reference<V>,V> creator, int initialCapacity, float loadFactor)
creator
- reference creatorinitialCapacity
- The initial capacity.loadFactor
- The load factor.java.lang.IllegalArgumentException
- if the initial capacity is negative
or the load factor is nonpositive.public RefValueHashMap(@NotNull ReferenceCreator<? extends java.lang.ref.Reference<V>,V> creator, @NotNull java.util.Map<? extends K,? extends V> m)
creator
- reference creatorm
- the map whose mappings are to be placed in this map.java.lang.NullPointerException
- if the specified map is null.public RefValueHashMap(@NotNull ReferenceCreator<? extends java.lang.ref.Reference<V>,V> creator, boolean autoClean)
creator
- reference creatorautoClean
- if true
call removeDeadValues()
when finding a dead valuepublic RefValueHashMap(@NotNull ReferenceCreator<? extends java.lang.ref.Reference<V>,V> creator, boolean autoClean, int initialCapacity)
creator
- reference creatorautoClean
- if true
call removeDeadValues()
when finding a dead valueinitialCapacity
- the initial capacity.java.lang.IllegalArgumentException
- if the initial capacity is negative.public RefValueHashMap(@NotNull ReferenceCreator<? extends java.lang.ref.Reference<V>,V> creator, boolean autoClean, int initialCapacity, float loadFactor)
creator
- reference creatorautoClean
- if true
call removeDeadValues()
when finding a dead valueinitialCapacity
- The initial capacity.loadFactor
- The load factor.java.lang.IllegalArgumentException
- if the initial capacity is negative
or the load factor is nonpositive.public RefValueHashMap(@NotNull ReferenceCreator<? extends java.lang.ref.Reference<V>,V> creator, boolean autoClean, @NotNull java.util.Map<? extends K,? extends V> m)
creator
- reference creatorautoClean
- if true
call removeDeadValues()
when finding a dead valuem
- the map whose mappings are to be placed in this map.java.lang.NullPointerException
- if the specified map is null.public int size()
public boolean isEmpty()
public boolean containsKey(java.lang.Object key)
containsKey
in interface java.util.Map<K,V>
key
- key whose presence in this map is to be tested.java.lang.ClassCastException
- if the key is of an inappropriate type for
this map (optional).java.lang.NullPointerException
- if the key is null and this map
does not permit null keys (optional).public boolean containsValue(java.lang.Object value)
containsValue
in interface java.util.Map<K,V>
value
- value whose presence in this map is to be tested.java.lang.ClassCastException
- if the value is of an inappropriate type for
this map (optional).java.lang.NullPointerException
- if the value is null and this map
does not permit null values (optional).public V get(java.lang.Object key)
More formally, if this map contains a mapping from a key k to a value v such that (key==null ? k==null : key.equals(k)), then this method returns v; otherwise it returns null. (There can be at most one such mapping.)
get
in interface java.util.Map<K,V>
key
- key whose associated value is to be returned.java.lang.ClassCastException
- if the key is of an inappropriate type for
this map (optional).java.lang.NullPointerException
- if the key is null and this map
does not permit null keys (optional).containsKey(Object)
public V put(K key, V value)
m.containsKey(k)
would return
true.))put
in interface java.util.Map<K,V>
key
- key with which the specified value is to be associated.value
- value to be associated with the specified key.java.lang.UnsupportedOperationException
- if the put operation is
not supported by this map.java.lang.ClassCastException
- if the class of the specified key or value
prevents it from being stored in this map.java.lang.IllegalArgumentException
- if some aspect of this key or value
prevents it from being stored in this map.java.lang.NullPointerException
- if this map does not permit null
keys or values, and the specified key or value is
null.public V remove(java.lang.Object key)
(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 the map previously associated the key, or null if the map contained no mapping for this key. (A null return can also indicate that the map previously associated null with the specified key if the implementation supports null values.) The map will not contain a mapping for the specified key once the call returns.
remove
in interface java.util.Map<K,V>
key
- key whose mapping is to be removed from the map.java.lang.ClassCastException
- if the key is of an inappropriate type for
this map (optional).java.lang.NullPointerException
- if the key is null and this map
does not permit null keys (optional).java.lang.UnsupportedOperationException
- if the remove method is
not supported by this map.public void putAll(@NotNull java.util.Map<? extends K,? extends V> t)
put(k, v)
on this map once
for each mapping from key k to value v in the
specified map. The behavior of this operation is unspecified if the
specified map is modified while the operation is in progress.putAll
in interface java.util.Map<K,V>
t
- Mappings to be stored in this map.java.lang.UnsupportedOperationException
- if the putAll method is
not supported by this map.java.lang.ClassCastException
- if the class of a key or value in the
specified map prevents it from being stored in this map.java.lang.IllegalArgumentException
- some aspect of a key or value in the
specified map prevents it from being stored in this map.java.lang.NullPointerException
- if the specified map is null, or if
this map does not permit null keys or values, and the
specified map contains null keys or values.public void clear()
@NotNull public java.util.Set<K> keySet()
@NotNull public java.util.Collection<V> values()
@NotNull public java.util.Set<java.util.Map.Entry<K,V>> entrySet()
Map.Entry
. 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 own remove operation, or through
the setValue operation on a map entry returned by the iterator)
the results of the iteration are undefined. The set supports element
removal, which removes the corresponding mapping from the map, via the
Iterator.remove, Set.remove, removeAll,
retainAll and clear operations. It does not support
the add or addAll operations.public boolean hasDeadValue(@NotNull K key)
key
- key to look fortrue
the value was garbage collected and is no longer available,false
the value is still available (but may be gone soon)public void removeDeadValues()