Uses of Class
org.eclipse.collections.impl.multimap.list.FastListMultimap
-
Packages that use FastListMultimap Package Description org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.multimap.bag This package contains implementations of theBagMultimap
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 theListMultimap
interface.org.eclipse.collections.impl.multimap.set.sorted This package contains implementations of theSortedSetMultimap
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 java.lang.Iterable<V>> function)
<V> FastListMultimap<V,T>
ArrayListAdapter. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> FastListMultimap<V,T>
FastList. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> FastListMultimap<V,T>
RandomAccessListAdapter. groupByEach(Function<? super T,? extends java.lang.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(java.lang.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 RichIterable<V>> predicate)
FastListMultimap<K,V>
MultiReaderFastListMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
FastListMultimap<K,V>
SynchronizedPutFastListMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<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 RichIterable<V>> predicate)
FastListMultimap<K,V>
MultiReaderFastListMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
FastListMultimap<K,V>
SynchronizedPutFastListMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<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(java.util.ArrayList<T> list, Function<? super T,? extends V> function)
static <T,V>
FastListMultimap<V,T>ListIterate. groupBy(java.util.List<T> list, Function<? super T,? extends V> function)
static <T,V>
FastListMultimap<V,T>ArrayIterate. groupByEach(T[] array, Function<? super T,? extends java.lang.Iterable<V>> function)
static <T,V>
FastListMultimap<V,T>ArrayListIterate. groupByEach(java.util.ArrayList<T> list, Function<? super T,? extends java.lang.Iterable<V>> function)
static <T,V>
FastListMultimap<V,T>ListIterate. groupByEach(java.util.List<T> list, Function<? super T,? extends java.lang.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(java.lang.Iterable<T> iterable, Function<? super T,? extends V> function)
static <T,V>
FastListMultimap<V,T>RandomAccessListIterate. groupBy(java.util.List<T> list, Function<? super T,? extends V> function)
static <T,V>
FastListMultimap<V,T>IterableIterate. groupByEach(java.lang.Iterable<T> iterable, Function<? super T,? extends java.lang.Iterable<V>> function)
static <T,V>
FastListMultimap<V,T>RandomAccessListIterate. groupByEach(java.util.List<T> list, Function<? super T,? extends java.lang.Iterable<V>> function)
-