|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object
|
+--java.util.AbstractMap
|
+--com.go.trove.util.IdentityMap
An IdentityMap is like WeakHashMap, except it uses a key's identity hashcode and equals methods. IdentityMap is not thread-safe and must be wrapped with Collections.synchronizedMap to be made thread-safe. Most of the implementation for this class is ripped off from java.util.HashMap, but not java.util.WeakHashMap, in order to acheive greater efficiency.
The documentation for WeakHashMap states that it is intended primarily
for use with key objects whose equals methods test for object identity
using the == operator. Because WeakHashMap uses a key's own equals and
hashcode methods, it is better suited for implementing methods that behave
like String.intern(). However, because WeakHashMap stongly references
values, Utils.intern provides a safer intern mechanism.
In this implementation, all key objects are tested for equality using the == operator, and null keys are not permitted. IdentityMap is therefore better suited for "canonicalized" mappings.
Note: Weakly referenced entries may be automatically removed during either accessor or mutator operations, possibly causing a concurrent modification to be detected. Therefore, even if multiple threads are only accessing this map, be sure to synchronize this map first. Also, do not rely on the value returned by size() when using an iterator from this map. The iterators may return less entries than the amount reported by size().
java.util.WeakHashMap,
HashMap| Inner classes inherited from class java.util.Map |
java.util.Map.Entry |
| Constructor Summary | |
IdentityMap()
Constructs a new, empty map with a default capacity and load factor, which is 0.75. |
|
IdentityMap(int initialCapacity)
Constructs a new, empty map with the specified initial capacity and default load factor, which is 0.75. |
|
IdentityMap(int initialCapacity,
float loadFactor)
Constructs a new, empty map with the specified initial capacity and the specified load factor. |
|
IdentityMap(java.util.Map t)
Constructs a new map with the same mappings as the given map. |
|
| Method Summary | |
void |
clear()
Removes all mappings from this map. |
java.lang.Object |
clone()
Returns a shallow copy of this HashMap 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, but this value may be larger than actual amount of entries produced by an iterator. |
java.lang.String |
toString()
|
java.util.Collection |
values()
Returns a collection view of the values contained in this map. |
| Methods inherited from class java.util.AbstractMap |
equals, hashCode |
| Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.util.Map |
equals, hashCode |
| Constructor Detail |
public IdentityMap(int initialCapacity,
float loadFactor)
initialCapacity - the initial capacity of the HashMap.loadFactor - the load factor of the HashMapjava.lang.IllegalArgumentException - if the initial capacity is less
than zero, or if the load factor is nonpositive.public IdentityMap(int initialCapacity)
initialCapacity - the initial capacity of the HashMap.java.lang.IllegalArgumentException - if the initial capacity is less
than zero.public IdentityMap()
public IdentityMap(java.util.Map t)
| Method Detail |
public int size()
size in interface java.util.Mapsize in class java.util.AbstractMappublic boolean isEmpty()
isEmpty in interface java.util.MapisEmpty in class java.util.AbstractMappublic boolean containsValue(java.lang.Object value)
containsValue in interface java.util.MapcontainsValue in class java.util.AbstractMapvalue - value whose presence in this map is to be tested.public boolean containsKey(java.lang.Object key)
containsKey in interface java.util.MapcontainsKey in class java.util.AbstractMapkey - key whose presence in this Map is to be tested.public java.lang.Object get(java.lang.Object key)
get in interface java.util.Mapget in class java.util.AbstractMapkey - 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.Mapput in class java.util.AbstractMapkey - 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.Mapremove in class java.util.AbstractMapkey - key whose mapping is to be removed from the map.public void putAll(java.util.Map t)
putAll in interface java.util.MapputAll in class java.util.AbstractMapt - Mappings to be stored in this map.public void clear()
clear in interface java.util.Mapclear in class java.util.AbstractMappublic java.lang.Object clone()
clone in class java.lang.Objectpublic java.util.Set keySet()
keySet in interface java.util.MapkeySet in class java.util.AbstractMappublic java.util.Collection values()
values in interface java.util.Mapvalues in class java.util.AbstractMappublic java.util.Set entrySet()
entrySet in interface java.util.MapentrySet in class java.util.AbstractMapMap.Entrypublic java.lang.String toString()
toString in class java.util.AbstractMap
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||