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 theMultiValuedMapinterfaces. -
-
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 aListValuedMapwith anArrayListas 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 classAbstractListValuedMap<K,V>Abstract implementation of theListValuedMapinterface to simplify the creation of subclass implementations.classArrayListValuedHashMap<K,V>Implements aListValuedMap, using aHashMapto provide data storage andArrayLists as value collections.
-