|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.util.AbstractMap
java.util.HashMap
soot.util.DeterministicHashMap
Implementation of HashMap which guarantees a stable (between executions) order for its elements upon iteration. This is quite useful for maps of Locals, to avoid nondeterministic local-name drift.
Constructor Summary | |
DeterministicHashMap(int initialCapacity)
Constructs a DeterministicHashMap with the given initial capacity. |
|
DeterministicHashMap(int initialCapacity,
float loadFactor)
Constructs a DeterministicHashMap with the given initial capacity and load factor. |
Method Summary | |
Collection |
entries()
Returns a backed list of entries for this HashMap (unsupported). |
Set |
keySet()
Returns a backed list of keys for this HashMap (unsupported). |
Object |
put(Object key,
Object value)
Inserts a mapping in this HashMap from key to value . |
Object |
remove(Object obj)
Removes the given object from this HashMap (unsupported). |
Methods inherited from class java.util.HashMap |
clear, clone, containsKey, containsValue, entrySet, get, isEmpty, putAll, size, values |
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 |
Constructor Detail |
public DeterministicHashMap(int initialCapacity)
public DeterministicHashMap(int initialCapacity, float loadFactor)
Method Detail |
public Object put(Object key, Object value)
key
to value
.
public Collection entries()
public Object remove(Object obj)
public Set keySet()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |