Returns a copy of the List contained in this MapKeyMap for the given ListKey. This method returns null if the given key is not in this MapKeyMap. This method is value-semantic in that no changes are made to the object passed into the method and ownership of the returned List is transferred to the c
(MapKey<K, V> key)
| 151 | * null if the given key is not a key in this MapKeyMap. |
| 152 | */ |
| 153 | @SuppressWarnings("unchecked") |
| 154 | public <K, V> Map<K, V> getMapFor(MapKey<K, V> key) |
| 155 | { |
| 156 | return map.getMapFor(key); |
| 157 | } |
| 158 | |
| 159 | /** |
| 160 | * Returns a Set of the secondary keys for the given primary key in this |
no outgoing calls
no test coverage detected