Package org.drasyl.util
Interface SetMultimap<K,V>
- Type Parameters:
K- the type of keys maintained by this mapV- the type of mapped values
- All Superinterfaces:
Multimap<K,V>
- All Known Implementing Classes:
HashSetMultimap
-
Method Summary
-
Method Details
-
get
Description copied from interface:MultimapReturns the values that are associated to the specifiedkey. Returns a emptyCollectionif currently no values are assosicated to thekey.- Specified by:
getin interfaceMultimap<K,V> - Parameters:
key- the key whose associated values should be returned- Returns:
- the values that are associated to the specified
key. Returns a emptyCollectionif currently no values are assosicated to thekey.
-