Uses of Interface
org.apache.commons.collections4.ListValuedMap
-
Packages that use ListValuedMap Package Description org.apache.commons.collections4 This package contains the interfaces and utilities shared across all the subpackages of this component.org.apache.commons.collections4.multimap This package contains implementations of theMultiValuedMap
interfaces. -
-
Uses of ListValuedMap in org.apache.commons.collections4
Methods in org.apache.commons.collections4 that return ListValuedMap Modifier and Type Method Description static <K,V>
ListValuedMap<K,V>MultiMapUtils. newListValuedHashMap()
Creates aListValuedMap
with anArrayList
as collection class to store the values mapped to a key. -
Uses of ListValuedMap in org.apache.commons.collections4.multimap
Classes in org.apache.commons.collections4.multimap that implement ListValuedMap Modifier and Type Class Description class
AbstractListValuedMap<K,V>
Abstract implementation of theListValuedMap
interface to simplify the creation of subclass implementations.class
ArrayListValuedHashMap<K,V>
-