Adds an empty collection if it does not already exist for the given key. @param key the key to ensure an entry for.
(final K key)
| 109 | * @param key the key to ensure an entry for. |
| 110 | */ |
| 111 | public void put(final K key) { |
| 112 | putBase(key); |
| 113 | } |
| 114 | |
| 115 | /** |
| 116 | * Adds value to collection held by key |