Type Parameters:
K - the type of keys maintained by this map
V - the type of mapped values
All Implemented Interfaces:
Map<K,V>

  • Nested Class Summary

  • Constructor Summary

    Constructors

    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(int initialCapacity, float loadFactor)

    Constructs a new, empty WeakHashMap with the given initial capacity and the given load factor.

    WeakHashMap(Map<? extends K, ? extends V> m)

    Constructs a new WeakHashMap with the same mappings as the specified map.

  • Method Summary

    void

    clear()

    Removes all of the mappings from this map.

    boolean

    Returns true if this map contains a mapping for the specified key.

    boolean

    Returns true if this map maps one or more keys to the specified value.

    entrySet()

    Returns a Set view of the mappings contained in this map.

    Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.

    boolean

    isEmpty()

    Returns true if this map contains no key-value mappings.

    keySet()

    Returns a Set view of the keys contained in this map.

    newWeakHashMap(int numMappings)

    Creates a new, empty WeakHashMap suitable for the expected number of mappings.

    put(K key, V value)

    Associates the specified value with the specified key in this map.

    void

    putAll(Map<? extends K, ? extends V> m)

    Copies all of the mappings from the specified map to this map.

    Removes the mapping for a key from this weak hash map if it is present.

    int

    size()

    Returns the number of key-value mappings in this map.

    values()

    Returns a Collection view of the values contained in this map.

    Methods declared in class AbstractMap

    clone, equals, hashCode, toString

    Returns a shallow copy of this AbstractMap instance: the keys and values themselves are not cloned.

    boolean

    Compares the specified object with this map for equality.

    int

    Returns the hash code value for this map.

    Returns a string representation of this map.

    Methods declared in class Object

    finalize, getClass, notify, notifyAll, wait, wait, wait

    protected void

    Deprecated, for removal: This API element is subject to removal in a future version.

    Returns the runtime class of this Object.

    final void

    Wakes up a single thread that is waiting on this object's monitor.

    final void

    Wakes up all threads that are waiting on this object's monitor.

    final void

    Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

    final void

    wait(long timeoutMillis)

    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

    final void

    wait(long timeoutMillis, int nanos)

    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

    Methods declared in interface Map

    compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll

    default V

    compute(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction)

    Attempts to compute a mapping for the specified key and its current mapped value, or null if there is no current mapping (optional operation).

    default V

    If the specified key is not already associated with a value (or is mapped to null), attempts to compute its value using the given mapping function and enters it into this map unless null (optional operation).

    default V

    If the value for the specified key is present and non-null, attempts to compute a new mapping given the key and its current mapped value (optional operation).

    default void

    Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.

    default V

    Returns the value to which the specified key is mapped, or defaultValue if this map contains no mapping for the key.

    default V

    merge(K key, V value, BiFunction<? super V, ? super V, ? extends V> remappingFunction)

    If the specified key is not already associated with a value or is associated with null, associates it with the given non-null value (optional operation).

    default V

    If the specified key is not already associated with a value (or is mapped to null) associates it with the given value and returns null, else returns the current value (optional operation).

    default boolean

    Removes the entry for the specified key only if it is currently mapped to the specified value (optional operation).

    default V

    Replaces the entry for the specified key only if it is currently mapped to some value (optional operation).

    default boolean

    replace(K key, V oldValue, V newValue)

    Replaces the entry for the specified key only if currently mapped to the specified value (optional operation).

    default void

    Replaces each entry's value with the result of invoking the given function on that entry until all entries have been processed or the function throws an exception (optional operation).

  • Constructor Details

    • WeakHashMap

    • WeakHashMap

    • WeakHashMap

    • WeakHashMap

  • Method Details

    • size

    • isEmpty

    • get

    • containsKey

    • put

    • putAll

    • remove

    • clear

    • containsValue

    • keySet

    • values

    • entrySet

    • newWeakHashMap