| Name | Signature and Synopsis |
|---|---|
clear | void clear ( Object map )Removes all of the mappings from this map. |
containsKey | boolean containsKey ( Object map, Object key )Returns true, if this map contains a mapping for the specified. |
containsValue | boolean containsValue ( Object map, Object value )Returns true, if this map maps one or more keys to the specified value. |
createConcurrentHashMap | Object createConcurrentHashMap ( )Create and return instance of ConcurrentHashMap. This function returns a thread safe hash map. |
createHashMap | Object createHashMap ( )Create and return instance of HashMap. The hashmap returned by this function is not thread safe hence any updates if using a multi-threaded RETE should be done carefully. |
createHashMapWithId | Object createHashMapWithId ( String mapId )Create and return instance of ConcurrentHashMap. |
createLinkedHashMap | Object createLinkedHashMap ( )Create and return instance of LinkedHashMap. |
createLinkedHashMapWithId | Object createLinkedHashMapWithId ( String mapId )Create and return instance of LinkedHashMap. |
createMap | Object createMap ( String className )Creates user specified Map implementation |
createMapWithId | Object createMapWithId ( String mapId )Creates user specified Map implementation. |
createTreeMap | Object createTreeMap ( )Create and return instance of TreeMap. |
createTreeMapWithId | Object createTreeMapWithId ( String mapId )Create and return instance of TreeMap. |
deleteMap | Object deleteMap ( String mapId )Deletes the instance of map for the given mapId. This function can not be used if the collection is created with createMap(). |
entrySet | Object entrySet ( Object map )Returns a view of the mappings contained in this map. |
get | Object get ( Object map, Object key )Returns the value to which the specified key is mapped. |
getMap | Object getMap ( String mapId )Returns the instance of map for the given mapId. |
isEmpty | boolean isEmpty ( Object map )Returns true, if this map contains no key-value mappings. |
keySet | Object keySet ( Object map )Returns a view of the keys contained in this map. |
put | Object put ( Object map, Object key, Object value )Associates the specified value with the specified key in this map. |
putAll | void putAll ( Object map, Object mapToBeAdded )Copies all of the mappings from the specified map to this map. |
putIfAbsent | Object putIfAbsent ( Object map ,Object key ,Object value )If the specified key is not already associated with a value, associate it with the given value. The action is performed atomically. |
remove | boolean remove ( Object map ,Object key ,Object value )Remove entry for key only if currently mapped to given value. The action is performed atomically. |
replace | Object replace ( Object map ,Object key ,Object value )Replace entry for key only if currently mapped to some value. The action is performed atomically. |
replaceIfEqualToGivenValue | boolean replaceIfEqualToGivenValue ( Object map ,Object key ,Object oldValue, Object newValue )Replace entry for key only if currently mapped to given value. The action is performed atomically. |
size | int size ( Object map )Returns the number of key-value mappings in this map. |
values | Object values ( Object map )Returns a view of the values contained in this map. |