public static class Maps.WeakHashMap<K,V> extends Maps.AbstractHashMap<K,V,Maps.WeakEntry<K,V>>
Maps.AbstractHashMap
, based on Maps.WeakEntry
,
which holds its values with WeakReference
s.DEFAULT_INITIAL_CAPACITY, DEFAULT_LOAD_FACTOR, MAXIMUM_CAPACITY
Constructor and Description |
---|
Maps.WeakHashMap()
Constructs an empty weak-referencing map with default capacity and load
factor.
|
Maps.WeakHashMap(int initialCapacity)
Constructs an empty weak-referencing map with specified initial capacity
and default load factor.
|
Maps.WeakHashMap(int initialCapacity,
float loadFactor)
Constructs an empty weak-referencing map with specified initial capacity
and load factor.
|
Maps.WeakHashMap(java.util.Map<? extends K,? extends V> map)
Constructs a weak-referencing map with specified initial mappings,
initial capacity based on the number of initial mappings, and default
load factor.
|
Modifier and Type | Method and Description |
---|---|
protected Maps.WeakEntry<K,V> |
createEntry(int hash,
K key,
V value,
Maps.WeakEntry<K,V> next)
Creates an entry for this map.
|
addEntry, capacity, change, clear, clone, containsKey, containsValue, createEntryIterator, createEntrySetIterator, createKeySetIterator, createValuesIterator, entryAccessed, entryAdded, entryChanged, entryPurged, entryRemoved, entrySet, equals, get, getChangeCount, getEntry, getQueue, hashCode, isEmpty, keyEquals, keyHashCode, keySet, loadFactor, mapChanged, mapConstructed, mapInitialized, purge, purgeEntry, put, putAll, remove, removeExistingEntry, removeKey, size, toString, valueEquals, valueHashCode, values
public Maps.WeakHashMap()
public Maps.WeakHashMap(int initialCapacity)
initialCapacity
- the initial capacity.java.lang.IllegalArgumentException
- if the initial capacity is negative.Maps.AbstractHashMap.DEFAULT_LOAD_FACTOR
public Maps.WeakHashMap(int initialCapacity, float loadFactor)
initialCapacity
- the initial capacity.loadFactor
- the load factor.java.lang.IllegalArgumentException
- if the initial capacity is negative
or the load factor is nonpositive.public Maps.WeakHashMap(java.util.Map<? extends K,? extends V> map)
map
- A map providing initial mappings.java.lang.NullPointerException
- if the specified map is null.Maps.AbstractHashMap.DEFAULT_LOAD_FACTOR
protected Maps.WeakEntry<K,V> createEntry(int hash, K key, V value, Maps.WeakEntry<K,V> next)
Maps.WeakHashMap
implementation creates Maps.WeakEntry
entries.createEntry
in class Maps.AbstractHashMap<K,V,Maps.WeakEntry<K,V>>
hash
- The hashCode of the key for this entry.key
- The key for this entry.value
- The value for this entry.next
- The entry to follow this entry in the entry chain.