Package org.eclipse.collections.api.multimap
This package contains interfaces for
Multimap
.
A Multimap is a type of Map
that can associate multiple values for keys.
This package contains 3 interfaces:
-
Multimap
- a Read-only Multimap API. -
MutableMultimap
- a modifiable Multimap. -
ImmutableMultimap
- the non-modifiable equivalent interface toMutableMultimap
.
-
Interface Summary Interface Description ImmutableMultimap<K,V> Multimap<K,V> This collection is a type ofMap
that can associate multiple values for keys.MutableMultimap<K,V>