|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.util.AbstractMap
dsto.dfc.collections.IdentityHashMap
public class IdentityHashMap
Exactly like HashMap except keys and entries are considered equal only if they are the same object (ie equals using == instead of equals ()).
Nested Class Summary |
---|
Nested classes/interfaces inherited from class java.util.AbstractMap |
---|
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V> |
Field Summary | |
---|---|
protected int |
count
The total number of mappings in the hash table. |
protected float |
loadFactor
The load factor for the hashtable. |
protected int |
modCount
The number of times this IdentityHashMap has been structurally modified Structural modifications are those that change the number of mappings in the IdentityHashMap or otherwise modify its internal structure (e.g., rehash). |
protected dsto.dfc.collections.IdentityHashMap.Entry[] |
table
The hash table data. |
protected int |
threshold
The table is rehashed when its size exceeds this threshold. |
Constructor Summary | |
---|---|
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(Map t)
Constructs a new map with the same mappings as the given map. |
Method Summary | |
---|---|
void |
clear()
Removes all mappings from this map. |
Object |
clone()
Returns a shallow copy of this IdentityHashMap instance: the keys and values themselves are not cloned. |
boolean |
containsKey(Object key)
Returns true if this map contains a mapping for the specified key. |
boolean |
containsValue(Object value)
Returns true if this map maps one or more keys to the specified value. |
Set |
entrySet()
Returns a collection view of the mappings contained in this map. |
Object |
get(Object key)
Returns the value to which this map maps the specified key. |
protected Iterator |
getHashIterator(int type)
|
boolean |
isEmpty()
Returns true if this map contains no key-value mappings. |
Set |
keySet()
Returns a set view of the keys contained in this map. |
Object |
put(Object key,
Object value)
Associates the specified value with the specified key in this map. |
void |
putAll(Map t)
Copies all of the mappings from the specified map to this one. |
Object |
remove(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. |
Collection |
values()
Returns a collection view of the values contained in this map. |
Methods inherited from class java.util.AbstractMap |
---|
equals, hashCode, toString |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.util.Map |
---|
equals, hashCode |
Field Detail |
---|
protected transient dsto.dfc.collections.IdentityHashMap.Entry[] table
protected transient int count
protected int threshold
protected float loadFactor
protected transient int modCount
Constructor Detail |
---|
public IdentityHashMap(int initialCapacity, float loadFactor)
initialCapacity
- the initial capacity of the IdentityHashMap.loadFactor
- the load factor of the IdentityHashMap
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.
IllegalArgumentException
- if the initial capacity is less
than zero.public IdentityHashMap()
public IdentityHashMap(Map t)
t
- the map whose mappings are to be placed in this map.Method Detail |
---|
public int size()
size
in interface Map
size
in class AbstractMap
public boolean isEmpty()
isEmpty
in interface Map
isEmpty
in class AbstractMap
public boolean containsValue(Object value)
containsValue
in interface Map
containsValue
in class AbstractMap
value
- value whose presence in this map is to be tested.
public boolean containsKey(Object key)
containsKey
in interface Map
containsKey
in class AbstractMap
key
- key whose presence in this Map is to be tested.
public Object get(Object key)
get
in interface Map
get
in class AbstractMap
key
- key whose associated value is to be returned.
public Object put(Object key, Object value)
put
in interface Map
put
in class AbstractMap
key
- key with which the specified value is to be associated.value
- value to be associated with the specified key.
public Object remove(Object key)
remove
in interface Map
remove
in class AbstractMap
key
- key whose mapping is to be removed from the map.
public void putAll(Map t)
putAll
in interface Map
putAll
in class AbstractMap
t
- Mappings to be stored in this map.public void clear()
clear
in interface Map
clear
in class AbstractMap
public Object clone()
clone
in class AbstractMap
public Set keySet()
keySet
in interface Map
keySet
in class AbstractMap
public Collection values()
values
in interface Map
values
in class AbstractMap
public Set entrySet()
entrySet
in interface Map
entrySet
in class AbstractMap
Map.Entry
protected Iterator getHashIterator(int type)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |