Returns a Set of the secondary keys for the given primary key in this MapKeyMap. This method returns an empty set if the given key is not in this MapKeyMap. Note: This Set is reference-semantic. The ownership of the Set is transferred to the calling Object; therefore, changes to the returned Set wi
(MapKey<K, V> key)
| 171 | * key. |
| 172 | */ |
| 173 | @SuppressWarnings("unchecked") |
| 174 | public <K, V> Set<K> getKeysFor(MapKey<K, V> key) |
| 175 | { |
| 176 | return map.getSecondaryKeySet(key); |
| 177 | } |
| 178 | |
| 179 | /** |
| 180 | * Removes the given value from the map for the given MapKey. Returns true |
no test coverage detected