
Public Member Functions | |
| void | addEntriesFromDictionary (NSDictionary<?extends K,?extends V > otherDictionary) |
| void | clear () |
| Object | clone () |
| NSDictionary< K, V > | immutableClone () |
| NSMutableDictionary< K, V > | mutableClone () |
| NSMutableDictionary (Map<?extends K,?extends V > map, boolean ignoreNull) | |
| NSMutableDictionary (Map<?extends K,?extends V > map) | |
| NSMutableDictionary (Dictionary<?extends K,?extends V > dictionary, boolean ignoreNull) | |
| NSMutableDictionary (NSDictionary<?extends K,?extends V > otherDictionary) | |
| NSMutableDictionary (NSArray<?extends V > objects, NSArray<?extends K > keys) | |
| NSMutableDictionary (V[] objects, K[] keys) | |
| NSMutableDictionary (V object, K key) | |
| NSMutableDictionary (int capacity) | |
| NSMutableDictionary () | |
| V | put (K key, V value) |
| void | putAll (Map<?extends K,?extends V > m) |
| V | remove (Object key) |
| void | removeAllObjects () |
| V | removeObjectForKey (Object key) |
| void | removeObjectsForKeys (NSArray<?> keys) |
| void | setDictionary (NSDictionary<?extends K,?extends V > otherDictionary) |
| void | setObjectForKey (V object, K key) |
| void | takeValueForKey (Object value, String key) |
| Collection< V > | values () |
Static Public Attributes | |
| static final Class | _CLASS = _NSUtilitiesExtra._classWithFullySpecifiedNamePrime("com.webobjects.foundation.NSMutableDictionary") |
Static Package Attributes | |
| static final long | serialVersionUID = 6690723083816355576L |
NSMutableDictionary<String, String> env = new NSMutableDictionary<String, String>(System.getenv(), true);
for (String key : env) logger.debug(env.valueForKey(key));
| <K> | type of key contents | |
| <V> | type of value contents |
| NSMutableDictionary | ( | ) |
| NSMutableDictionary | ( | int | capacity | ) |
| NSMutableDictionary | ( | V | object, | |
| K | key | |||
| ) |
| NSMutableDictionary | ( | V[] | objects, | |
| K[] | keys | |||
| ) |
| NSMutableDictionary | ( | NSDictionary<?extends K,?extends V > | otherDictionary | ) |
| NSMutableDictionary | ( | Dictionary<?extends K,?extends V > | dictionary, | |
| boolean | ignoreNull | |||
| ) |
| NSMutableDictionary | ( | Map<?extends K,?extends V > | map | ) |
| NSMutableDictionary | ( | Map<?extends K,?extends V > | map, | |
| boolean | ignoreNull | |||
| ) |
| void addEntriesFromDictionary | ( | NSDictionary<?extends K,?extends V > | otherDictionary | ) |
| void clear | ( | ) |
Remove all mappings from this map.
Reimplemented from NSDictionary< K, V >.
| Object clone | ( | ) |
Reimplemented from NSDictionary< K, V >.
| NSDictionary<K, V> immutableClone | ( | ) |
Reimplemented from NSDictionary< K, V >.
| NSMutableDictionary<K, V> mutableClone | ( | ) |
Reimplemented from NSDictionary< K, V >.
| V put | ( | K | key, | |
| V | value | |||
| ) |
Associate the value with key in this map. If the map previously contained a mapping for key, the old value will be replaced by value.
| key | key to associate value with | |
| value | vaue to be associated with key |
Reimplemented from NSDictionary< K, V >.
| void putAll | ( | Map<?extends K,?extends V > | m | ) |
Copy all mappings from m to this map.
| m | Mappings to be stored in this map. |
Reimplemented from NSDictionary< K, V >.
| V remove | ( | Object | key | ) |
Remove mapping for key from this map if it is present.
| key | key whose mapping is to be removed from the map. |
Reimplemented from NSDictionary< K, V >.
| void removeAllObjects | ( | ) |
| V removeObjectForKey | ( | Object | key | ) |
| void removeObjectsForKeys | ( | NSArray<?> | keys | ) |
| void setDictionary | ( | NSDictionary<?extends K,?extends V > | otherDictionary | ) |
| void setObjectForKey | ( | V | object, | |
| K | key | |||
| ) |
| void takeValueForKey | ( | Object | value, | |
| String | key | |||
| ) |
Reimplemented from NSDictionary< K, V >.
| Collection<V> values | ( | ) |
Return a collection view of the values contained in this map.
Reimplemented from NSDictionary< K, V >.
final Class _CLASS = _NSUtilitiesExtra._classWithFullySpecifiedNamePrime("com.webobjects.foundation.NSMutableDictionary") [static] |
Reimplemented from NSDictionary< K, V >.
final long serialVersionUID = 6690723083816355576L [static, package] |
Reimplemented from NSDictionary< K, V >.
1.5.8