public class IdentityHashMap
extends java.util.AbstractMap
implements java.util.Map, java.lang.Cloneable, java.io.Serializable
HashMap
that uses
System.identityHashCode(Object)
for hashing, and reference comparison
instead of Object.equals(Object)
. Note that this applies only to keys,
and not to values, i.e. containsValue(Object)
still uses Object.equals(Object)
.Modifier and Type | Field and Description |
---|---|
static long |
serialVersionUID |
Constructor and Description |
---|
IdentityHashMap()
Constructs a new, empty map with a default capacity and load
factor, which is 0.75.
|
IdentityHashMap(int initialCapacity)
Constructs a new, empty map with the specified initial capacity
and default load factor, which is 0.75.
|
IdentityHashMap(int initialCapacity,
float loadFactor)
Constructs a new, empty map with the specified initial
capacity and the specified load factor.
|
IdentityHashMap(java.util.Map t)
Constructs a new map with the same mappings as the given map.
|
Modifier and Type | Method and Description |
---|---|
void |
clear()
Removes all mappings from this map.
|
java.lang.Object |
clone()
Returns a shallow copy of this IdentityHashMap instance: the keys and
values themselves are not cloned.
|
boolean |
containsKey(java.lang.Object key)
Returns true if this map contains a mapping for the specified
key.
|
boolean |
containsValue(java.lang.Object value)
Returns true if this map maps one or more keys to the
specified value.
|
java.util.Set |
entrySet()
Returns a collection view of the mappings contained in this map.
|
java.lang.Object |
get(java.lang.Object key)
Returns the value to which this map maps the specified key.
|
boolean |
isEmpty()
Returns true if this map contains no key-value mappings.
|
java.util.Set |
keySet()
Returns a set view of the keys contained in this map.
|
java.lang.Object |
put(java.lang.Object key,
java.lang.Object value)
Associates the specified value with the specified key in this map.
|
void |
putAll(java.util.Map t)
Copies all of the mappings from the specified map to this one.
|
java.lang.Object |
remove(java.lang.Object key)
Removes the mapping for this key from this map if present.
|
int |
size()
Returns the number of key-value mappings in this map.
|
java.util.Collection |
values()
Returns a collection view of the values contained in this map.
|
public static final long serialVersionUID
public IdentityHashMap(int initialCapacity, float loadFactor)
initialCapacity
- the initial capacity of the IdentityHashMap.loadFactor
- the load factor of the IdentityHashMapjava.lang.IllegalArgumentException
- if the initial capacity is less
than zero, or if the load factor is nonpositive.public IdentityHashMap(int initialCapacity)
initialCapacity
- the initial capacity of the IdentityHashMap.java.lang.IllegalArgumentException
- if the initial capacity is less
than zero.public IdentityHashMap()
public IdentityHashMap(java.util.Map t)
t
- the map whose mappings are to be placed in this map.public int size()
size
in interface java.util.Map
size
in class java.util.AbstractMap
public boolean isEmpty()
isEmpty
in interface java.util.Map
isEmpty
in class java.util.AbstractMap
public boolean containsValue(java.lang.Object value)
containsValue
in interface java.util.Map
containsValue
in class java.util.AbstractMap
value
- value whose presence in this map is to be tested.public boolean containsKey(java.lang.Object key)
containsKey
in interface java.util.Map
containsKey
in class java.util.AbstractMap
key
- key whose presence in this Map is to be tested.public java.lang.Object get(java.lang.Object key)
get
in interface java.util.Map
get
in class java.util.AbstractMap
key
- key whose associated value is to be returned.public java.lang.Object put(java.lang.Object key, java.lang.Object value)
put
in interface java.util.Map
put
in class java.util.AbstractMap
key
- key with which the specified value is to be associated.value
- value to be associated with the specified key.public java.lang.Object remove(java.lang.Object key)
remove
in interface java.util.Map
remove
in class java.util.AbstractMap
key
- key whose mapping is to be removed from the map.public void putAll(java.util.Map t)
putAll
in interface java.util.Map
putAll
in class java.util.AbstractMap
t
- Mappings to be stored in this map.public void clear()
clear
in interface java.util.Map
clear
in class java.util.AbstractMap
public java.lang.Object clone()
clone
in class java.util.AbstractMap
public java.util.Set keySet()
keySet
in interface java.util.Map
keySet
in class java.util.AbstractMap
public java.util.Collection values()
values
in interface java.util.Map
values
in class java.util.AbstractMap
public java.util.Set entrySet()
entrySet
in interface java.util.Map
entrySet
in class java.util.AbstractMap
Map.Entry