Name | Signature and Synopsis |
---|---|
clear | void clear (String mapID) Clears the map specified by mapID. |
createMap | void createMap (String mapID) Creates a new HashMap for the given mapID. |
deleteMap | void deleteMap (String mapID) Deletes the HashMap for the given mapID. |
get | String get(String mapID, String key) Returns the String for the specified key in the specified map. |
getMap | Object getMap(String mapID) Returns the specified map. |
getMapKeys | String[] getMapKeys(String mapID) Returns the object for the specified key in the specified map. |
getObject | Object getObject(String mapID, String key) Returns the object for the specified key in the specified map. |
getValue | Object getValue(Object map,String key) Gets the value for the given key in the given map |
put | String put(String mapID, String key, String value) Maps an object for a specified key in a specified map. |
putObject | Object putObject(String mapID, String key, Object value) Maps an object for a specified key in a specified map. |
remove | String remove (String mapID, String key) Removes a mapping for a specified key in a specified map. |
removeObject | Object removeObject(String mapID, String key) Removes a mapping for a specified key in a specified map. |
size | int size (String mapID) Returns the number of mappings in the map specified by mapID. |