Uses of Interface
org.eclipse.collections.api.multimap.list.MutableListMultimap
-
Packages that use MutableListMultimap Package Description org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMaporg.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.multimap.list This package contains interfaces forListMultimap.org.eclipse.collections.api.multimap.sortedbag This package contains interfaces forSortedBagMultimap.org.eclipse.collections.api.multimap.sortedset This package contains interfaces forSortedSetMultimap.org.eclipse.collections.api.stack This package contains interfaces for stack API. -
-
Uses of MutableListMultimap in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return MutableListMultimap Modifier and Type Method Description <V> MutableListMultimap<V,T>MutableList. groupBy(Function<? super T,? extends V> function)<V> MutableListMultimap<V,T>MutableList. groupByEach(Function<? super T,? extends Iterable<V>> function) -
Uses of MutableListMultimap in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableListMultimap Modifier and Type Method Description MutableListMultimap<V,K>MutableOrderedMap. flip()<V1> MutableListMultimap<V1,V>MutableOrderedMap. groupBy(Function<? super V,? extends V1> function)<V1> MutableListMultimap<V1,V>MutableOrderedMap. groupByEach(Function<? super V,? extends Iterable<V1>> function) -
Uses of MutableListMultimap in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableListMultimap Modifier and Type Method Description <VV> MutableListMultimap<VV,V>MutableSortedMap. groupBy(Function<? super V,? extends VV> function)<VV> MutableListMultimap<VV,V>MutableSortedMap. groupByEach(Function<? super V,? extends Iterable<VV>> function) -
Uses of MutableListMultimap in org.eclipse.collections.api.multimap.list
Methods in org.eclipse.collections.api.multimap.list that return MutableListMultimap Modifier and Type Method Description MutableListMultimap<K,V>MutableListMultimap. asSynchronized()<V2> MutableListMultimap<K,V2>MutableListMultimap. collectValues(Function<? super V,? extends V2> function)MutableListMultimap<K,V>MutableListMultimap. newEmpty()MutableListMultimap<K,V>MutableListMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableListMultimap<K,V>MutableListMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)MutableListMultimap<K,V>MutableListMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableListMultimap<K,V>MutableListMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)MutableListMultimap<K,V>ListMultimap. toMutable()default MutableListMultimap<K,V>MutableListMultimap. withKeyMultiValues(K key, V... values)default MutableListMultimap<K,V>MutableListMultimap. withKeyValue(K key, V value)Puts the key / value combination into the MutableListMultimap and returns the MutableListMultimap (this). -
Uses of MutableListMultimap in org.eclipse.collections.api.multimap.sortedbag
Methods in org.eclipse.collections.api.multimap.sortedbag that return MutableListMultimap Modifier and Type Method Description <V2> MutableListMultimap<K,V2>MutableSortedBagMultimap. collectValues(Function<? super V,? extends V2> function) -
Uses of MutableListMultimap in org.eclipse.collections.api.multimap.sortedset
Methods in org.eclipse.collections.api.multimap.sortedset that return MutableListMultimap Modifier and Type Method Description <V2> MutableListMultimap<K,V2>MutableSortedSetMultimap. collectValues(Function<? super V,? extends V2> function) -
Uses of MutableListMultimap in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return MutableListMultimap Modifier and Type Method Description <V> MutableListMultimap<V,T>MutableStack. groupBy(Function<? super T,? extends V> function)<V> MutableListMultimap<V,T>MutableStack. groupByEach(Function<? super T,? extends Iterable<V>> function)
-