25.02.2017 Views

java_tutorial

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Java<br />

Following is the list of constructors supported by the WeakHashMap class.<br />

Sr. No.<br />

1<br />

WeakHashMap()<br />

Constructors and Description<br />

This constructor constructs a new, empty WeakHashMap with the default<br />

initial capacity (16) and the default load factor (0.75).<br />

WeakHashMap(int initialCapacity)<br />

2<br />

This constructor constructs a new, empty WeakHashMap with the given initial<br />

capacity and the default load factor, which is 0.75.<br />

WeakHashMap(int initialCapacity, float loadFactor)<br />

3<br />

This constructor constructs a new, empty WeakHashMap with the given initial<br />

capacity and the given load factor.<br />

WeakHashMap(Map t)<br />

4<br />

This constructor constructs a new WeakHashMap with the same mappings as<br />

the specified Map.<br />

Apart from the methods inherited from its parent classes, TreeMap defines the following<br />

methods:<br />

Sr. No.<br />

1<br />

2<br />

3<br />

4<br />

Methods with Description<br />

void clear()<br />

Removes all mappings from this map.<br />

boolean containsKey(Object key)<br />

Returns true if this map contains a mapping for the specified key.<br />

boolean containsValue(Object value)<br />

Returns true if this map maps one or more keys to the specified value.<br />

Set entrySet()<br />

Returns a collection view of the mappings contained in this map.<br />

Object get(Object key)<br />

5<br />

6<br />

Returns the value to which the specified key is mapped in this weak hash<br />

map, or null if the map contains no mapping for this key.<br />

boolean isEmpty()<br />

Returns true if this map contains no key-value mappings.<br />

413

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!