java.util

Class IdentityHashMap<K,V>

public class IdentityHashMap<K,V> extends AbstractMap<K,V> implements Map<K,V>, Serializable, Cloneable

Constructor Summary
IdentityHashMap()
IdentityHashMap(int expectedMaxSize)
<K1 extends K,V1 extends V>IdentityHashMap(Map<K1,V1> m)
Method Summary
voidclear()
Objectclone()
booleancontainsKey(Object key)
booleancontainsValue(Object value)
Set<Map.Entry<K,V>>entrySet()
booleanequals(Object o)
Vget(K key)
inthashCode()
booleanisEmpty()
Set<K>keySet()
Vput(K key, V value)
<K1 extends K,V1 extends V> voidputAll(Map<K1,V1> t)
Vremove(Object key)
intsize()
Collection<V>values()

Constructor Detail

IdentityHashMap

public IdentityHashMap()

IdentityHashMap

public IdentityHashMap(int expectedMaxSize)

IdentityHashMap

public <K1 extends K,V1 extends V> IdentityHashMap(Map<K1,V1> m)

Method Detail

clear

public void clear()

clone

public Object clone()

containsKey

public boolean containsKey(Object key)

containsValue

public boolean containsValue(Object value)

entrySet

public Set<Map.Entry<K,V>> entrySet()

equals

public boolean equals(Object o)

get

public V get(K key)

hashCode

public int hashCode()

isEmpty

public boolean isEmpty()

keySet

public Set<K> keySet()

put

public V put(K key, V value)

putAll

public <K1 extends K,V1 extends V> void putAll(Map<K1,V1> t)

remove

public V remove(Object key)

size

public int size()

values

public Collection<V> values()