com.sleepycat.je.utilint
Class IdentityHashMap<K,V>
java.lang.Object
java.util.AbstractMap<K,V>
java.util.IdentityHashMap<K,V>
com.sleepycat.je.utilint.IdentityHashMap<K,V>
- All Implemented Interfaces:
- Serializable, Cloneable, Map<K,V>
public class IdentityHashMap<K,V>
- extends IdentityHashMap<K,V>
The Harmony IdentityHashMap implementation has a bug in entrySet() where
it returns a set of Map.Entry's which, when setValue() is called, do not
actually mutate the underlying Map. This bug is reported as HARMONY-6419
(http://issues.apache.org/jira/browse/HARMONY-6419).
(Harmony is found on Android in the form of the Dalvik compiler/runtime).
This is also described in [#18167].
- See Also:
- Serialized Form
Nested classes/interfaces inherited from interface java.util.Map |
Map.Entry<K,V> |
Methods inherited from class java.util.IdentityHashMap |
clear, clone, containsKey, containsValue, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, values |
IdentityHashMap
public IdentityHashMap()
entrySet
public Set<Map.Entry<K,V>> entrySet()
- Specified by:
entrySet
in interface Map<K,V>
- Overrides:
entrySet
in class IdentityHashMap<K,V>
Copyright (c) 2004-2010 Oracle. All rights reserved.