Interface ReversibleSetMultimap<K,V>
- Type Parameters:
K-V-
- All Superinterfaces:
com.google.common.collect.Multimap<K,V>, com.google.common.collect.SetMultimap<K, V>
- All Known Implementing Classes:
ReversibleSetMultimapImpl
public interface ReversibleSetMultimap<K,V>
extends com.google.common.collect.SetMultimap<K,V>
Multimap in which a key can only map to a unique value.
As a consequence, putting an entry with a value 'v' will remove
any prior entry with the same value.
- Author:
- raven
-
Method Summary
Methods inherited from interface com.google.common.collect.Multimap
clear, containsEntry, containsKey, containsValue, forEach, hashCode, isEmpty, keys, keySet, put, putAll, putAll, remove, size, valuesMethods inherited from interface com.google.common.collect.SetMultimap
asMap, entries, equals, get, removeAll, replaceValues
-
Method Details
-
reverse
ReversibleMap<V,K> reverse()
-