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.
This package contains implementations for Eclipse Collections API.
This package contains implementations of the
ImmutableBag interface.This package contains implementations of the
MutableBag interface.This package contains implementations of the mutable primitive bag interfaces.
This package contains implementations of
MutableSortedBag.This package contains implementations of bags with user defined
HashingStrategys.This package contains implementations of the
MutableBiMap interface.This package contains factory implementations for
Function, Predicate, SerializableComparator and Procedure.This package contains abstract implementations of
Procedure and Procedure2.This package contains implementations of the
ImmutableCollection interface.This package contains implementations of the
MutableCollection interface.This package contains implementations of the mutable primitive collection interfaces.
This package contains implementations of the
LazyIterable interface.This package contains implementations of the
Iterator interface.This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of the
ListIterable interface.This package contains implementations of the
FixedSizeList interface.This package contains implementations of the
ImmutableList interface.This package contains implementations of the
MutableList interface.This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the primitive list interfaces.
This package contains implementations of the
MapIterable interface.This package contains implementations of the
ImmutableMap interface.This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableMap interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap interface.This package contains implementations of the
MutableSortedMap interface.This package contains immutable map implementations backed by hashtables that rely on
HashingStrategys provided by
the developer to compute the hashCode and equals for the objects stored in the map.This package contains mutable map implementations backed by hashtables that rely on
HashingStrategys provided by
the developer to compute the hashCode and equals for the objects stored in the map.This package contains implementations of the
Multimap interface.This package contains implementations of the
BagMultimap interface.This package contains implementations of the
ListMultimap interface.This package contains implementations of the
SetMultimap interface.This package contains implementations of the
SortedSetMultimap interface.This package contains implementations of the
SetMultimap interface which use a set with user-defined HashingStrategy as their underlying store for the multiple values of a given key.This package package contains the implementations of
ImmutableSet.This package contains implementations of the immutable primitive set interfaces.
This package package contains implementations of
MutableSet.This package contains implementations of the mutable primitive set interfaces.
This package contains implementations of
MutableSortedSet.This package contains implementations of sets with user defined
HashingStrategys.This package contains implementations of the
MutableStack interface.This package contains implementations of the mutable primitive stack interfaces.
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
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) 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) -
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 than a JCF Map but in that 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 than a JCF SortedMap in that it has no mutating methods, but it shares the read-only protocol of a SortedMap.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 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 of the key/value pairs.Multimap.multiValuesView()Returns an unmodifiable view of all of 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 and a lazy view of the values mapped to that key.Multimap.multiValuesView()Returns an unmodifiable view of all of 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. -
Uses of RichIterable in org.eclipse.collections.impl
Classes in org.eclipse.collections.impl that implement RichIterableModifier and TypeClassDescriptionclassclassA synchronized view of a RichIterable.classAn unmodifiable view of a RichIterable.Methods in org.eclipse.collections.impl with type parameters of type RichIterableModifier and TypeMethodDescriptionstatic <E,RI extends RichIterable<E>>
UnmodifiableRichIterable<E>UnmodifiableRichIterable.of(RI iterable) This method will take a RichIterable and wrap it directly in a UnmodifiableRichIterable.Methods in org.eclipse.collections.impl that return RichIterableModifier and TypeMethodDescriptionUnmodifiableRichIterable.chunk(int size) <V> RichIterable<V><V> RichIterable<V>UnmodifiableRichIterable.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <P,V> RichIterable<V> UnmodifiableRichIterable.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) <V> RichIterable<V>UnmodifiableRichIterable.flatCollect(Function<? super T, ? extends Iterable<V>> function) <P> RichIterable<T>UnmodifiableRichIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <S> RichIterable<S>UnmodifiableRichIterable.selectInstancesOf(Class<S> clazz) <P> RichIterable<T>UnmodifiableRichIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <S> RichIterable<Pair<T,S>> UnmodifiableRichIterable.zipWithIndex()Methods in org.eclipse.collections.impl that return types with arguments of type RichIterableMethods in org.eclipse.collections.impl with parameters of type RichIterableModifier and TypeMethodDescriptionstatic <E> SynchronizedRichIterable<E>SynchronizedRichIterable.of(RichIterable<E> iterable) This method will take a RichIterable and wrap it directly in a SynchronizedRichIterable.static <E> SynchronizedRichIterable<E>SynchronizedRichIterable.of(RichIterable<E> iterable, Object lock) This method will take a RichIterable and wrap it directly in a SynchronizedRichIterable.Constructors in org.eclipse.collections.impl with parameters of type RichIterableModifierConstructorDescription -
Uses of RichIterable in org.eclipse.collections.impl.bag
Classes in org.eclipse.collections.impl.bag that implement RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.bag.immutable
Classes in org.eclipse.collections.impl.bag.immutable that implement RichIterableModifier and TypeClassDescriptionclassclassclassclassMethods in org.eclipse.collections.impl.bag.immutable that return RichIterableMethods in org.eclipse.collections.impl.bag.immutable that return types with arguments of type RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.bag.mutable
Classes in org.eclipse.collections.impl.bag.mutable that implement RichIterableModifier and TypeClassDescriptionclassclassclassclassHashBag<T>A HashBag is a MutableBag which uses a Map as its underlying data store.final classMultiReaderHashBag provides a thread-safe wrapper around a HashBag, using a ReentrantReadWriteLock.classA synchronized view of aMutableBag.classAn unmodifiable view of a bag.Methods in org.eclipse.collections.impl.bag.mutable that return RichIterableModifier and TypeMethodDescriptionAbstractMutableBagIterable.chunk(int size) MultiReaderHashBag.chunk(int size) Methods in org.eclipse.collections.impl.bag.mutable that return types with arguments of type RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive that return RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.bag.sorted.mutable
Classes in org.eclipse.collections.impl.bag.sorted.mutable that implement RichIterableModifier and TypeClassDescriptionclassclassA synchronized view of aMutableSortedBag.classTreeBag<T>A TreeBag is a MutableSortedBag which uses a SortedMap as its underlying data store.classAn unmodifiable view of a SortedBag. -
Uses of RichIterable in org.eclipse.collections.impl.bag.strategy.mutable
Classes in org.eclipse.collections.impl.bag.strategy.mutable that implement RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.bimap
Classes in org.eclipse.collections.impl.bimap that implement RichIterableMethods in org.eclipse.collections.impl.bimap that return RichIterableModifier and TypeMethodDescriptionAbstractBiMap.chunk(int size) AbstractBiMap.keysView()RichIterable<Pair<K,V>> AbstractBiMap.keyValuesView()AbstractBiMap.valuesView()Methods in org.eclipse.collections.impl.bimap that return types with arguments of type RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.bimap.immutable
Classes in org.eclipse.collections.impl.bimap.immutable that implement RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.bimap.mutable
Classes in org.eclipse.collections.impl.bimap.mutable that implement RichIterableModifier and TypeClassDescriptionclassHashBiMap<K,V> AMutableBiMapwhich uses two hash tables as its underlying data store.classSynchronizedBiMap<K,V> classUnmodifiableBiMap<K,V> Methods in org.eclipse.collections.impl.bimap.mutable that return RichIterableModifier and TypeMethodDescriptionUnmodifiableBiMap.chunk(int size) <V1> RichIterable<V1><V1> RichIterable<V1>UnmodifiableBiMap.collectIf(Predicate<? super V> predicate, Function<? super V, ? extends V1> function) <P,V1> RichIterable<V1> UnmodifiableBiMap.collectWith(Function2<? super V, ? super P, ? extends V1> function, P parameter) <V1> RichIterable<V1>UnmodifiableBiMap.flatCollect(Function<? super V, ? extends Iterable<V1>> function) SynchronizedBiMap.keysView()UnmodifiableBiMap.keysView()RichIterable<Pair<K,V>> UnmodifiableBiMap.keyValuesView()SynchronizedBiMap.valuesView()UnmodifiableBiMap.valuesView()Methods in org.eclipse.collections.impl.bimap.mutable that return types with arguments of type RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.block.factory
Methods in org.eclipse.collections.impl.block.factory that return types with arguments of type RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.block.procedure.checked
Methods in org.eclipse.collections.impl.block.procedure.checked with parameters of type RichIterableModifier and TypeMethodDescriptionvoidMultimapKeyValuesSerializingProcedure.safeValue(K key, RichIterable<V> iterable) -
Uses of RichIterable in org.eclipse.collections.impl.collection
Classes in org.eclipse.collections.impl.collection that implement RichIterableMethods in org.eclipse.collections.impl.collection that return RichIterableModifier and TypeMethodDescriptionAbstractSynchronizedRichIterable.chunk(int size) <V> RichIterable<V><V> RichIterable<V>AbstractSynchronizedRichIterable.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <P,V> RichIterable<V> AbstractSynchronizedRichIterable.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) <V> RichIterable<V>AbstractSynchronizedRichIterable.flatCollect(Function<? super T, ? extends Iterable<V>> function) <P> RichIterable<T>AbstractSynchronizedRichIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <S> RichIterable<S>AbstractSynchronizedRichIterable.selectInstancesOf(Class<S> clazz) <P> RichIterable<T>AbstractSynchronizedRichIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <S> RichIterable<Pair<T,S>> AbstractSynchronizedRichIterable.zipWithIndex()Methods in org.eclipse.collections.impl.collection that return types with arguments of type RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.collection.immutable
Classes in org.eclipse.collections.impl.collection.immutable that implement RichIterableMethods in org.eclipse.collections.impl.collection.immutable that return RichIterableMethods in org.eclipse.collections.impl.collection.immutable that return types with arguments of type RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.collection.mutable
Classes in org.eclipse.collections.impl.collection.mutable that implement RichIterableModifier and TypeClassDescriptionclassclassAbstractMultiReaderMutableCollection is an abstraction that provides thread-safe collection behaviors.classclassclassfinal classThis class provides a MutableCollection interface wrapper around a JDK Collections Collection interface instance.classA synchronized view of aMutableCollection.classAn unmodifiable view of a collection.Methods in org.eclipse.collections.impl.collection.mutable that return RichIterableModifier and TypeMethodDescriptionAbstractCollectionAdapter.chunk(int size) AbstractMutableCollection.chunk(int size) AbstractUnmodifiableMutableCollection.chunk(int size) Methods in org.eclipse.collections.impl.collection.mutable that return types with arguments of type RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return RichIterableModifier and TypeMethodDescriptionAbstractSynchronizedBooleanCollection.chunk(int size) AbstractSynchronizedByteCollection.chunk(int size) AbstractSynchronizedCharCollection.chunk(int size) AbstractSynchronizedDoubleCollection.chunk(int size) AbstractSynchronizedFloatCollection.chunk(int size) AbstractSynchronizedIntCollection.chunk(int size) AbstractSynchronizedLongCollection.chunk(int size) AbstractSynchronizedShortCollection.chunk(int size) AbstractUnmodifiableBooleanCollection.chunk(int size) AbstractUnmodifiableByteCollection.chunk(int size) AbstractUnmodifiableCharCollection.chunk(int size) AbstractUnmodifiableDoubleCollection.chunk(int size) AbstractUnmodifiableFloatCollection.chunk(int size) AbstractUnmodifiableIntCollection.chunk(int size) AbstractUnmodifiableLongCollection.chunk(int size) AbstractUnmodifiableShortCollection.chunk(int size) -
Uses of RichIterable in org.eclipse.collections.impl.lazy
Classes in org.eclipse.collections.impl.lazy that implement RichIterableModifier and TypeClassDescriptionclassAbstractLazyIterable provides a base from which deferred iterables such as SelectIterable, RejectIterable and CollectIterable can be derived.classA ChunkIterable is an iterable that partitions a source iterable into fixed size chunks as it iterates.classCollectIterable<T,V> A CollectIterable is an iterable that transforms a source iterable using a function as it iterates.final classclassA DistinctIterable is an iterable that eliminates duplicates from a source iterable as it iterates.classDropIterable<T>Iterates over the elements of the adapted Iterable skipping the first count elements or the full adapted Iterable if the count is non-positive.classIterates over the elements of the adapted Iterable skipping the first elements until the predicate returns false.classFlatCollectIterable<T,V> classA LazyIterableAdapter wraps any iterable with the LazyIterable interface.classA RejectIterable is an iterable that filters a source iterable on a negative condition as it iterates.classA ReverseIterable is an iterable that wraps another iterable and iterates in reverse order.classA SelectIterable is an iterable that filters a source iterable for instances of a Class as it iterates.classA SelectIterable is an iterable that filters a source iterable on a condition as it iterates.classTakeIterable<T>Iterates over the first count elements of the adapted Iterable or the full size of the adapted iterable if the count is greater than the length of the receiver.classIterates over the elements of the adapted Iterable until the predicate returns false.classTapIterable<T>A TapIterable is an iterable that executes a procedure for each element before each iteration.classZipIterable<X,Y> A ZipIterable is an iterable that transforms a source iterable on a condition as it iterates.classA CollectIterable is an iterable that transforms a source iterable on a condition as it iterates.Methods in org.eclipse.collections.impl.lazy that return types with arguments of type RichIterableMethod parameters in org.eclipse.collections.impl.lazy with type arguments of type RichIterableModifier and TypeMethodDescriptionvoidChunkIterable.each(Procedure<? super RichIterable<T>> procedure) -
Uses of RichIterable in org.eclipse.collections.impl.lazy.iterator
Methods in org.eclipse.collections.impl.lazy.iterator that return RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.lazy.parallel
Classes in org.eclipse.collections.impl.lazy.parallel with type parameters of type RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.lazy.primitive
Classes in org.eclipse.collections.impl.lazy.primitive that implement RichIterableModifier and TypeClassDescriptionclassThis file was automatically generated from template file chunkPrimitiveIterable.stg.classThis file was automatically generated from template file chunkPrimitiveIterable.stg.classThis file was automatically generated from template file chunkPrimitiveIterable.stg.classThis file was automatically generated from template file chunkPrimitiveIterable.stg.classThis file was automatically generated from template file chunkPrimitiveIterable.stg.classThis file was automatically generated from template file chunkPrimitiveIterable.stg.classThis file was automatically generated from template file chunkPrimitiveIterable.stg.classThis file was automatically generated from template file chunkPrimitiveIterable.stg.classclassThis file was automatically generated from template file collectPrimitiveToObjectIterable.stg.classThis file was automatically generated from template file collectPrimitiveToObjectIterable.stg.classThis file was automatically generated from template file collectPrimitiveToObjectIterable.stg.classThis file was automatically generated from template file collectPrimitiveToObjectIterable.stg.classThis file was automatically generated from template file collectPrimitiveToObjectIterable.stg.classThis file was automatically generated from template file collectPrimitiveToObjectIterable.stg.classThis file was automatically generated from template file collectPrimitiveToObjectIterable.stg.classThis file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.classThis file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.classThis file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.classThis file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.classThis file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.classThis file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.classThis file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.classThis file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.Methods in org.eclipse.collections.impl.lazy.primitive that return RichIterableModifier and TypeMethodDescriptionAbstractLazyBooleanIterable.chunk(int size) AbstractLazyByteIterable.chunk(int size) AbstractLazyCharIterable.chunk(int size) AbstractLazyDoubleIterable.chunk(int size) AbstractLazyFloatIterable.chunk(int size) AbstractLazyIntIterable.chunk(int size) AbstractLazyLongIterable.chunk(int size) AbstractLazyShortIterable.chunk(int size) -
Uses of RichIterable in org.eclipse.collections.impl.list
Classes in org.eclipse.collections.impl.list that implement RichIterableModifier and TypeClassDescriptionfinal classAn Interval is a range of integers that may be iterated over using a step value. -
Uses of RichIterable in org.eclipse.collections.impl.list.fixed
Classes in org.eclipse.collections.impl.list.fixed that implement RichIterableModifier and TypeClassDescriptionclassclassfinal classArrayAdapter<T>This class provides a MutableList wrapper around an array. -
Uses of RichIterable in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable with parameters of type RichIterableModifier and TypeMethodDescription<T> ImmutableList<T>ImmutableListFactoryImpl.withAllSorted(Comparator<? super T> comparator, RichIterable<? extends T> items) <T> ImmutableList<T>ImmutableListFactoryImpl.withAllSorted(RichIterable<? extends T> items) -
Uses of RichIterable in org.eclipse.collections.impl.list.mutable
Classes in org.eclipse.collections.impl.list.mutable that implement RichIterableModifier and TypeClassDescriptionclassclassfinal classThis class provides a MutableList wrapper around a JDK Collections ArrayList instance.final classCompositeFastList behaves like a list, but is composed of at least one list.classFastList<T>FastList is an attempt to provide the same functionality as ArrayList without the support for concurrent modification exceptions.final classListAdapter<T>This class provides a MutableList wrapper around a JDK Collections List interface instance.final classMultiReadFastList provides a thread-safe wrapper around a FastList, using a ReentrantReadWriteLock.final classThis class provides a MutableList wrapper around a JDK Collections List interface instance.classA synchronized view of aMutableList.classAn unmodifiable view of a list.Methods in org.eclipse.collections.impl.list.mutable that return RichIterableModifier and TypeMethodDescriptionAbstractMutableList.chunk(int size) MultiReaderFastList.chunk(int size) Methods in org.eclipse.collections.impl.list.mutable that return types with arguments of type RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive that return RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.list.primitive
Methods in org.eclipse.collections.impl.list.primitive that return RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.map
Classes in org.eclipse.collections.impl.map that implement RichIterableModifier and TypeClassDescriptionclassAbstractMapIterable<K,V> classA synchronized view of a map.Methods in org.eclipse.collections.impl.map that return RichIterableModifier and TypeMethodDescriptionAbstractMapIterable.chunk(int size) RichIterable<Pair<K,V>> AbstractSynchronizedMapIterable.keyValuesView()Methods in org.eclipse.collections.impl.map that return types with arguments of type RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.map.immutable
Classes in org.eclipse.collections.impl.map.immutable that implement RichIterableMethods in org.eclipse.collections.impl.map.immutable that return RichIterableModifier and TypeMethodDescriptionImmutableUnifiedMap.keysView()RichIterable<Pair<K,V>> ImmutableUnifiedMap.keyValuesView()ImmutableUnifiedMap.valuesView() -
Uses of RichIterable in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement RichIterableModifier and TypeClassDescriptionclassThis file was automatically generated from template file abstractImmutablePrimitiveObjectMap.stg.classThis file was automatically generated from template file abstractImmutablePrimitiveObjectMap.stg.classThis file was automatically generated from template file abstractImmutablePrimitiveObjectMap.stg.classThis file was automatically generated from template file abstractImmutablePrimitiveObjectMap.stg.classThis file was automatically generated from template file abstractImmutablePrimitiveObjectMap.stg.classThis file was automatically generated from template file abstractImmutablePrimitiveObjectMap.stg.classThis file was automatically generated from template file abstractImmutablePrimitiveObjectMap.stg. -
Uses of RichIterable in org.eclipse.collections.impl.map.mutable
Classes in org.eclipse.collections.impl.map.mutable that implement RichIterableModifier and TypeClassDescriptionclassAbstractMutableMap<K,V> classfinal classConcurrentHashMap<K,V> classfinal classDeprecated.since 2.0classMapAdapter<K,V> This class provides a MutableMap wrapper around a JDK Collections Map interface instance.classA synchronized view of aMutableMap.classUnifiedMap<K,V> UnifiedMap stores key/value pairs in a single array, where alternate slots are keys and values.classAn unmodifiable view of a map.Methods in org.eclipse.collections.impl.map.mutable that return RichIterableModifier and TypeMethodDescriptionUnmodifiableMutableMap.chunk(int size) AbstractMutableMapIterable.keysView()SynchronizedMutableMap.keysView()UnmodifiableMutableMap.keysView()RichIterable<Pair<K,V>> AbstractMutableMapIterable.keyValuesView()RichIterable<Pair<K,V>> UnmodifiableMutableMap.keyValuesView()AbstractMutableMapIterable.valuesView()SynchronizedMutableMap.valuesView()UnmodifiableMutableMap.valuesView()Methods in org.eclipse.collections.impl.map.mutable that return types with arguments of type RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement RichIterableModifier and TypeClassDescriptionclassThis file was automatically generated from template file primitiveObjectHashMap.stg.classThis file was automatically generated from template file primitiveObjectHashMap.stg.classThis file was automatically generated from template file primitiveObjectHashMap.stg.classThis file was automatically generated from template file primitiveObjectHashMap.stg.classThis file was automatically generated from template file primitiveObjectHashMap.stg.classThis file was automatically generated from template file primitiveObjectHashMap.stg.classThis file was automatically generated from template file primitiveObjectHashMap.stg.classA synchronized view of aMutableByteObjectMap.classA synchronized view of aMutableCharObjectMap.classA synchronized view of aMutableDoubleObjectMap.classA synchronized view of aMutableFloatObjectMap.classA synchronized view of aMutableIntObjectMap.classA synchronized view of aMutableLongObjectMap.classA synchronized view of aMutableShortObjectMap.classThis file was automatically generated from template file unmodifiablePrimitiveObjectMap.stg.classThis file was automatically generated from template file unmodifiablePrimitiveObjectMap.stg.classThis file was automatically generated from template file unmodifiablePrimitiveObjectMap.stg.classThis file was automatically generated from template file unmodifiablePrimitiveObjectMap.stg.classThis file was automatically generated from template file unmodifiablePrimitiveObjectMap.stg.classThis file was automatically generated from template file unmodifiablePrimitiveObjectMap.stg.classThis file was automatically generated from template file unmodifiablePrimitiveObjectMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return RichIterableModifier and TypeMethodDescriptionAbstractMutableBooleanValuesMap.chunk(int size) AbstractMutableByteKeySet.chunk(int size) AbstractMutableByteValuesMap.chunk(int size) AbstractMutableCharKeySet.chunk(int size) AbstractMutableCharValuesMap.chunk(int size) AbstractMutableDoubleKeySet.chunk(int size) AbstractMutableDoubleValuesMap.chunk(int size) AbstractMutableFloatKeySet.chunk(int size) AbstractMutableFloatValuesMap.chunk(int size) AbstractMutableIntKeySet.chunk(int size) AbstractMutableIntValuesMap.chunk(int size) AbstractMutableLongKeySet.chunk(int size) AbstractMutableLongValuesMap.chunk(int size) AbstractMutableShortKeySet.chunk(int size) AbstractMutableShortValuesMap.chunk(int size) ByteObjectHashMap.chunk(int size) CharObjectHashMap.chunk(int size) DoubleObjectHashMap.chunk(int size) FloatObjectHashMap.chunk(int size) IntObjectHashMap.chunk(int size) LongObjectHashMap.chunk(int size) ObjectBooleanHashMap.chunk(int size) ObjectBooleanHashMapWithHashingStrategy.chunk(int size) ObjectByteHashMap.chunk(int size) ObjectByteHashMapWithHashingStrategy.chunk(int size) ObjectCharHashMap.chunk(int size) ObjectCharHashMapWithHashingStrategy.chunk(int size) ObjectDoubleHashMap.chunk(int size) ObjectDoubleHashMapWithHashingStrategy.chunk(int size) ObjectFloatHashMap.chunk(int size) ObjectFloatHashMapWithHashingStrategy.chunk(int size) ObjectIntHashMap.chunk(int size) ObjectIntHashMapWithHashingStrategy.chunk(int size) ObjectLongHashMap.chunk(int size) ObjectLongHashMapWithHashingStrategy.chunk(int size) ObjectShortHashMap.chunk(int size) ObjectShortHashMapWithHashingStrategy.chunk(int size) ShortObjectHashMap.chunk(int size) SynchronizedByteBooleanMap.chunk(int size) SynchronizedByteByteMap.chunk(int size) SynchronizedByteCharMap.chunk(int size) SynchronizedByteDoubleMap.chunk(int size) SynchronizedByteFloatMap.chunk(int size) SynchronizedByteIntMap.chunk(int size) SynchronizedByteLongMap.chunk(int size) SynchronizedByteObjectMap.chunk(int size) SynchronizedByteShortMap.chunk(int size) SynchronizedCharBooleanMap.chunk(int size) SynchronizedCharByteMap.chunk(int size) SynchronizedCharCharMap.chunk(int size) SynchronizedCharDoubleMap.chunk(int size) SynchronizedCharFloatMap.chunk(int size) SynchronizedCharIntMap.chunk(int size) SynchronizedCharLongMap.chunk(int size) SynchronizedCharObjectMap.chunk(int size) SynchronizedCharShortMap.chunk(int size) SynchronizedDoubleBooleanMap.chunk(int size) SynchronizedDoubleByteMap.chunk(int size) SynchronizedDoubleCharMap.chunk(int size) SynchronizedDoubleDoubleMap.chunk(int size) SynchronizedDoubleFloatMap.chunk(int size) SynchronizedDoubleIntMap.chunk(int size) SynchronizedDoubleLongMap.chunk(int size) SynchronizedDoubleObjectMap.chunk(int size) SynchronizedDoubleShortMap.chunk(int size) SynchronizedFloatBooleanMap.chunk(int size) SynchronizedFloatByteMap.chunk(int size) SynchronizedFloatCharMap.chunk(int size) SynchronizedFloatDoubleMap.chunk(int size) SynchronizedFloatFloatMap.chunk(int size) SynchronizedFloatIntMap.chunk(int size) SynchronizedFloatLongMap.chunk(int size) SynchronizedFloatObjectMap.chunk(int size) SynchronizedFloatShortMap.chunk(int size) SynchronizedIntBooleanMap.chunk(int size) SynchronizedIntByteMap.chunk(int size) SynchronizedIntCharMap.chunk(int size) SynchronizedIntDoubleMap.chunk(int size) SynchronizedIntFloatMap.chunk(int size) SynchronizedIntIntMap.chunk(int size) SynchronizedIntLongMap.chunk(int size) SynchronizedIntObjectMap.chunk(int size) SynchronizedIntShortMap.chunk(int size) SynchronizedLongBooleanMap.chunk(int size) SynchronizedLongByteMap.chunk(int size) SynchronizedLongCharMap.chunk(int size) SynchronizedLongDoubleMap.chunk(int size) SynchronizedLongFloatMap.chunk(int size) SynchronizedLongIntMap.chunk(int size) SynchronizedLongLongMap.chunk(int size) SynchronizedLongObjectMap.chunk(int size) SynchronizedLongShortMap.chunk(int size) SynchronizedObjectBooleanMap.chunk(int size) SynchronizedObjectByteMap.chunk(int size) SynchronizedObjectCharMap.chunk(int size) SynchronizedObjectDoubleMap.chunk(int size) SynchronizedObjectFloatMap.chunk(int size) SynchronizedObjectIntMap.chunk(int size) SynchronizedObjectLongMap.chunk(int size) SynchronizedObjectShortMap.chunk(int size) SynchronizedShortBooleanMap.chunk(int size) SynchronizedShortByteMap.chunk(int size) SynchronizedShortCharMap.chunk(int size) SynchronizedShortDoubleMap.chunk(int size) SynchronizedShortFloatMap.chunk(int size) SynchronizedShortIntMap.chunk(int size) SynchronizedShortLongMap.chunk(int size) SynchronizedShortObjectMap.chunk(int size) SynchronizedShortShortMap.chunk(int size) UnmodifiableByteBooleanMap.chunk(int size) UnmodifiableByteByteMap.chunk(int size) UnmodifiableByteCharMap.chunk(int size) UnmodifiableByteDoubleMap.chunk(int size) UnmodifiableByteFloatMap.chunk(int size) UnmodifiableByteIntMap.chunk(int size) UnmodifiableByteLongMap.chunk(int size) UnmodifiableByteObjectMap.chunk(int size) UnmodifiableByteShortMap.chunk(int size) UnmodifiableCharBooleanMap.chunk(int size) UnmodifiableCharByteMap.chunk(int size) UnmodifiableCharCharMap.chunk(int size) UnmodifiableCharDoubleMap.chunk(int size) UnmodifiableCharFloatMap.chunk(int size) UnmodifiableCharIntMap.chunk(int size) UnmodifiableCharLongMap.chunk(int size) UnmodifiableCharObjectMap.chunk(int size) UnmodifiableCharShortMap.chunk(int size) UnmodifiableDoubleBooleanMap.chunk(int size) UnmodifiableDoubleByteMap.chunk(int size) UnmodifiableDoubleCharMap.chunk(int size) UnmodifiableDoubleDoubleMap.chunk(int size) UnmodifiableDoubleFloatMap.chunk(int size) UnmodifiableDoubleIntMap.chunk(int size) UnmodifiableDoubleLongMap.chunk(int size) UnmodifiableDoubleObjectMap.chunk(int size) UnmodifiableDoubleShortMap.chunk(int size) UnmodifiableFloatBooleanMap.chunk(int size) UnmodifiableFloatByteMap.chunk(int size) UnmodifiableFloatCharMap.chunk(int size) UnmodifiableFloatDoubleMap.chunk(int size) UnmodifiableFloatFloatMap.chunk(int size) UnmodifiableFloatIntMap.chunk(int size) UnmodifiableFloatLongMap.chunk(int size) UnmodifiableFloatObjectMap.chunk(int size) UnmodifiableFloatShortMap.chunk(int size) UnmodifiableIntBooleanMap.chunk(int size) UnmodifiableIntByteMap.chunk(int size) UnmodifiableIntCharMap.chunk(int size) UnmodifiableIntDoubleMap.chunk(int size) UnmodifiableIntFloatMap.chunk(int size) UnmodifiableIntIntMap.chunk(int size) UnmodifiableIntLongMap.chunk(int size) UnmodifiableIntObjectMap.chunk(int size) UnmodifiableIntShortMap.chunk(int size) UnmodifiableLongBooleanMap.chunk(int size) UnmodifiableLongByteMap.chunk(int size) UnmodifiableLongCharMap.chunk(int size) UnmodifiableLongDoubleMap.chunk(int size) UnmodifiableLongFloatMap.chunk(int size) UnmodifiableLongIntMap.chunk(int size) UnmodifiableLongLongMap.chunk(int size) UnmodifiableLongObjectMap.chunk(int size) UnmodifiableLongShortMap.chunk(int size) UnmodifiableObjectBooleanMap.chunk(int size) UnmodifiableObjectByteMap.chunk(int size) UnmodifiableObjectCharMap.chunk(int size) UnmodifiableObjectDoubleMap.chunk(int size) UnmodifiableObjectFloatMap.chunk(int size) UnmodifiableObjectIntMap.chunk(int size) UnmodifiableObjectLongMap.chunk(int size) UnmodifiableObjectShortMap.chunk(int size) UnmodifiableShortBooleanMap.chunk(int size) UnmodifiableShortByteMap.chunk(int size) UnmodifiableShortCharMap.chunk(int size) UnmodifiableShortDoubleMap.chunk(int size) UnmodifiableShortFloatMap.chunk(int size) UnmodifiableShortIntMap.chunk(int size) UnmodifiableShortLongMap.chunk(int size) UnmodifiableShortObjectMap.chunk(int size) UnmodifiableShortShortMap.chunk(int size) ByteBooleanHashMap.keyValuesView()ByteByteHashMap.keyValuesView()ByteCharHashMap.keyValuesView()ByteDoubleHashMap.keyValuesView()ByteFloatHashMap.keyValuesView()ByteIntHashMap.keyValuesView()ByteLongHashMap.keyValuesView()ByteObjectHashMap.keyValuesView()ByteShortHashMap.keyValuesView()CharBooleanHashMap.keyValuesView()CharByteHashMap.keyValuesView()CharCharHashMap.keyValuesView()CharDoubleHashMap.keyValuesView()CharFloatHashMap.keyValuesView()CharIntHashMap.keyValuesView()CharLongHashMap.keyValuesView()CharObjectHashMap.keyValuesView()CharShortHashMap.keyValuesView()DoubleBooleanHashMap.keyValuesView()DoubleByteHashMap.keyValuesView()DoubleCharHashMap.keyValuesView()DoubleDoubleHashMap.keyValuesView()DoubleFloatHashMap.keyValuesView()DoubleIntHashMap.keyValuesView()DoubleLongHashMap.keyValuesView()DoubleObjectHashMap.keyValuesView()DoubleShortHashMap.keyValuesView()FloatBooleanHashMap.keyValuesView()FloatByteHashMap.keyValuesView()FloatCharHashMap.keyValuesView()FloatDoubleHashMap.keyValuesView()FloatFloatHashMap.keyValuesView()FloatIntHashMap.keyValuesView()FloatLongHashMap.keyValuesView()FloatObjectHashMap.keyValuesView()FloatShortHashMap.keyValuesView()IntBooleanHashMap.keyValuesView()IntByteHashMap.keyValuesView()IntCharHashMap.keyValuesView()IntDoubleHashMap.keyValuesView()IntFloatHashMap.keyValuesView()IntIntHashMap.keyValuesView()IntLongHashMap.keyValuesView()IntObjectHashMap.keyValuesView()IntShortHashMap.keyValuesView()LongBooleanHashMap.keyValuesView()LongByteHashMap.keyValuesView()LongCharHashMap.keyValuesView()LongDoubleHashMap.keyValuesView()LongFloatHashMap.keyValuesView()LongIntHashMap.keyValuesView()LongLongHashMap.keyValuesView()LongObjectHashMap.keyValuesView()LongShortHashMap.keyValuesView()ObjectBooleanHashMap.keyValuesView()ObjectBooleanHashMapWithHashingStrategy.keyValuesView()ObjectByteHashMap.keyValuesView()ObjectByteHashMapWithHashingStrategy.keyValuesView()ObjectCharHashMap.keyValuesView()ObjectCharHashMapWithHashingStrategy.keyValuesView()ObjectDoubleHashMap.keyValuesView()ObjectDoubleHashMapWithHashingStrategy.keyValuesView()ObjectFloatHashMap.keyValuesView()ObjectFloatHashMapWithHashingStrategy.keyValuesView()ObjectIntHashMap.keyValuesView()ObjectIntHashMapWithHashingStrategy.keyValuesView()ObjectLongHashMap.keyValuesView()ObjectLongHashMapWithHashingStrategy.keyValuesView()ObjectShortHashMap.keyValuesView()ObjectShortHashMapWithHashingStrategy.keyValuesView()ShortBooleanHashMap.keyValuesView()ShortByteHashMap.keyValuesView()ShortCharHashMap.keyValuesView()ShortDoubleHashMap.keyValuesView()ShortFloatHashMap.keyValuesView()ShortIntHashMap.keyValuesView()ShortLongHashMap.keyValuesView()ShortObjectHashMap.keyValuesView()ShortShortHashMap.keyValuesView()SynchronizedByteBooleanMap.keyValuesView()SynchronizedByteByteMap.keyValuesView()SynchronizedByteCharMap.keyValuesView()SynchronizedByteDoubleMap.keyValuesView()SynchronizedByteFloatMap.keyValuesView()SynchronizedByteIntMap.keyValuesView()SynchronizedByteLongMap.keyValuesView()SynchronizedByteObjectMap.keyValuesView()SynchronizedByteShortMap.keyValuesView()SynchronizedCharBooleanMap.keyValuesView()SynchronizedCharByteMap.keyValuesView()SynchronizedCharCharMap.keyValuesView()SynchronizedCharDoubleMap.keyValuesView()SynchronizedCharFloatMap.keyValuesView()SynchronizedCharIntMap.keyValuesView()SynchronizedCharLongMap.keyValuesView()SynchronizedCharObjectMap.keyValuesView()SynchronizedCharShortMap.keyValuesView()SynchronizedDoubleBooleanMap.keyValuesView()SynchronizedDoubleByteMap.keyValuesView()SynchronizedDoubleCharMap.keyValuesView()SynchronizedDoubleDoubleMap.keyValuesView()SynchronizedDoubleFloatMap.keyValuesView()SynchronizedDoubleIntMap.keyValuesView()SynchronizedDoubleLongMap.keyValuesView()SynchronizedDoubleObjectMap.keyValuesView()SynchronizedDoubleShortMap.keyValuesView()SynchronizedFloatBooleanMap.keyValuesView()SynchronizedFloatByteMap.keyValuesView()SynchronizedFloatCharMap.keyValuesView()SynchronizedFloatDoubleMap.keyValuesView()SynchronizedFloatFloatMap.keyValuesView()SynchronizedFloatIntMap.keyValuesView()SynchronizedFloatLongMap.keyValuesView()SynchronizedFloatObjectMap.keyValuesView()SynchronizedFloatShortMap.keyValuesView()SynchronizedIntBooleanMap.keyValuesView()SynchronizedIntByteMap.keyValuesView()SynchronizedIntCharMap.keyValuesView()SynchronizedIntDoubleMap.keyValuesView()SynchronizedIntFloatMap.keyValuesView()SynchronizedIntIntMap.keyValuesView()SynchronizedIntLongMap.keyValuesView()SynchronizedIntObjectMap.keyValuesView()SynchronizedIntShortMap.keyValuesView()SynchronizedLongBooleanMap.keyValuesView()SynchronizedLongByteMap.keyValuesView()SynchronizedLongCharMap.keyValuesView()SynchronizedLongDoubleMap.keyValuesView()SynchronizedLongFloatMap.keyValuesView()SynchronizedLongIntMap.keyValuesView()SynchronizedLongLongMap.keyValuesView()SynchronizedLongObjectMap.keyValuesView()SynchronizedLongShortMap.keyValuesView()SynchronizedObjectBooleanMap.keyValuesView()SynchronizedObjectByteMap.keyValuesView()SynchronizedObjectCharMap.keyValuesView()SynchronizedObjectDoubleMap.keyValuesView()SynchronizedObjectFloatMap.keyValuesView()SynchronizedObjectIntMap.keyValuesView()SynchronizedObjectLongMap.keyValuesView()SynchronizedObjectShortMap.keyValuesView()SynchronizedShortBooleanMap.keyValuesView()SynchronizedShortByteMap.keyValuesView()SynchronizedShortCharMap.keyValuesView()SynchronizedShortDoubleMap.keyValuesView()SynchronizedShortFloatMap.keyValuesView()SynchronizedShortIntMap.keyValuesView()SynchronizedShortLongMap.keyValuesView()SynchronizedShortObjectMap.keyValuesView()SynchronizedShortShortMap.keyValuesView()UnmodifiableByteBooleanMap.keyValuesView()UnmodifiableByteByteMap.keyValuesView()UnmodifiableByteCharMap.keyValuesView()UnmodifiableByteDoubleMap.keyValuesView()UnmodifiableByteFloatMap.keyValuesView()UnmodifiableByteIntMap.keyValuesView()UnmodifiableByteLongMap.keyValuesView()UnmodifiableByteObjectMap.keyValuesView()UnmodifiableByteShortMap.keyValuesView()UnmodifiableCharBooleanMap.keyValuesView()UnmodifiableCharByteMap.keyValuesView()UnmodifiableCharCharMap.keyValuesView()UnmodifiableCharDoubleMap.keyValuesView()UnmodifiableCharFloatMap.keyValuesView()UnmodifiableCharIntMap.keyValuesView()UnmodifiableCharLongMap.keyValuesView()UnmodifiableCharObjectMap.keyValuesView()UnmodifiableCharShortMap.keyValuesView()UnmodifiableDoubleBooleanMap.keyValuesView()UnmodifiableDoubleByteMap.keyValuesView()UnmodifiableDoubleCharMap.keyValuesView()UnmodifiableDoubleDoubleMap.keyValuesView()UnmodifiableDoubleFloatMap.keyValuesView()UnmodifiableDoubleIntMap.keyValuesView()UnmodifiableDoubleLongMap.keyValuesView()UnmodifiableDoubleObjectMap.keyValuesView()UnmodifiableDoubleShortMap.keyValuesView()UnmodifiableFloatBooleanMap.keyValuesView()UnmodifiableFloatByteMap.keyValuesView()UnmodifiableFloatCharMap.keyValuesView()UnmodifiableFloatDoubleMap.keyValuesView()UnmodifiableFloatFloatMap.keyValuesView()UnmodifiableFloatIntMap.keyValuesView()UnmodifiableFloatLongMap.keyValuesView()UnmodifiableFloatObjectMap.keyValuesView()UnmodifiableFloatShortMap.keyValuesView()UnmodifiableIntBooleanMap.keyValuesView()UnmodifiableIntByteMap.keyValuesView()UnmodifiableIntCharMap.keyValuesView()UnmodifiableIntDoubleMap.keyValuesView()UnmodifiableIntFloatMap.keyValuesView()UnmodifiableIntIntMap.keyValuesView()UnmodifiableIntLongMap.keyValuesView()UnmodifiableIntObjectMap.keyValuesView()UnmodifiableIntShortMap.keyValuesView()UnmodifiableLongBooleanMap.keyValuesView()UnmodifiableLongByteMap.keyValuesView()UnmodifiableLongCharMap.keyValuesView()UnmodifiableLongDoubleMap.keyValuesView()UnmodifiableLongFloatMap.keyValuesView()UnmodifiableLongIntMap.keyValuesView()UnmodifiableLongLongMap.keyValuesView()UnmodifiableLongObjectMap.keyValuesView()UnmodifiableLongShortMap.keyValuesView()UnmodifiableObjectBooleanMap.keyValuesView()UnmodifiableObjectByteMap.keyValuesView()UnmodifiableObjectCharMap.keyValuesView()UnmodifiableObjectDoubleMap.keyValuesView()UnmodifiableObjectFloatMap.keyValuesView()UnmodifiableObjectIntMap.keyValuesView()UnmodifiableObjectLongMap.keyValuesView()UnmodifiableObjectShortMap.keyValuesView()UnmodifiableShortBooleanMap.keyValuesView()UnmodifiableShortByteMap.keyValuesView()UnmodifiableShortCharMap.keyValuesView()UnmodifiableShortDoubleMap.keyValuesView()UnmodifiableShortFloatMap.keyValuesView()UnmodifiableShortIntMap.keyValuesView()UnmodifiableShortLongMap.keyValuesView()UnmodifiableShortObjectMap.keyValuesView()UnmodifiableShortShortMap.keyValuesView()Methods in org.eclipse.collections.impl.map.mutable.primitive that return types with arguments of type RichIterableModifier and TypeMethodDescriptionByteObjectHashMap.chunk(int size) CharObjectHashMap.chunk(int size) DoubleObjectHashMap.chunk(int size) FloatObjectHashMap.chunk(int size) IntObjectHashMap.chunk(int size) LongObjectHashMap.chunk(int size) ShortObjectHashMap.chunk(int size) SynchronizedByteObjectMap.chunk(int size) SynchronizedCharObjectMap.chunk(int size) SynchronizedDoubleObjectMap.chunk(int size) SynchronizedFloatObjectMap.chunk(int size) SynchronizedIntObjectMap.chunk(int size) SynchronizedLongObjectMap.chunk(int size) SynchronizedShortObjectMap.chunk(int size) UnmodifiableByteObjectMap.chunk(int size) UnmodifiableCharObjectMap.chunk(int size) UnmodifiableDoubleObjectMap.chunk(int size) UnmodifiableFloatObjectMap.chunk(int size) UnmodifiableIntObjectMap.chunk(int size) UnmodifiableLongObjectMap.chunk(int size) UnmodifiableShortObjectMap.chunk(int size) -
Uses of RichIterable in org.eclipse.collections.impl.map.ordered.mutable
Classes in org.eclipse.collections.impl.map.ordered.mutable that implement RichIterableModifier and TypeClassDescriptionclassOrderedMapAdapter<K,V> classAn unmodifiable view of a map.Methods in org.eclipse.collections.impl.map.ordered.mutable that return RichIterableModifier and TypeMethodDescriptionUnmodifiableMutableOrderedMap.chunk(int size) OrderedMapAdapter.keysView()UnmodifiableMutableOrderedMap.keysView()RichIterable<Pair<K,V>> OrderedMapAdapter.keyValuesView()RichIterable<Pair<K,V>> UnmodifiableMutableOrderedMap.keyValuesView()OrderedMapAdapter.valuesView()UnmodifiableMutableOrderedMap.valuesView()Methods in org.eclipse.collections.impl.map.ordered.mutable that return types with arguments of type RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.map.sorted.immutable
Classes in org.eclipse.collections.impl.map.sorted.immutable that implement RichIterableMethods in org.eclipse.collections.impl.map.sorted.immutable that return RichIterableModifier and TypeMethodDescriptionImmutableTreeMap.keysView()RichIterable<Pair<K,V>> ImmutableTreeMap.keyValuesView()ImmutableTreeMap.valuesView() -
Uses of RichIterable in org.eclipse.collections.impl.map.sorted.mutable
Classes in org.eclipse.collections.impl.map.sorted.mutable that implement RichIterableModifier and TypeClassDescriptionclassclassSortedMapAdapter<K,V> This class provides a MutableSortedMap wrapper around a JDK Collections SortedMap interface instance.classA synchronized view of a SortedMap.classTreeSortedMap<K,V> classUnmodifiableTreeMap<K,V> An unmodifiable view of a map.Methods in org.eclipse.collections.impl.map.sorted.mutable that return RichIterableModifier and TypeMethodDescriptionUnmodifiableTreeMap.chunk(int size) SynchronizedSortedMap.keysView()UnmodifiableTreeMap.keysView()RichIterable<Pair<K,V>> UnmodifiableTreeMap.keyValuesView()SynchronizedSortedMap.valuesView()UnmodifiableTreeMap.valuesView()Methods in org.eclipse.collections.impl.map.sorted.mutable that return types with arguments of type RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.map.strategy.immutable
Classes in org.eclipse.collections.impl.map.strategy.immutable that implement RichIterableMethods in org.eclipse.collections.impl.map.strategy.immutable that return RichIterableModifier and TypeMethodDescriptionImmutableUnifiedMapWithHashingStrategy.keysView()RichIterable<Pair<K,V>> ImmutableUnifiedMapWithHashingStrategy.keyValuesView()ImmutableUnifiedMapWithHashingStrategy.valuesView() -
Uses of RichIterable in org.eclipse.collections.impl.map.strategy.mutable
Classes in org.eclipse.collections.impl.map.strategy.mutable that implement RichIterableModifier and TypeClassDescriptionclassUnifiedMapWithHashingStrategy stores key/value pairs in a single array, where alternate slots are keys and values. -
Uses of RichIterable in org.eclipse.collections.impl.multimap
Classes in org.eclipse.collections.impl.multimap with type parameters of type RichIterableModifier and TypeClassDescriptionclassAbstractMultimap<K,V, C extends RichIterable<V>> classImmutableMultimapSerializationProxy<K,V, R extends RichIterable<V>> Methods in org.eclipse.collections.impl.multimap that return RichIterableModifier and TypeMethodDescriptionAbstractMultimap.keyMultiValuePairsView()AbstractSynchronizedMultimap.keyMultiValuePairsView()AbstractMultimap.keysView()AbstractSynchronizedMultimap.keysView()RichIterable<Pair<K,V>> AbstractMultimap.keyValuePairsView()RichIterable<Pair<K,V>> AbstractSynchronizedMultimap.keyValuePairsView()AbstractMultimap.multiValuesView()AbstractSynchronizedMultimap.multiValuesView()AbstractMultimap.valuesView()AbstractSynchronizedMultimap.valuesView()Methods in org.eclipse.collections.impl.multimap that return types with arguments of type RichIterableModifier and TypeMethodDescriptionAbstractMultimap.keyMultiValuePairsView()AbstractSynchronizedMultimap.keyMultiValuePairsView()AbstractMultimap.multiValuesView()AbstractSynchronizedMultimap.multiValuesView()AbstractImmutableMultimap.toMap()AbstractMutableMultimap.toMap()AbstractSynchronizedMultimap.toMap()Method parameters in org.eclipse.collections.impl.multimap with type arguments of type RichIterableModifier and TypeMethodDescriptionvoidAbstractMultimap.forEachKeyMultiValues(Procedure2<? super K, ? super RichIterable<V>> procedure) voidAbstractSynchronizedMultimap.forEachKeyMultiValues(Procedure2<? super K, ? super RichIterable<V>> procedure) <R extends MutableMultimap<K,V>>
RAbstractMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate, R target) <R extends MutableMultimap<K,V>>
RAbstractSynchronizedMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate, R target) <R extends MutableMultimap<K,V>>
RAbstractMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate, R target) <R extends MutableMultimap<K,V>>
RAbstractSynchronizedMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate, R target) -
Uses of RichIterable in org.eclipse.collections.impl.multimap.bag
Method parameters in org.eclipse.collections.impl.multimap.bag with type arguments of type RichIterableModifier and TypeMethodDescriptionHashBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableBagMultimapImpl.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MultiReaderHashBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedPutHashBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) TreeBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) Deprecated.HashBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableBagMultimapImpl.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MultiReaderHashBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedPutHashBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) TreeBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) Deprecated. -
Uses of RichIterable in org.eclipse.collections.impl.multimap.bag.sorted
Method parameters in org.eclipse.collections.impl.multimap.bag.sorted with type arguments of type RichIterableModifier and TypeMethodDescriptionTreeBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) Deprecated.TreeBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) Deprecated. -
Uses of RichIterable in org.eclipse.collections.impl.multimap.bag.sorted.immutable
Method parameters in org.eclipse.collections.impl.multimap.bag.sorted.immutable with type arguments of type RichIterableModifier and TypeMethodDescriptionImmutableSortedBagMultimapImpl.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSortedBagMultimapImpl.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) -
Uses of RichIterable in org.eclipse.collections.impl.multimap.bag.sorted.mutable
Method parameters in org.eclipse.collections.impl.multimap.bag.sorted.mutable with type arguments of type RichIterableModifier and TypeMethodDescriptionSynchronizedSortedBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) TreeBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedSortedBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) TreeBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) -
Uses of RichIterable in org.eclipse.collections.impl.multimap.bag.strategy
Method parameters in org.eclipse.collections.impl.multimap.bag.strategy with type arguments of type RichIterableModifier and TypeMethodDescriptionHashBagMultimapWithHashingStrategy.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) HashBagMultimapWithHashingStrategy.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) -
Uses of RichIterable in org.eclipse.collections.impl.multimap.list
Method parameters in org.eclipse.collections.impl.multimap.list with type arguments of type RichIterableModifier and TypeMethodDescriptionFastListMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableListMultimapImpl.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MultiReaderFastListMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedListMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedPutFastListMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) FastListMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableListMultimapImpl.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MultiReaderFastListMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedListMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedPutFastListMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) -
Uses of RichIterable in org.eclipse.collections.impl.multimap.set
Method parameters in org.eclipse.collections.impl.multimap.set with type arguments of type RichIterableModifier and TypeMethodDescriptionImmutableSetMultimapImpl.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MultiReaderUnifiedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedPutUnifiedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) UnifiedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSetMultimapImpl.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MultiReaderUnifiedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedPutUnifiedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) UnifiedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) -
Uses of RichIterable in org.eclipse.collections.impl.multimap.set.sorted
Method parameters in org.eclipse.collections.impl.multimap.set.sorted with type arguments of type RichIterableModifier and TypeMethodDescriptionImmutableSortedSetMultimapImpl.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedPutTreeSortedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedSortedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) TreeSortedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSortedSetMultimapImpl.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedPutTreeSortedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedSortedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) TreeSortedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) -
Uses of RichIterable in org.eclipse.collections.impl.multimap.set.strategy
Method parameters in org.eclipse.collections.impl.multimap.set.strategy with type arguments of type RichIterableModifier and TypeMethodDescriptionUnifiedSetWithHashingStrategyMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) UnifiedSetWithHashingStrategyMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) -
Uses of RichIterable in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return RichIterableModifier and TypeMethodDescriptionSynchronizedBooleanIterable.chunk(int size) SynchronizedByteIterable.chunk(int size) SynchronizedCharIterable.chunk(int size) SynchronizedDoubleIterable.chunk(int size) SynchronizedFloatIterable.chunk(int size) SynchronizedIntIterable.chunk(int size) SynchronizedLongIterable.chunk(int size) SynchronizedShortIterable.chunk(int size) <V> RichIterable<V>SynchronizedBooleanIterable.collect(BooleanToObjectFunction<? extends V> function) <V> RichIterable<V>SynchronizedByteIterable.collect(ByteToObjectFunction<? extends V> function) <V> RichIterable<V>SynchronizedCharIterable.collect(CharToObjectFunction<? extends V> function) <V> RichIterable<V>SynchronizedDoubleIterable.collect(DoubleToObjectFunction<? extends V> function) <V> RichIterable<V>SynchronizedFloatIterable.collect(FloatToObjectFunction<? extends V> function) <V> RichIterable<V>SynchronizedIntIterable.collect(IntToObjectFunction<? extends V> function) <V> RichIterable<V>SynchronizedLongIterable.collect(LongToObjectFunction<? extends V> function) <V> RichIterable<V>SynchronizedShortIterable.collect(ShortToObjectFunction<? extends V> function) -
Uses of RichIterable in org.eclipse.collections.impl.set
Classes in org.eclipse.collections.impl.set that implement RichIterableMethods in org.eclipse.collections.impl.set that return RichIterableMethods in org.eclipse.collections.impl.set that return types with arguments of type RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.set.immutable
Classes in org.eclipse.collections.impl.set.immutable that implement RichIterableModifier and TypeClassDescriptionclassThis class is the parent class for all ImmutableSets. -
Uses of RichIterable in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return RichIterableModifier and TypeMethodDescriptionAbstractImmutableByteSet.chunk(int size) AbstractImmutableCharSet.chunk(int size) AbstractImmutableDoubleSet.chunk(int size) AbstractImmutableFloatSet.chunk(int size) AbstractImmutableIntSet.chunk(int size) AbstractImmutableLongSet.chunk(int size) AbstractImmutableShortSet.chunk(int size) -
Uses of RichIterable in org.eclipse.collections.impl.set.mutable
Classes in org.eclipse.collections.impl.set.mutable that implement RichIterableModifier and TypeClassDescriptionclassfinal classMultiReadUnifiedSet provides a thread-safe wrapper around a UnifiedSet, using a ReentrantReadWriteLock.final classSetAdapter<T>This class provides a MutableSet wrapper around a JDK Collections Set interface instance.classA synchronized view of aMutableSet.classUnifiedSet<T>classAn unmodifiable view of a list.Methods in org.eclipse.collections.impl.set.mutable that return RichIterableMethods in org.eclipse.collections.impl.set.mutable that return types with arguments of type RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive that return RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.set.sorted.mutable
Classes in org.eclipse.collections.impl.set.sorted.mutable that implement RichIterableModifier and TypeClassDescriptionfinal classThis class provides a MutableSortedSet wrapper around a JDK Collections SortedSet interface instance.classA synchronized view of aMutableSortedSet.classclassAn unmodifiable view of a SortedSet. -
Uses of RichIterable in org.eclipse.collections.impl.set.strategy.mutable
Classes in org.eclipse.collections.impl.set.strategy.mutable that implement RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.stack.mutable
Classes in org.eclipse.collections.impl.stack.mutable that implement RichIterableModifier and TypeClassDescriptionclassArrayStack<T>ArrayStack is a MutableStack which contains a FastList of data.final classA synchronized view of aMutableStack.final classMethods in org.eclipse.collections.impl.stack.mutable that return RichIterableModifier and TypeMethodDescriptionArrayStack.chunk(int size) SynchronizedStack.chunk(int size) UnmodifiableStack.chunk(int size) Methods in org.eclipse.collections.impl.stack.mutable that return types with arguments of type RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return RichIterableModifier and TypeMethodDescriptionSynchronizedBooleanStack.chunk(int size) SynchronizedByteStack.chunk(int size) SynchronizedCharStack.chunk(int size) SynchronizedDoubleStack.chunk(int size) SynchronizedFloatStack.chunk(int size) SynchronizedIntStack.chunk(int size) SynchronizedLongStack.chunk(int size) SynchronizedShortStack.chunk(int size) UnmodifiableBooleanStack.chunk(int size) UnmodifiableByteStack.chunk(int size) UnmodifiableCharStack.chunk(int size) UnmodifiableDoubleStack.chunk(int size) UnmodifiableFloatStack.chunk(int size) UnmodifiableIntStack.chunk(int size) UnmodifiableLongStack.chunk(int size) UnmodifiableShortStack.chunk(int size) -
Uses of RichIterable in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return RichIterableModifier and TypeMethodDescriptionAbstractBooleanStack.chunk(int size) AbstractByteStack.chunk(int size) AbstractCharStack.chunk(int size) AbstractDoubleStack.chunk(int size) AbstractFloatStack.chunk(int size) AbstractIntStack.chunk(int size) AbstractLongStack.chunk(int size) AbstractShortStack.chunk(int size) -
Uses of RichIterable in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable that return RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return RichIterableModifier and TypeMethodDescriptionstatic <T> RichIterable<RichIterable<T>>ArrayIterate.chunk(T[] array, int size) static <T> RichIterable<RichIterable<T>>static <T> RichIterable<RichIterable<T>>Methods in org.eclipse.collections.impl.utility that return types with arguments of type RichIterableModifier and TypeMethodDescriptionstatic <T> RichIterable<RichIterable<T>>ArrayIterate.chunk(T[] array, int size) static <T> RichIterable<RichIterable<T>>static <T> LazyIterable<RichIterable<T>>static <T> RichIterable<RichIterable<T>> -
Uses of RichIterable in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return RichIterableModifier and TypeMethodDescriptionstatic <T> RichIterable<RichIterable<T>>static <T> RichIterable<RichIterable<T>>static <T> RichIterable<RichIterable<T>>MutableCollectionIterate.chunk(MutableCollection<T> collection, int size) Methods in org.eclipse.collections.impl.utility.internal that return types with arguments of type RichIterableModifier and TypeMethodDescriptionstatic <T> RichIterable<RichIterable<T>>static <T> RichIterable<RichIterable<T>>static <T> RichIterable<RichIterable<T>>MutableCollectionIterate.chunk(MutableCollection<T> collection, int size)