| java.lang.Object | ||
| ↳ | java.util.AbstractMap <K, V> | |
| ↳ | java.util.IdentityHashMap<K, V> | |
IdentityHashMap is a variant on HashMap which tests equality by reference instead of equality by value. Basically, keys and values are compared for equality by checking if their references are equal rather than by calling the "equals" function.
       
        Note: This class intentionally violates the general contract of
        
         Map
        
        's on comparing objects by their
        
         equals
        
        method.
       
      
IdentityHashMap uses open addressing (linear probing in particular) for collision resolution. This is different from HashMap which uses Chaining.
Like HashMap, IdentityHashMap is not thread safe, so access by multiple threads must be synchronized by an external mechanism such as Collections.synchronizedMap.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| 
          | 
        
          
          Creates an IdentityHashMap with default expected maximum size.
          
         | 
       ||||||||||
| 
          | 
        
          
          Creates an IdentityHashMap with the specified maximum size parameter.
          
         | 
       ||||||||||
| 
          | 
        
          
          Creates an IdentityHashMap using the given map as initial values.
          
         | 
       ||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| 
          | 
        
          
          Removes all elements from this map, leaving it empty.
          
         | 
       ||||||||||
| 
          | 
        
          
          Returns a new IdentityHashMap with the same mappings and size as this
 one.
          
         | 
       ||||||||||
| 
          | 
        
          
          Returns whether this map contains the specified key.
          
         | 
       ||||||||||
| 
          | 
        
          
          Returns whether this map contains the specified value.
          
         | 
       ||||||||||
| 
          | 
        
          
          Returns a set containing all of the mappings in this map.
          
         | 
       ||||||||||
| 
          | 
        
          
          Compares this map with other objects.
          
         | 
       ||||||||||
| 
          | 
        
          
          Returns the value of the mapping with the specified key.
          
         | 
       ||||||||||
| 
          | 
        
          
          Returns whether this IdentityHashMap has no elements.
          
         | 
       ||||||||||
| 
          | 
        
          
          Returns a set of the keys contained in this map.
          
         | 
       ||||||||||
| 
          | 
        
          
          Maps the specified key to the specified value.
          
         | 
       ||||||||||
| 
          | 
        
          
          Copies all the mappings in the specified map to this map.
          
         | 
       ||||||||||
| 
          | 
        
          
          Removes the mapping with the specified key from this map.
          
         | 
       ||||||||||
| 
          | 
        
          
          Returns the number of mappings in this IdentityHashMap.
          
         | 
       ||||||||||
| 
          | 
        
          
          Returns a collection of the values contained in this map.
          
         | 
       ||||||||||
| 
         
          [Expand]
         
          
          Inherited Methods
          
         | 
       |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
         
           
         
         From class
         
          java.util.AbstractMap
         
          | 
       |||||||||||
         
           
         
         From class
         
          java.lang.Object
         
          | 
       |||||||||||
         
           
         
         From interface
         
          java.util.Map
         
          | 
       |||||||||||
Creates an IdentityHashMap with default expected maximum size.
Creates an IdentityHashMap with the specified maximum size parameter.
| maxSize | The estimated maximum number of entries that will be put in this map. | 
|---|
Creates an IdentityHashMap using the given map as initial values.
| map | A map of (key,value) pairs to copy into the IdentityHashMap. | 
|---|
Returns a new IdentityHashMap with the same mappings and size as this one.
Returns whether this map contains the specified key.
| key | the key to search for. | 
|---|
           true
          
          if this map contains the specified key,
          
           false
          
          otherwise.
         Returns whether this map contains the specified value.
| value | the value to search for. | 
|---|
           true
          
          if this map contains the specified value,
          
           false
          
          otherwise.
         
         Returns a set containing all of the mappings in this map. Each mapping is
 an instance of
         
          
           Map.Entry
          
         
         . As the set is backed by this map,
 changes in one will be reflected in the other.
        
Compares this map with other objects. This map is equal to another map is it represents the same set of mappings. With this map, two mappings are the same if both the key and the value are equal by reference. When compared with a map that is not an IdentityHashMap, the equals method is neither necessarily symmetric (a.equals(b) implies b.equals(a)) nor transitive (a.equals(b) and b.equals(c) implies a.equals(c)).
| object | the object to compare to. | 
|---|
Returns the value of the mapping with the specified key.
| key | the key. | 
|---|
Returns whether this IdentityHashMap has no elements.
           true
          
          if this IdentityHashMap has no elements,
          
           false
          
          otherwise.
         Returns a set of the keys contained in this map. The set is backed by this map so changes to one are reflected by the other. The set does not support adding.
Maps the specified key to the specified value.
| key | the key. | 
|---|---|
| value | the value. | 
           null
          
          if there was no such mapping.
         Copies all the mappings in the specified map to this map. These mappings will replace all mappings that this map had for any of the keys currently in the given map.
| map | the map to copy mappings from. | 
|---|
| NullPointerException | 
           if
           
            map
           
           is
           
            null
           
           .
           | 
         
|---|
Removes the mapping with the specified key from this map.
| key | the key of the mapping to remove. | 
|---|
           null
          
          if no mapping
         for the specified key was found.
         Returns the number of mappings in this IdentityHashMap.
Returns a collection of the values contained in this map. The collection is backed by this map so changes to one are reflected by the other. The collection supports remove, removeAll, retainAll and clear operations, and it does not support add or addAll operations.
         This method returns a collection which is the subclass of
 AbstractCollection. The iterator method of this subclass returns a
 "wrapper object" over the iterator of map's entrySet(). The
         
          size
         
         method wraps the map's size method and the
         
          contains
         
         method wraps
 the map's containsValue method.
        
The collection is created when this method is called for the first time and returned in response to all subsequent calls. This method may return different collections when multiple concurrent calls occur, since no synchronization is performed.