Java java.util WeakHashMap fields, constructors, methods, implement or subclass

Example usage for Java java.util WeakHashMap fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util WeakHashMap.

The text is from its open source code.

Field

intsize
The number of key-value mappings contained in this weak hash map.
SetentrySet

Constructor

WeakHashMap()
Constructs a new, empty WeakHashMap with the default initial capacity (16) and load factor (0.75).
WeakHashMap(int initialCapacity)
Constructs a new, empty WeakHashMap with the given initial capacity and the default load factor (0.75).
WeakHashMap(Map m)
Constructs a new WeakHashMap with the same mappings as the specified map.
WeakHashMap(int initialCapacity, float loadFactor)
Constructs a new, empty WeakHashMap with the given initial capacity and the given load factor.

Method

voidclear()
Removes all of the mappings from this map.
booleancontainsKey(Object key)
Returns true if this map contains a mapping for the specified key.
booleancontainsValue(Object value)
Returns true if this map maps one or more keys to the specified value.
Vget(Object key)
Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
booleanisEmpty()
Returns true if this map contains no key-value mappings.
SetkeySet()
Returns a Set view of the keys contained in this map.
Vput(K key, V value)
Associates the specified value with the specified key in this map.
voidputAll(Map m)
Copies all of the mappings from the specified map to this map.
Vremove(Object key)
Removes the mapping for a key from this weak hash map if it is present.
Collectionvalues()
Returns a Collection view of the values contained in this map.