public class AppMap
extends java.util.HashMap
| Constructor and Description |
|---|
AppMap() |
AppMap(int initialCapacity)
Constructs an empty HashMap with the default initial capacity (16) and the default load factor (0.75).
|
AppMap(int initialCapacity,
float loadFactor)
Constructs an empty HashMap with the specified initial capacity and the default load factor (0.75).
|
AppMap(java.util.Map m)
Constructs an empty HashMap with the specified initial capacity and load factor.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
containsKey(java.lang.Object key) |
protected java.lang.Object |
convertKey(java.lang.Object key) |
static java.util.Map |
createInstance() |
static java.lang.Object |
get(java.util.Map map,
java.lang.Object key) |
java.lang.Object |
get(java.lang.Object key) |
static void |
main(java.lang.String[] args) |
java.lang.Object |
put(java.lang.Object key,
java.lang.Object object) |
clear, clone, compute, computeIfAbsent, computeIfPresent, containsValue, entrySet, forEach, getOrDefault, isEmpty, keySet, merge, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, valuespublic AppMap()
public AppMap(int initialCapacity)
public AppMap(int initialCapacity,
float loadFactor)
public AppMap(java.util.Map m)
public java.lang.Object put(java.lang.Object key,
java.lang.Object object)
put in interface java.util.Mapput in class java.util.HashMappublic boolean containsKey(java.lang.Object key)
containsKey in interface java.util.MapcontainsKey in class java.util.HashMappublic java.lang.Object get(java.lang.Object key)
get in interface java.util.Mapget in class java.util.HashMappublic static java.lang.Object get(java.util.Map map,
java.lang.Object key)
throws AppBaseException
AppBaseExceptionprotected java.lang.Object convertKey(java.lang.Object key)
public static java.util.Map createInstance()
public static void main(java.lang.String[] args)