public class WeakIdentityHashMap<K,V> extends Object implements Map<K,V>
Based on java.util.WeakHashMap
Based on org.jboss.common.collection.WeakIdentityHashMap
IdentityHashMap
,
WeakHashMap
Constructor and Description |
---|
WeakIdentityHashMap()
Constructs a new, empty WeakIdentityHashMap with the default
initial capacity (16) and the default load factor (0.75).
|
WeakIdentityHashMap(int initialCapacity)
Constructs a new, empty WeakIdentityHashMap with the given
initial capacity and the default load factor, which is 0.75.
|
WeakIdentityHashMap(int initialCapacity,
float loadFactor)
Constructs a new, empty WeakIdentityHashMap with the given
initial capacity and the given load factor.
|
WeakIdentityHashMap(Map t)
Constructs a new WeakIdentityHashMap with the same mappings as
the specified Map.
|
Modifier and Type | Method and Description |
---|---|
void |
clear()
Removes all mappings from this map.
|
boolean |
containsKey(Object key)
Returns true if this map contains a mapping for the
specified key.
|
boolean |
containsValue(Object value)
Returns true if this map maps one or more keys to the
specified value.
|
Set<Map.Entry<K,V>> |
entrySet()
Returns a collection view of the mappings contained in this map.
|
V |
get(Object key)
Returns the value to which the specified key is mapped in this weak
hash map, or null if the map contains no mapping for
this key.
|
boolean |
isEmpty()
Returns true if this map contains no key-value mappings.
|
Set |
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.
|
void |
putAll(Map<? extends K,? extends V> t)
Copies all of the mappings from the specified map to this map These
mappings will replace any mappings that this map had for any of the
keys currently in the specified map.
|
V |
remove(Object key)
Removes the mapping for this key from this map if present.
|
boolean |
removeValue(Object value)
Remove elements having the according value.
|
int |
size()
Returns the number of key-value mappings in this map.
|
Collection |
values()
Returns a collection view of the values contained in this map.
|
public WeakIdentityHashMap(int initialCapacity, float loadFactor)
initialCapacity
- The initial capacity of the
WeakIdentityHashMaploadFactor
- The load factor of the
WeakIdentityHashMapIllegalArgumentException
- If the initial capacity is negative,
or if the load factor is nonpositive.public WeakIdentityHashMap(int initialCapacity)
initialCapacity
- The initial capacity of the
WeakIdentityHashMapIllegalArgumentException
- If the initial capacity is negative.public WeakIdentityHashMap()
public WeakIdentityHashMap(Map t)
t
- the map whose mappings are to be placed in this map.NullPointerException
- if the specified map is null.public int size()
public boolean isEmpty()
public V get(Object key)
get
in interface Map<K,V>
key
- the key whose associated value is to be returned.put(Object,Object)
public boolean containsKey(Object key)
containsKey
in interface Map<K,V>
key
- The key whose presence in this map is to be testedpublic V put(K key, V value)
put
in interface Map<K,V>
key
- key with which the specified value is to be associated.value
- value to be associated with the specified key.public void putAll(Map<? extends K,? extends V> t)
putAll
in interface Map<K,V>
t
- mappings to be stored in this map.NullPointerException
- if the specified map is null.public void clear()
public boolean containsValue(Object value)
containsValue
in interface Map<K,V>
value
- value whose presence in this map is to be tested.public boolean removeValue(Object value)
value
- value whose presence in this map is to be removed.public Set keySet()
public Collection values()
public Set<Map.Entry<K,V>> entrySet()
Copyright © 2006–2013 Hibernate. All rights reserved.