Adds the given value to the List for the given ListKey. The null value cannot be used as a key in a MapKeyMap. This method will automatically initialize the map for the given primary key if there is not already a Map for that primary key. This method is reference-semantic and this MapKeyMap will ma
(MapKey<K, V> key1, K key2, V value)
| 91 | * The value to be added to the List for the given key. |
| 92 | */ |
| 93 | @SuppressWarnings("unchecked") |
| 94 | public <K, V> V addToMapFor(MapKey<K, V> key1, K key2, V value) |
| 95 | { |
| 96 | return (V) map.put(key1, key2, value); |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * Returns true if this MapKeyMap contains a Map for the given MapKey. This |