Interface ListMultimap<K,V>
- All Superinterfaces:
Multimap<K,
V>
- All Known Subinterfaces:
ListMultimap.Mutable<K,
V>
- All Known Implementing Classes:
ArrayListMultimap
,ClassInheritanceMultimap
-
Nested Class Summary
-
Method Summary
-
Method Details
-
get
Gets thecollection
of paired values for the providedkey
. It is expected that regardless whether akey
has any valus matched, the returnedcollection
is nevernull
but possiblyempty
.Unlike other possible implementations, this
Collection
returned is of aList
. It is not guaranteed that the insertion order is retained, or that the provided list is sorted.
-