public class WeakIdentityHashMap<K,V>
extends java.util.AbstractMap<K,V>
implements java.util.Map<K,V>
IdentityHashMap
,
WeakHashMap
,
WeakReference
Constructor and Description |
---|
WeakIdentityHashMap()
Constructs a new empty
WeakIdentityHashMap instance. |
WeakIdentityHashMap(int capacity)
Constructs a new
WeakIdentityHashMap instance with the specified
capacity. |
WeakIdentityHashMap(int capacity,
float loadFactor)
Constructs a new
WeakIdentityHashMap instance with the specified capacity
and load factor. |
WeakIdentityHashMap(java.util.Map<? extends K,? extends V> map)
Constructs a new
WeakIdentityHashMap instance containing the mappings
from the specified map. |
Modifier and Type | Method and Description |
---|---|
void |
cleanup()
Force a cleanup by checking the reference queue and removing gc'd entries.
|
void |
clear()
Removes all mappings from this map, leaving it empty.
|
boolean |
containsKey(java.lang.Object key)
Returns whether this map contains the specified key.
|
boolean |
containsValue(java.lang.Object value)
Returns whether this map contains the specified value.
|
java.util.Set<java.util.Map.Entry<K,V>> |
entrySet()
Returns a set containing all of the mappings in this map.
|
V |
get(java.lang.Object key)
Returns the value of the mapping with the specified key.
|
boolean |
isEmpty() |
java.util.Set<K> |
keySet()
Returns a set of the keys contained in this map.
|
V |
put(K key,
V value)
Maps the specified key to the specified value.
|
V |
remove(java.lang.Object key)
Removes the mapping with the specified key from this map.
|
int |
size() |
java.util.Collection<V> |
values()
Returns a collection of the values contained in this map.
|
public WeakIdentityHashMap()
WeakIdentityHashMap
instance.public WeakIdentityHashMap(int capacity)
WeakIdentityHashMap
instance with the specified
capacity.capacity
- the initial capacity of this map.java.lang.IllegalArgumentException
- if the capacity is less than zero.public WeakIdentityHashMap(int capacity, float loadFactor)
WeakIdentityHashMap
instance with the specified capacity
and load factor.capacity
- the initial capacity of this map.loadFactor
- the initial load factor.java.lang.IllegalArgumentException
- if the capacity is less than zero or the load factor is less
or equal to zero.public void clear()
public boolean containsKey(java.lang.Object key)
public java.util.Set<java.util.Map.Entry<K,V>> entrySet()
Map.Entry
. As the set is backed by this map,
changes in one will be reflected in the other. It does not support adding
operations.public java.util.Set<K> keySet()
public java.util.Collection<V> values()
Returns a collection of the values contained in this map. The collection is backed by this map so changes to one are reflected by the other. The collection supports remove, removeAll, retainAll and clear operations, and it does not support add or addAll operations.
This method returns a collection which is the subclass of AbstractCollection. The iterator method of this subclass returns a "wrapper object" over the iterator of map's entrySet(). The size method wraps the map's size method and the contains method wraps the map's containsValue method.
The collection is created when this method is called at first time and returned in response to all subsequent calls. This method may return different Collection when multiple calls to this method, since it has no synchronization performed.
public V get(java.lang.Object key)
public boolean containsValue(java.lang.Object value)
public boolean isEmpty()
public void cleanup()
public V remove(java.lang.Object key)
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.