Uses of Interface
org.eclipse.collections.api.RichIterable
Packages that use RichIterable
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for Bag API.
This package contains interfaces for SortedBag API.
This package contains interfaces for BiMap API.
This package contains factory API for creating instances of type
ListIterable.This package contains interfaces for list API which enhance the performance and functionality of
List.This package contains interfaces for map API which enhance the performance and functionality of
MapThis package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains mutable and immutable sorted map interfaces.
This package contains interfaces for
Multimap.This package contains interfaces for
BagMultimap.This package contains interfaces for
ListMultimap.This package contains interfaces for
SetMultimap.This package contains interfaces for
SortedBagMultimap.This package contains interfaces for
SortedSetMultimap.This package contains interfaces for
PartitionIterable.This package contains interfaces for set API which enhance the performance and functionality of
Set.This package contains interfaces for sorted set API.
This package contains interfaces for stack API.
-
Uses of RichIterable in org.eclipse.collections.api
Subinterfaces of RichIterable in org.eclipse.collections.apiModifier and TypeInterfaceDescriptioninterfaceLazyIterable<T>A LazyIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc.Methods in org.eclipse.collections.api that return RichIterableModifier and TypeMethodDescriptiondefault RichIterable<BooleanIterable>BooleanIterable.chunk(int size) Partitions elements in fixed size chunks.default RichIterable<ByteIterable>ByteIterable.chunk(int size) Partitions elements in fixed size chunks.default RichIterable<CharIterable>CharIterable.chunk(int size) Partitions elements in fixed size chunks.default RichIterable<DoubleIterable>DoubleIterable.chunk(int size) Partitions elements in fixed size chunks.default RichIterable<FloatIterable>FloatIterable.chunk(int size) Partitions elements in fixed size chunks.default RichIterable<IntIterable>IntIterable.chunk(int size) Partitions elements in fixed size chunks.default RichIterable<LongIterable>LongIterable.chunk(int size) Partitions elements in fixed size chunks.RichIterable.chunk(int size) Partitions elements in fixed size chunks.default RichIterable<ShortIterable>ShortIterable.chunk(int size) Partitions elements in fixed size chunks.<V> RichIterable<V>BooleanIterable.collect(BooleanToObjectFunction<? extends V> function) Returns a new collection with the results of applying the specified function on each element of the source collection.<V> RichIterable<V>ByteIterable.collect(ByteToObjectFunction<? extends V> function) Returns a new collection with the results of applying the specified function on each element of the source collection.<V> RichIterable<V>CharIterable.collect(CharToObjectFunction<? extends V> function) Returns a new collection with the results of applying the specified function on each element of the source collection.<V> RichIterable<V>DoubleIterable.collect(DoubleToObjectFunction<? extends V> function) Returns a new collection with the results of applying the specified function on each element of the source collection.<V> RichIterable<V>FloatIterable.collect(FloatToObjectFunction<? extends V> function) Returns a new collection with the results of applying the specified function on each element of the source collection.<V> RichIterable<V>IntIterable.collect(IntToObjectFunction<? extends V> function) Returns a new collection with the results of applying the specified function on each element of the source collection.<V> RichIterable<V>LongIterable.collect(LongToObjectFunction<? extends V> function) Returns a new collection with the results of applying the specified function on each element of the source collection.<V> RichIterable<V>Returns a new collection with the results of applying the specified function on each element of the source collection.<V> RichIterable<V>ShortIterable.collect(ShortToObjectFunction<? extends V> function) Returns a new collection with the results of applying the specified function on each element of the source collection.<V> RichIterable<V>Returns a new collection with the results of applying the specified function on each element of the source collection, but only for those elements which return true upon evaluation of the predicate.<P,V> RichIterable<V> RichIterable.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) Same ascollect(Function)with aFunction2and specified parameter which is passed to the block.<V> RichIterable<V>RichIterable.flatCollect(Function<? super T, ? extends Iterable<V>> function) flatCollectis a special case ofcollect(Function).default <P,V> RichIterable<V> RichIterable.flatCollectWith(Function2<? super T, ? super P, ? extends Iterable<V>> function, P parameter) Same as flatCollect, only with a Function2 that is passed an extra parameter.Returns all elements of the source collection that return false when evaluating of the predicate.<P> RichIterable<T>RichIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) Similar toreject(Predicate), except with an evaluation parameter for the second generic argument inPredicate2.Returns all elements of the source collection that return true when evaluating the predicate.<S> RichIterable<S>RichIterable.selectInstancesOf(Class<S> clazz) Returns all elements of the source collection that are instances of the Classclazz.<P> RichIterable<T>RichIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) Similar toselect(Predicate), except with an evaluation parameter for the second generic argument inPredicate2.Executes the Procedure for each element in the iterable and returnsthis.<S> RichIterable<Pair<T,S>> Deprecated.in 6.0.RichIterable.zipWithIndex()Deprecated.in 6.0.Methods in org.eclipse.collections.api that return types with arguments of type RichIterable -
Uses of RichIterable in org.eclipse.collections.api.bag
Subinterfaces of RichIterable in org.eclipse.collections.api.bagModifier and TypeInterfaceDescriptioninterfaceBag<T>A Bag is a Collection whose elements are unordered and may contain duplicate entries.interfaceImmutableBag<T>interfaceinterfaceA MultiReaderBag provides thread-safe iteration for a bag through methodswithReadLockAndDelegate()andwithWriteLockAndDelegate().interfaceMutableBag<T>A MutableBag is a Collection whose elements are unordered and may contain duplicate entries.interfaceinterfaceUnsortedBag<T>Methods in org.eclipse.collections.api.bag that return RichIterableModifier and TypeMethodDescription<V> RichIterable<V>Bag.collectWithOccurrences(ObjectIntToObjectFunction<? super T, ? extends V> function) Iterates over the unique elements and their occurrences and collects the results of applying the specified function.<V> RichIterable<V>MutableBagIterable.collectWithOccurrences(ObjectIntToObjectFunction<? super T, ? extends V> function) default RichIterable<T>Bag.distinctView()Returns an unmodifiable view on the distinct elements with the same complexity as the Bag implementation. -
Uses of RichIterable in org.eclipse.collections.api.bag.sorted
Subinterfaces of RichIterable in org.eclipse.collections.api.bag.sortedModifier and TypeInterfaceDescriptioninterfaceImmutableSortedBag is the non-modifiable equivalent interface toMutableSortedBag.interfaceinterfaceSortedBag<T>An Iterable whose elements are sorted by some comparator or their natural ordering and may contain duplicate entries. -
Uses of RichIterable in org.eclipse.collections.api.bimap
Subinterfaces of RichIterable in org.eclipse.collections.api.bimapModifier and TypeInterfaceDescriptioninterfaceBiMap<K,V> A map that allows users to look up key-value pairs from either direction.interfaceImmutableBiMap<K,V> ABiMapwhose contents cannot be altered after initialization.interfaceMutableBiMap<K,V> ABiMapwhose contents can be altered after initialization. -
Uses of RichIterable in org.eclipse.collections.api.collection
Subinterfaces of RichIterable in org.eclipse.collections.api.collectionModifier and TypeInterfaceDescriptioninterfaceA FixedSizeCollection is a collection that may be mutated, but cannot grow or shrink in size.interfaceImmutableCollection is the common interface between ImmutableList, ImmutableSet and ImmutableBag.interfaceMutableCollection is an interface which extends the base java.util.Collection interface and adds several internal iterator methods, from the Smalltalk Collection protocol. -
Uses of RichIterable in org.eclipse.collections.api.factory.list
Methods in org.eclipse.collections.api.factory.list with parameters of type RichIterableModifier and TypeMethodDescriptiondefault <T> ImmutableList<T>ImmutableListFactory.withAllSorted(Comparator<? super T> comparator, RichIterable<? extends T> items) default <T> ImmutableList<T>ImmutableListFactory.withAllSorted(RichIterable<? extends T> items) -
Uses of RichIterable in org.eclipse.collections.api.list
Subinterfaces of RichIterable in org.eclipse.collections.api.listModifier and TypeInterfaceDescriptioninterfaceA FixedSizeList is a list that may be mutated, but cannot grow or shrink in size.interfaceImmutableList is the non-modifiable equivalent interface toMutableList.interfaceListIterable<T>An iterable whose items are ordered and may be accessed directly by index.interfaceA MultiReaderList provides thread-safe iteration for a list through methodswithReadLockAndDelegate()andwithWriteLockAndDelegate().interfaceMutableList<T>A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Uses of RichIterable in org.eclipse.collections.api.map
Subinterfaces of RichIterable in org.eclipse.collections.api.mapModifier and TypeInterfaceDescriptioninterfaceConcurrentMutableMap<K,V> A ConcurrentMutableMap provides an api which combines and supports both MutableMap and ConcurrentMap.interfaceFixedSizeMap<K,V> A FixedSizeMap is a map that may be mutated, but cannot grow or shrink in size.interfaceImmutableMap<K,V> An ImmutableMap is different from a JCF Map because it has no mutating methods.interfaceImmutableMapIterable<K,V> interfaceImmutableOrderedMap<K,V> interfaceMapIterable<K,V> A Read-only Map API, with the minor exception inherited from java.lang.Iterable.interfaceMutableMap<K,V> A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.interfaceMutableMapIterable<K,V> interfaceMutableOrderedMap<K,V> interfaceOrderedMap<K,V> A map whose keys are ordered but not necessarily sorted, for example a linked hash map.interfaceUnsortedMapIterable<K,V> An iterable Map whose elements are unsorted.Methods in org.eclipse.collections.api.map that return RichIterableModifier and TypeMethodDescriptionMapIterable.keysView()Returns an unmodifiable lazy iterable wrapped around the keySet for the map.RichIterable<Pair<K,V>> MapIterable.keyValuesView()Returns an unmodifiable lazy iterable of key/value pairs wrapped around the entrySet for the map.MapIterable.valuesView()Returns an unmodifiable lazy iterable wrapped around the values for the map. -
Uses of RichIterable in org.eclipse.collections.api.map.primitive
Subinterfaces of RichIterable in org.eclipse.collections.api.map.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitiveObjectMap.stg.interfaceThis file was automatically generated from template file primitiveObjectMap.stg.interfaceThis file was automatically generated from template file primitiveObjectMap.stg.interfaceThis file was automatically generated from template file primitiveObjectMap.stg.interfaceThis file was automatically generated from template file immutablePrimitiveObjectMap.stg.interfaceThis file was automatically generated from template file immutablePrimitiveObjectMap.stg.interfaceThis file was automatically generated from template file immutablePrimitiveObjectMap.stg.interfaceThis file was automatically generated from template file immutablePrimitiveObjectMap.stg.interfaceThis file was automatically generated from template file immutablePrimitiveObjectMap.stg.interfaceThis file was automatically generated from template file immutablePrimitiveObjectMap.stg.interfaceinterfaceThis file was automatically generated from template file immutablePrimitiveObjectMap.stg.interfaceIntObjectMap<V>This file was automatically generated from template file primitiveObjectMap.stg.interfaceThis file was automatically generated from template file primitiveObjectMap.stg.interfaceThis file was automatically generated from template file mutablePrimitiveObjectMap.stg.interfaceThis file was automatically generated from template file mutablePrimitiveObjectMap.stg.interfaceThis file was automatically generated from template file mutablePrimitiveObjectMap.stg.interfaceThis file was automatically generated from template file mutablePrimitiveObjectMap.stg.interfaceThis file was automatically generated from template file mutablePrimitiveObjectMap.stg.interfaceThis file was automatically generated from template file mutablePrimitiveObjectMap.stg.interfaceinterfaceThis file was automatically generated from template file mutablePrimitiveObjectMap.stg.interfaceinterfaceThis file was automatically generated from template file primitiveObjectMap.stg.Methods in org.eclipse.collections.api.map.primitive that return RichIterableModifier and TypeMethodDescriptionByteBooleanMap.keyValuesView()Returns a view of the key/value pairs in this map.ByteByteMap.keyValuesView()Returns a view of the key/value pairs in this map.ByteCharMap.keyValuesView()Returns a view of the key/value pairs in this map.ByteDoubleMap.keyValuesView()Returns a view of the key/value pairs in this map.ByteFloatMap.keyValuesView()Returns a view of the key/value pairs in this map.ByteIntMap.keyValuesView()Returns a view of the key/value pairs in this map.ByteLongMap.keyValuesView()Returns a view of the key/value pairs in this map.ByteObjectMap.keyValuesView()Returns a view of the key/value pairs in this map.ByteShortMap.keyValuesView()Returns a view of the key/value pairs in this map.CharBooleanMap.keyValuesView()Returns a view of the key/value pairs in this map.CharByteMap.keyValuesView()Returns a view of the key/value pairs in this map.CharCharMap.keyValuesView()Returns a view of the key/value pairs in this map.CharDoubleMap.keyValuesView()Returns a view of the key/value pairs in this map.CharFloatMap.keyValuesView()Returns a view of the key/value pairs in this map.CharIntMap.keyValuesView()Returns a view of the key/value pairs in this map.CharLongMap.keyValuesView()Returns a view of the key/value pairs in this map.CharObjectMap.keyValuesView()Returns a view of the key/value pairs in this map.CharShortMap.keyValuesView()Returns a view of the key/value pairs in this map.DoubleBooleanMap.keyValuesView()Returns a view of the key/value pairs in this map.DoubleByteMap.keyValuesView()Returns a view of the key/value pairs in this map.DoubleCharMap.keyValuesView()Returns a view of the key/value pairs in this map.DoubleDoubleMap.keyValuesView()Returns a view of the key/value pairs in this map.DoubleFloatMap.keyValuesView()Returns a view of the key/value pairs in this map.DoubleIntMap.keyValuesView()Returns a view of the key/value pairs in this map.DoubleLongMap.keyValuesView()Returns a view of the key/value pairs in this map.DoubleObjectMap.keyValuesView()Returns a view of the key/value pairs in this map.DoubleShortMap.keyValuesView()Returns a view of the key/value pairs in this map.FloatBooleanMap.keyValuesView()Returns a view of the key/value pairs in this map.FloatByteMap.keyValuesView()Returns a view of the key/value pairs in this map.FloatCharMap.keyValuesView()Returns a view of the key/value pairs in this map.FloatDoubleMap.keyValuesView()Returns a view of the key/value pairs in this map.FloatFloatMap.keyValuesView()Returns a view of the key/value pairs in this map.FloatIntMap.keyValuesView()Returns a view of the key/value pairs in this map.FloatLongMap.keyValuesView()Returns a view of the key/value pairs in this map.FloatObjectMap.keyValuesView()Returns a view of the key/value pairs in this map.FloatShortMap.keyValuesView()Returns a view of the key/value pairs in this map.IntBooleanMap.keyValuesView()Returns a view of the key/value pairs in this map.IntByteMap.keyValuesView()Returns a view of the key/value pairs in this map.IntCharMap.keyValuesView()Returns a view of the key/value pairs in this map.IntDoubleMap.keyValuesView()Returns a view of the key/value pairs in this map.IntFloatMap.keyValuesView()Returns a view of the key/value pairs in this map.IntIntMap.keyValuesView()Returns a view of the key/value pairs in this map.IntLongMap.keyValuesView()Returns a view of the key/value pairs in this map.IntObjectMap.keyValuesView()Returns a view of the key/value pairs in this map.IntShortMap.keyValuesView()Returns a view of the key/value pairs in this map.LongBooleanMap.keyValuesView()Returns a view of the key/value pairs in this map.LongByteMap.keyValuesView()Returns a view of the key/value pairs in this map.LongCharMap.keyValuesView()Returns a view of the key/value pairs in this map.LongDoubleMap.keyValuesView()Returns a view of the key/value pairs in this map.LongFloatMap.keyValuesView()Returns a view of the key/value pairs in this map.LongIntMap.keyValuesView()Returns a view of the key/value pairs in this map.LongLongMap.keyValuesView()Returns a view of the key/value pairs in this map.LongObjectMap.keyValuesView()Returns a view of the key/value pairs in this map.LongShortMap.keyValuesView()Returns a view of the key/value pairs in this map.ObjectBooleanMap.keyValuesView()Returns a view of the key/value pairs in this map.ObjectByteMap.keyValuesView()Returns a view of the key/value pairs in this map.ObjectCharMap.keyValuesView()Returns a view of the key/value pairs in this map.ObjectDoubleMap.keyValuesView()Returns a view of the key/value pairs in this map.ObjectFloatMap.keyValuesView()Returns a view of the key/value pairs in this map.ObjectIntMap.keyValuesView()Returns a view of the key/value pairs in this map.ObjectLongMap.keyValuesView()Returns a view of the key/value pairs in this map.ObjectShortMap.keyValuesView()Returns a view of the key/value pairs in this map.ShortBooleanMap.keyValuesView()Returns a view of the key/value pairs in this map.ShortByteMap.keyValuesView()Returns a view of the key/value pairs in this map.ShortCharMap.keyValuesView()Returns a view of the key/value pairs in this map.ShortDoubleMap.keyValuesView()Returns a view of the key/value pairs in this map.ShortFloatMap.keyValuesView()Returns a view of the key/value pairs in this map.ShortIntMap.keyValuesView()Returns a view of the key/value pairs in this map.ShortLongMap.keyValuesView()Returns a view of the key/value pairs in this map.ShortObjectMap.keyValuesView()Returns a view of the key/value pairs in this map.ShortShortMap.keyValuesView()Returns a view of the key/value pairs in this map. -
Uses of RichIterable in org.eclipse.collections.api.map.sorted
Subinterfaces of RichIterable in org.eclipse.collections.api.map.sortedModifier and TypeInterfaceDescriptioninterfaceImmutableSortedMap<K,V> An ImmutableSortedMap is different from a JCF SortedMap because it has no mutating methods.interfaceMutableSortedMap<K,V> A MutableSortedMap is similar to a JCF Map but adds additional useful internal iterator methods.interfaceSortedMapIterable<K,V> An iterable Map whose elements are sorted. -
Uses of RichIterable in org.eclipse.collections.api.multimap
Methods in org.eclipse.collections.api.multimap that return RichIterableModifier and TypeMethodDescriptionReturns a view of all values associated with the given key.Multimap.keyMultiValuePairsView()Returns a lazy view of the pair of a key and a lazy view of the values mapped to that key.Multimap.keysView()Returns a lazy view of the unique keys.RichIterable<Pair<K,V>> Multimap.keyValuePairsView()Returns a lazy view of all the key/value pairs.Multimap.multiValuesView()Returns an unmodifiable view of all the values mapped to each key.MutableMultimap.replaceValues(K key, Iterable<? extends V> values) Multimap.valuesView()Returns a lazy flattened view of all the values.Methods in org.eclipse.collections.api.multimap that return types with arguments of type RichIterableModifier and TypeMethodDescriptionMultimap.keyMultiValuePairsView()Returns a lazy view of the pair of a key and a lazy view of the values mapped to that key.Multimap.multiValuesView()Returns an unmodifiable view of all the values mapped to each key.Multimap.toMap()Returns a newMutableMapof keys from this Multimap to the mapped values as aRichIterable.Method parameters in org.eclipse.collections.api.multimap with type arguments of type RichIterableModifier and TypeMethodDescriptionvoidMultimap.forEachKeyMultiValues(Procedure2<? super K, ? super RichIterable<V>> procedure) Calls theprocedurewith each key-Iterable[value].ImmutableMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) Multimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) Returns all elements of the source multimap that don't satisfy the predicate.<R extends MutableMultimap<K,V>>
RMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate, R target) Same as the reject method but uses the specified target multimap for the results.MutableMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) Multimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) Returns all elements of the source multimap that satisfies the predicate.<R extends MutableMultimap<K,V>>
RMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate, R target) Same as the select method but uses the specified target multimap for the results.MutableMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) -
Uses of RichIterable in org.eclipse.collections.api.multimap.bag
Method parameters in org.eclipse.collections.api.multimap.bag with type arguments of type RichIterableModifier and TypeMethodDescriptionBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableBagIterableMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableBagIterableMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) UnsortedBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) BagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableBagIterableMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableBagIterableMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) UnsortedBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) -
Uses of RichIterable in org.eclipse.collections.api.multimap.list
Method parameters in org.eclipse.collections.api.multimap.list with type arguments of type RichIterableModifier and TypeMethodDescriptionImmutableListMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ListMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableListMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableListMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ListMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableListMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) -
Uses of RichIterable in org.eclipse.collections.api.multimap.ordered
Method parameters in org.eclipse.collections.api.multimap.ordered with type arguments of type RichIterableModifier and TypeMethodDescriptionOrderedIterableMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ReversibleIterableMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SortedIterableMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) OrderedIterableMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ReversibleIterableMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SortedIterableMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) -
Uses of RichIterable in org.eclipse.collections.api.multimap.set
Method parameters in org.eclipse.collections.api.multimap.set with type arguments of type RichIterableModifier and TypeMethodDescriptionImmutableSetIterableMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSetIterableMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) UnsortedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSetIterableMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSetIterableMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) UnsortedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) -
Uses of RichIterable in org.eclipse.collections.api.multimap.sortedbag
Method parameters in org.eclipse.collections.api.multimap.sortedbag with type arguments of type RichIterableModifier and TypeMethodDescriptionImmutableSortedBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSortedBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SortedBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSortedBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSortedBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SortedBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) -
Uses of RichIterable in org.eclipse.collections.api.multimap.sortedset
Method parameters in org.eclipse.collections.api.multimap.sortedset with type arguments of type RichIterableModifier and TypeMethodDescriptionImmutableSortedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSortedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SortedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSortedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSortedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SortedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) -
Uses of RichIterable in org.eclipse.collections.api.ordered
Subinterfaces of RichIterable in org.eclipse.collections.api.orderedModifier and TypeInterfaceDescriptioninterfaceAn OrderedIterable is a RichIterable with some meaningful order, such as insertion order, access order, or sorted order.interfaceA ReversibleIterable is an ordered iterable that you can iterate over forwards or backwards.interfaceA SortedIterable is an ordered iterable where the elements are stored in sorted order defined by a non-strict partial order relation. -
Uses of RichIterable in org.eclipse.collections.api.partition
Methods in org.eclipse.collections.api.partition that return RichIterableModifier and TypeMethodDescriptionPartitionIterable.getRejected()PartitionIterable.getSelected() -
Uses of RichIterable in org.eclipse.collections.api.set
Subinterfaces of RichIterable in org.eclipse.collections.api.setModifier and TypeInterfaceDescriptioninterfaceFixedSizeSet<T>A FixedSizeSet is a set that may be mutated, but cannot grow or shrink in size.interfaceImmutableSet<T>ImmutableSet is the non-modifiable equivalent interface toMutableSet.interfaceinterfaceA MultiReaderSet provides thread-safe iteration for a set through methodswithReadLockAndDelegate()andwithWriteLockAndDelegate().interfaceMutableSet<T>A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.interfaceinterfaceSetIterable<T>A Read-only Set api, with the minor exception inherited from java.lang.Iterable (iterable.iterator().remove()).interfaceAn iterable whose items are unique. -
Uses of RichIterable in org.eclipse.collections.api.set.sorted
Subinterfaces of RichIterable in org.eclipse.collections.api.set.sortedModifier and TypeInterfaceDescriptioninterfaceImmutableSortedSet is the non-modifiable equivalent interface toMutableSortedSet.interfaceA MutableSortedSet is an implementation of a JCF SortedSet which provides methods matching the Smalltalk Collection protocol.interfaceAn iterable whose items are unique and sorted by some comparator or their natural ordering. -
Uses of RichIterable in org.eclipse.collections.api.stack
Subinterfaces of RichIterable in org.eclipse.collections.api.stackModifier and TypeInterfaceDescriptioninterfaceinterfaceMutableStack<T>interfaceStackIterable is a last-in-first-out data structure.