Uses of Class
org.eclipse.collections.impl.multimap.list.FastListMultimap
| Package | Description |
|---|---|
| org.eclipse.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
| org.eclipse.collections.impl.multimap.bag |
This package contains implementations of the
BagMultimap interface. |
| org.eclipse.collections.impl.multimap.bag.sorted | |
| org.eclipse.collections.impl.multimap.bag.sorted.mutable | |
| org.eclipse.collections.impl.multimap.list |
This package contains implementations of the
ListMultimap interface. |
| org.eclipse.collections.impl.multimap.set.sorted |
This package contains implementations of the
SortedSetMultimap interface. |
| org.eclipse.collections.impl.utility |
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
|
| org.eclipse.collections.impl.utility.internal |
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
|
-
Uses of FastListMultimap in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return FastListMultimap Modifier and Type Method Description <V> FastListMultimap<V,T>AbstractMutableList. groupBy(Function<? super T,? extends V> function)<V> FastListMultimap<V,T>ArrayListAdapter. groupBy(Function<? super T,? extends V> function)<V> FastListMultimap<V,T>FastList. groupBy(Function<? super T,? extends V> function)<V> FastListMultimap<V,T>RandomAccessListAdapter. groupBy(Function<? super T,? extends V> function)<V> FastListMultimap<V,T>AbstractMutableList. groupByEach(Function<? super T,? extends Iterable<V>> function)<V> FastListMultimap<V,T>ArrayListAdapter. groupByEach(Function<? super T,? extends Iterable<V>> function)<V> FastListMultimap<V,T>FastList. groupByEach(Function<? super T,? extends Iterable<V>> function)<V> FastListMultimap<V,T>RandomAccessListAdapter. groupByEach(Function<? super T,? extends Iterable<V>> function) -
Uses of FastListMultimap in org.eclipse.collections.impl.multimap.bag
Methods in org.eclipse.collections.impl.multimap.bag that return FastListMultimap Modifier and Type Method Description <V2> FastListMultimap<K,V2>TreeBagMultimap. collectValues(Function<? super V,? extends V2> function)Deprecated. -
Uses of FastListMultimap in org.eclipse.collections.impl.multimap.bag.sorted
Methods in org.eclipse.collections.impl.multimap.bag.sorted that return FastListMultimap Modifier and Type Method Description <V2> FastListMultimap<K,V2>TreeBagMultimap. collectValues(Function<? super V,? extends V2> function)Deprecated. -
Uses of FastListMultimap in org.eclipse.collections.impl.multimap.bag.sorted.mutable
Methods in org.eclipse.collections.impl.multimap.bag.sorted.mutable that return FastListMultimap Modifier and Type Method Description <V2> FastListMultimap<K,V2>TreeBagMultimap. collectValues(Function<? super V,? extends V2> function) -
Uses of FastListMultimap in org.eclipse.collections.impl.multimap.list
Methods in org.eclipse.collections.impl.multimap.list that return FastListMultimap Modifier and Type Method Description <V2> FastListMultimap<K,V2>AbstractMutableListMultimap. collectValues(Function<? super V,? extends V2> function)<V2> FastListMultimap<K,V2>SynchronizedPutFastListMultimap. collectValues(Function<? super V,? extends V2> function)FastListMultimap<K,V>FastListMultimap. newEmpty()static <K, V> FastListMultimap<K,V>FastListMultimap. newMultimap()static <K, V> FastListMultimap<K,V>FastListMultimap. newMultimap(Iterable<Pair<K,V>> inputIterable)static <K, V> FastListMultimap<K,V>FastListMultimap. newMultimap(Multimap<? extends K,? extends V> multimap)static <K, V> FastListMultimap<K,V>FastListMultimap. newMultimap(Pair<K,V>... pairs)FastListMultimap<K,V>FastListMultimap. rejectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate)FastListMultimap<K,V>MultiReaderFastListMultimap. rejectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate)FastListMultimap<K,V>SynchronizedPutFastListMultimap. rejectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate)FastListMultimap<K,V>FastListMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)FastListMultimap<K,V>MultiReaderFastListMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)FastListMultimap<K,V>SynchronizedPutFastListMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)FastListMultimap<K,V>FastListMultimap. selectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate)FastListMultimap<K,V>MultiReaderFastListMultimap. selectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate)FastListMultimap<K,V>SynchronizedPutFastListMultimap. selectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate)FastListMultimap<K,V>FastListMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)FastListMultimap<K,V>MultiReaderFastListMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)FastListMultimap<K,V>SynchronizedPutFastListMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate) -
Uses of FastListMultimap in org.eclipse.collections.impl.multimap.set.sorted
Methods in org.eclipse.collections.impl.multimap.set.sorted that return FastListMultimap Modifier and Type Method Description <V2> FastListMultimap<K,V2>SynchronizedPutTreeSortedSetMultimap. collectValues(Function<? super V,? extends V2> function)<V2> FastListMultimap<K,V2>TreeSortedSetMultimap. collectValues(Function<? super V,? extends V2> function) -
Uses of FastListMultimap in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return FastListMultimap Modifier and Type Method Description static <T, V> FastListMultimap<V,T>ArrayIterate. groupBy(T[] array, Function<? super T,? extends V> function)static <T, V> FastListMultimap<V,T>ArrayListIterate. groupBy(ArrayList<T> list, Function<? super T,? extends V> function)static <T, V> FastListMultimap<V,T>ListIterate. groupBy(List<T> list, Function<? super T,? extends V> function)static <T, V> FastListMultimap<V,T>ArrayIterate. groupByEach(T[] array, Function<? super T,? extends Iterable<V>> function)static <T, V> FastListMultimap<V,T>ArrayListIterate. groupByEach(ArrayList<T> list, Function<? super T,? extends Iterable<V>> function)static <T, V> FastListMultimap<V,T>ListIterate. groupByEach(List<T> list, Function<? super T,? extends Iterable<V>> function) -
Uses of FastListMultimap in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return FastListMultimap Modifier and Type Method Description static <T, V> FastListMultimap<V,T>IterableIterate. groupBy(Iterable<T> iterable, Function<? super T,? extends V> function)static <T, V> FastListMultimap<V,T>RandomAccessListIterate. groupBy(List<T> list, Function<? super T,? extends V> function)static <T, V> FastListMultimap<V,T>IterableIterate. groupByEach(Iterable<T> iterable, Function<? super T,? extends Iterable<V>> function)static <T, V> FastListMultimap<V,T>RandomAccessListIterate. groupByEach(List<T> list, Function<? super T,? extends Iterable<V>> function)