Uses of Interface
org.eclipse.collections.api.multimap.list.ListMultimap
-
Packages that use ListMultimap 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.ordered 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 ListMultimap in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return ListMultimap Modifier and Type Method Description <V> ListMultimap<V,T>ListIterable. groupBy(Function<? super T,? extends V> function)<V> ListMultimap<V,T>ParallelListIterable. groupBy(Function<? super T,? extends V> function)<V> ListMultimap<V,T>ListIterable. groupByEach(Function<? super T,? extends Iterable<V>> function)<V> ListMultimap<V,T>ParallelListIterable. groupByEach(Function<? super T,? extends Iterable<V>> function) -
Uses of ListMultimap in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ListMultimap Modifier and Type Method Description ListMultimap<V,K>OrderedMap. flip()<V1> ListMultimap<V1,V>OrderedMap. groupBy(Function<? super V,? extends V1> function)<V1> ListMultimap<V1,V>OrderedMap. groupByEach(Function<? super V,? extends Iterable<V1>> function) -
Uses of ListMultimap in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return ListMultimap Modifier and Type Method Description <VV> ListMultimap<VV,V>SortedMapIterable. groupBy(Function<? super V,? extends VV> function)<VV> ListMultimap<VV,V>SortedMapIterable. groupByEach(Function<? super V,? extends Iterable<VV>> function) -
Uses of ListMultimap in org.eclipse.collections.api.multimap.list
Subinterfaces of ListMultimap in org.eclipse.collections.api.multimap.list Modifier and Type Interface Description interfaceImmutableListMultimap<K,V>interfaceMutableListMultimap<K,V>Methods in org.eclipse.collections.api.multimap.list that return ListMultimap Modifier and Type Method Description <V2> ListMultimap<K,V2>ListMultimap. collectValues(Function<? super V,? extends V2> function)ListMultimap<K,V>ListMultimap. newEmpty()ListMultimap<K,V>ListMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ListMultimap<K,V>ListMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)ListMultimap<K,V>ListMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ListMultimap<K,V>ListMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate) -
Uses of ListMultimap in org.eclipse.collections.api.multimap.ordered
Methods in org.eclipse.collections.api.multimap.ordered that return ListMultimap Modifier and Type Method Description <V2> ListMultimap<K,V2>SortedIterableMultimap. collectValues(Function<? super V,? extends V2> function) -
Uses of ListMultimap in org.eclipse.collections.api.multimap.sortedbag
Methods in org.eclipse.collections.api.multimap.sortedbag that return ListMultimap Modifier and Type Method Description <V2> ListMultimap<K,V2>SortedBagMultimap. collectValues(Function<? super V,? extends V2> function) -
Uses of ListMultimap in org.eclipse.collections.api.multimap.sortedset
Methods in org.eclipse.collections.api.multimap.sortedset that return ListMultimap Modifier and Type Method Description <V2> ListMultimap<K,V2>SortedSetMultimap. collectValues(Function<? super V,? extends V2> function) -
Uses of ListMultimap in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ListMultimap Modifier and Type Method Description <V> ListMultimap<V,T>StackIterable. groupBy(Function<? super T,? extends V> function)<V> ListMultimap<V,T>StackIterable. groupByEach(Function<? super T,? extends Iterable<V>> function)
-