|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.util.AbstractMap<K,V>
java.util.WeakHashMap<K,V>
public class WeakHashMap<K,V>
WeakHashMap is an implementation of Map with keys which are WeakReferences. The key/value mapping is removed when the key is no longer referenced. All optional operations are supported, adding and removing. Keys and values can be any objects.
HashMap,
WeakReference| Nested Class Summary | |
|---|---|
(package private) class |
WeakHashMap.HashIterator<R>
|
| Field Summary | |
|---|---|
(package private) int |
elementCount
|
(package private) java.util.WeakHashMap.Entry<K,V>[] |
elementData
|
(package private) int |
modCount
|
| Fields inherited from class java.util.AbstractMap |
|---|
keySet, valuesCollection |
| Constructor Summary | |
|---|---|
WeakHashMap()
Constructs a new empty instance of WeakHashMap. |
|
WeakHashMap(int capacity)
Constructs a new instance of WeakHashMap with the specified capacity. |
|
WeakHashMap(int capacity,
float loadFactor)
Constructs a new instance of WeakHashMap with the specified capacity and load factor. |
|
WeakHashMap(Map<? extends K,? extends V> map)
Constructs a new instance of HashMap containing the mappings from the specified Map. |
|
| Method Summary | |
|---|---|
void |
clear()
Removes all mappings from this WeakHashMap, leaving it empty. |
boolean |
containsKey(Object key)
Searches this WeakHashMap for the specified key. |
boolean |
containsValue(Object value)
Searches this WeakHashMap for the specified value, and returns true, if at least one entry has this object as its value. |
Set<Map.Entry<K,V>> |
entrySet()
Returns a Set of the mappings contained in this WeakHashMap. |
V |
get(Object key)
Returns the value of the mapping with the specified key. |
(package private) java.util.WeakHashMap.Entry<K,V> |
getEntry(Object key)
|
boolean |
isEmpty()
Returns if this WeakHashMap has no elements, a size of zero. |
Set<K> |
keySet()
Returns a Set of the keys contained in this WeakHashMap. |
(package private) void |
poll()
|
V |
put(K key,
V value)
Maps the specified key to the specified value. |
void |
putAll(Map<? extends K,? extends V> map)
Copies all the mappings in the given map to this map. |
V |
remove(Object key)
Removes a mapping with the specified key from this WeakHashMap. |
(package private) void |
removeEntry(java.util.WeakHashMap.Entry<K,V> toRemove)
|
int |
size()
Returns the number of mappings in this WeakHashMap. |
Collection<V> |
values()
Returns a Collection of the values contained in this WeakHashMap. |
| Methods inherited from class java.util.AbstractMap |
|---|
clone, equals, hashCode, toString |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.util.Map |
|---|
equals, hashCode |
| Field Detail |
|---|
int elementCount
java.util.WeakHashMap.Entry<K,V>[] elementData
volatile int modCount
| Constructor Detail |
|---|
public WeakHashMap()
public WeakHashMap(int capacity)
capacity - the initial capacity of this WeakHashMap
IllegalArgumentException - when the capacity is less than zero
public WeakHashMap(int capacity,
float loadFactor)
capacity - the initial capacityloadFactor - the initial load factor
IllegalArgumentException - when the capacity is less than zero or the load factor is
less or equal to zeropublic WeakHashMap(Map<? extends K,? extends V> map)
map - the mappings to add| Method Detail |
|---|
public void clear()
clear in interface Map<K,V>clear in class AbstractMap<K,V>isEmpty(),
size()public boolean containsKey(Object key)
containsKey in interface Map<K,V>containsKey in class AbstractMap<K,V>key - the object to search for
key is a key of this WeakHashMap, false
otherwisepublic Set<Map.Entry<K,V>> entrySet()
entrySet in interface Map<K,V>entrySet in class AbstractMap<K,V>public Set<K> keySet()
keySet in interface Map<K,V>keySet in class AbstractMap<K,V>public Collection<V> values()
values in interface Map<K,V>values in class AbstractMap<K,V>public V get(Object key)
get in interface Map<K,V>get in class AbstractMap<K,V>key - the key
java.util.WeakHashMap.Entry<K,V> getEntry(Object key)
public boolean containsValue(Object value)
containsValue in interface Map<K,V>containsValue in class AbstractMap<K,V>value - the object to search for
value is a value in this WeakHashMap,
false otherwisepublic boolean isEmpty()
isEmpty in interface Map<K,V>isEmpty in class AbstractMap<K,V>size()void poll()
void removeEntry(java.util.WeakHashMap.Entry<K,V> toRemove)
public V put(K key,
V value)
put in interface Map<K,V>put in class AbstractMap<K,V>key - the keyvalue - the value
public void putAll(Map<? extends K,? extends V> map)
putAll in interface Map<K,V>putAll in class AbstractMap<K,V>map - the Map to copy mappings from
NullPointerException - if the given map is nullpublic V remove(Object key)
remove in interface Map<K,V>remove in class AbstractMap<K,V>key - the key of the mapping to remove
public int size()
size in interface Map<K,V>size in class AbstractMap<K,V>
|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||