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 immutable primitive bag interfaces.
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 immutable primitive list interfaces and immutable primitive list factory interfaces.
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
FixedSizeMap 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 contains implementations of
FixedSizeSet.This package contains the implementations of
ImmutableSet.This package contains implementations of the immutable primitive set interfaces.
This package contains implementations of
MutableSet.This package contains implementations of the mutable primitive set interfaces.
This package contains implementations of
ImmutableSortedSet.This package contains implementations of
MutableSortedSet.This package contains implementations of immutable sets with user defined
HashingStrategys.This package contains implementations of sets with user defined
HashingStrategys.This package contains implementations of the
ImmutableStack interface.This package contains implementations of the immutable primitive stack interfaces.
This package contains implementations of the
MutableStack interface.This package contains implementations of the mutable primitive stack interfaces.
This package contains
SerializeTestHelper and Verify classes.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 asRichIterable.collect(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 ofRichIterable.collect(Function).default <P,V> RichIterable <V> RichIterable.flatCollectWith(Function2<? super T, ? super P, ? extends Iterable<V>> function, P parameter) Same as flatCollect, only with a Function2 that is passed an extra parameter.Returns all elements of the source collection that return false when evaluating of the predicate.<P> RichIterable<T> RichIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) Similar toRichIterable.reject(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 toRichIterable.select(Predicate), except with an evaluation parameter for the second generic argument inPredicate2.Executes the Procedure for each element in the iterable and returnsthis.<S> RichIterable<Pair<T, S>> Deprecated.in 6.0.RichIterable.zipWithIndex()Deprecated.in 6.0.Methods in org.eclipse.collections.api that return types with arguments of type RichIterable -
Uses of RichIterable in org.eclipse.collections.api.bag
Subinterfaces of RichIterable in org.eclipse.collections.api.bagModifier and TypeInterfaceDescriptioninterfaceBag<T>A Bag is a Collection whose elements are unordered and may contain duplicate entries.interfaceImmutableBag<T>interfaceinterfaceA MultiReaderBag provides thread-safe iteration for a bag through methodswithReadLockAndDelegate()andwithWriteLockAndDelegate().interfaceMutableBag<T>A MutableBag is a Collection whose elements are unordered and may contain duplicate entries.interfaceinterfaceUnsortedBag<T>Methods in org.eclipse.collections.api.bag that return RichIterableModifier and TypeMethodDescription<V> RichIterable<V> Bag.collectWithOccurrences(ObjectIntToObjectFunction<? super T, ? extends V> function) Iterates over the unique elements and their occurrences and collects the results of applying the specified function.<V> RichIterable<V> MutableBagIterable.collectWithOccurrences(ObjectIntToObjectFunction<? super T, ? extends V> function) default RichIterable<T> Bag.distinctView()Returns an unmodifiable view on the distinct elements with the same complexity as the Bag implementation. -
Uses of RichIterable in org.eclipse.collections.api.bag.sorted
Subinterfaces of RichIterable in org.eclipse.collections.api.bag.sortedModifier and TypeInterfaceDescriptioninterfaceImmutableSortedBag is the non-modifiable equivalent interface toMutableSortedBag.interfaceinterfaceSortedBag<T>An Iterable whose elements are sorted by some comparator or their natural ordering and may contain duplicate entries. -
Uses of RichIterable in org.eclipse.collections.api.bimap
Subinterfaces of RichIterable in org.eclipse.collections.api.bimapModifier and TypeInterfaceDescriptioninterfaceBiMap<K,V> A map that allows users to look up key-value pairs from either direction.interfaceImmutableBiMap<K,V> ABiMapwhose contents cannot be altered after initialization.interfaceMutableBiMap<K,V> ABiMapwhose contents can be altered after initialization. -
Uses of RichIterable in org.eclipse.collections.api.collection
Subinterfaces of RichIterable in org.eclipse.collections.api.collectionModifier and TypeInterfaceDescriptioninterfaceA FixedSizeCollection is a collection that may be mutated, but cannot grow or shrink in size.interfaceImmutableCollection is the common interface between ImmutableList, ImmutableSet and ImmutableBag.interfaceMutableCollection is an interface which extends the base java.util.Collection interface and adds several internal iterator methods, from the Smalltalk Collection protocol. -
Uses of RichIterable in org.eclipse.collections.api.factory.list
Methods in org.eclipse.collections.api.factory.list with parameters of type RichIterableModifier and TypeMethodDescriptiondefault <T> ImmutableList<T> ImmutableListFactory.withAllSorted(Comparator<? super T> comparator, RichIterable<? extends T> items) default <T> ImmutableList<T> ImmutableListFactory.withAllSorted(RichIterable<? extends T> items) -
Uses of RichIterable in org.eclipse.collections.api.list
Subinterfaces of RichIterable in org.eclipse.collections.api.listModifier and TypeInterfaceDescriptioninterfaceA FixedSizeList is a list that may be mutated, but cannot grow or shrink in size.interfaceImmutableList is the non-modifiable equivalent interface toMutableList.interfaceListIterable<T>An iterable whose items are ordered and may be accessed directly by index.interfaceA MultiReaderList provides thread-safe iteration for a list through methodswithReadLockAndDelegate()andwithWriteLockAndDelegate().interfaceMutableList<T>A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Uses of RichIterable in org.eclipse.collections.api.map
Subinterfaces of RichIterable in org.eclipse.collections.api.mapModifier and TypeInterfaceDescriptioninterfaceConcurrentMutableMap<K,V> A ConcurrentMutableMap provides an api which combines and supports both MutableMap and ConcurrentMap.interfaceFixedSizeMap<K,V> A FixedSizeMap is a map that may be mutated, but cannot grow or shrink in size.interfaceImmutableMap<K,V> An ImmutableMap is different from a JCF Map because it has no mutating methods.interfaceImmutableMapIterable<K,V> interfaceImmutableOrderedMap<K,V> interfaceMapIterable<K,V> A Read-only Map API, with the minor exception inherited from java.lang.Iterable.interfaceMutableMap<K,V> A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.interfaceMutableMapIterable<K,V> interfaceMutableOrderedMap<K,V> interfaceOrderedMap<K,V> A map whose keys are ordered but not necessarily sorted, for example a linked hash map.interfaceUnsortedMapIterable<K,V> An iterable Map whose elements are unsorted.Methods in org.eclipse.collections.api.map that return RichIterableModifier and TypeMethodDescriptionMapIterable.keysView()Returns an unmodifiable lazy iterable wrapped around the keySet for the map.RichIterable<Pair<K, V>> MapIterable.keyValuesView()Returns an unmodifiable lazy iterable of key/value pairs wrapped around the entrySet for the map.MapIterable.valuesView()Returns an unmodifiable lazy iterable wrapped around the values for the map. -
Uses of RichIterable in org.eclipse.collections.api.map.primitive
Subinterfaces of RichIterable in org.eclipse.collections.api.map.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitiveObjectMap.stg.interfaceThis file was automatically generated from template file primitiveObjectMap.stg.interfaceThis file was automatically generated from template file primitiveObjectMap.stg.interfaceThis file was automatically generated from template file primitiveObjectMap.stg.interfaceThis file was automatically generated from template file immutablePrimitiveObjectMap.stg.interfaceThis file was automatically generated from template file immutablePrimitiveObjectMap.stg.interfaceThis file was automatically generated from template file immutablePrimitiveObjectMap.stg.interfaceThis file was automatically generated from template file immutablePrimitiveObjectMap.stg.interfaceThis file was automatically generated from template file immutablePrimitiveObjectMap.stg.interfaceThis file was automatically generated from template file immutablePrimitiveObjectMap.stg.interfaceinterfaceThis file was automatically generated from template file immutablePrimitiveObjectMap.stg.interfaceIntObjectMap<V>This file was automatically generated from template file primitiveObjectMap.stg.interfaceThis file was automatically generated from template file primitiveObjectMap.stg.interfaceThis file was automatically generated from template file mutablePrimitiveObjectMap.stg.interfaceThis file was automatically generated from template file mutablePrimitiveObjectMap.stg.interfaceThis file was automatically generated from template file mutablePrimitiveObjectMap.stg.interfaceThis file was automatically generated from template file mutablePrimitiveObjectMap.stg.interfaceThis file was automatically generated from template file mutablePrimitiveObjectMap.stg.interfaceThis file was automatically generated from template file mutablePrimitiveObjectMap.stg.interfaceinterfaceThis file was automatically generated from template file mutablePrimitiveObjectMap.stg.interfaceinterfaceThis file was automatically generated from template file primitiveObjectMap.stg.Methods in org.eclipse.collections.api.map.primitive that return RichIterableModifier and TypeMethodDescriptionByteBooleanMap.keyValuesView()Returns a view of the key/value pairs in this map.ByteByteMap.keyValuesView()Returns a view of the key/value pairs in this map.ByteCharMap.keyValuesView()Returns a view of the key/value pairs in this map.ByteDoubleMap.keyValuesView()Returns a view of the key/value pairs in this map.ByteFloatMap.keyValuesView()Returns a view of the key/value pairs in this map.ByteIntMap.keyValuesView()Returns a view of the key/value pairs in this map.ByteLongMap.keyValuesView()Returns a view of the key/value pairs in this map.ByteObjectMap.keyValuesView()Returns a view of the key/value pairs in this map.ByteShortMap.keyValuesView()Returns a view of the key/value pairs in this map.CharBooleanMap.keyValuesView()Returns a view of the key/value pairs in this map.CharByteMap.keyValuesView()Returns a view of the key/value pairs in this map.CharCharMap.keyValuesView()Returns a view of the key/value pairs in this map.CharDoubleMap.keyValuesView()Returns a view of the key/value pairs in this map.CharFloatMap.keyValuesView()Returns a view of the key/value pairs in this map.CharIntMap.keyValuesView()Returns a view of the key/value pairs in this map.CharLongMap.keyValuesView()Returns a view of the key/value pairs in this map.CharObjectMap.keyValuesView()Returns a view of the key/value pairs in this map.CharShortMap.keyValuesView()Returns a view of the key/value pairs in this map.DoubleBooleanMap.keyValuesView()Returns a view of the key/value pairs in this map.DoubleByteMap.keyValuesView()Returns a view of the key/value pairs in this map.DoubleCharMap.keyValuesView()Returns a view of the key/value pairs in this map.DoubleDoubleMap.keyValuesView()Returns a view of the key/value pairs in this map.DoubleFloatMap.keyValuesView()Returns a view of the key/value pairs in this map.DoubleIntMap.keyValuesView()Returns a view of the key/value pairs in this map.DoubleLongMap.keyValuesView()Returns a view of the key/value pairs in this map.DoubleObjectMap.keyValuesView()Returns a view of the key/value pairs in this map.DoubleShortMap.keyValuesView()Returns a view of the key/value pairs in this map.FloatBooleanMap.keyValuesView()Returns a view of the key/value pairs in this map.FloatByteMap.keyValuesView()Returns a view of the key/value pairs in this map.FloatCharMap.keyValuesView()Returns a view of the key/value pairs in this map.FloatDoubleMap.keyValuesView()Returns a view of the key/value pairs in this map.FloatFloatMap.keyValuesView()Returns a view of the key/value pairs in this map.FloatIntMap.keyValuesView()Returns a view of the key/value pairs in this map.FloatLongMap.keyValuesView()Returns a view of the key/value pairs in this map.FloatObjectMap.keyValuesView()Returns a view of the key/value pairs in this map.FloatShortMap.keyValuesView()Returns a view of the key/value pairs in this map.IntBooleanMap.keyValuesView()Returns a view of the key/value pairs in this map.IntByteMap.keyValuesView()Returns a view of the key/value pairs in this map.IntCharMap.keyValuesView()Returns a view of the key/value pairs in this map.IntDoubleMap.keyValuesView()Returns a view of the key/value pairs in this map.IntFloatMap.keyValuesView()Returns a view of the key/value pairs in this map.IntIntMap.keyValuesView()Returns a view of the key/value pairs in this map.IntLongMap.keyValuesView()Returns a view of the key/value pairs in this map.IntObjectMap.keyValuesView()Returns a view of the key/value pairs in this map.IntShortMap.keyValuesView()Returns a view of the key/value pairs in this map.LongBooleanMap.keyValuesView()Returns a view of the key/value pairs in this map.LongByteMap.keyValuesView()Returns a view of the key/value pairs in this map.LongCharMap.keyValuesView()Returns a view of the key/value pairs in this map.LongDoubleMap.keyValuesView()Returns a view of the key/value pairs in this map.LongFloatMap.keyValuesView()Returns a view of the key/value pairs in this map.LongIntMap.keyValuesView()Returns a view of the key/value pairs in this map.LongLongMap.keyValuesView()Returns a view of the key/value pairs in this map.LongObjectMap.keyValuesView()Returns a view of the key/value pairs in this map.LongShortMap.keyValuesView()Returns a view of the key/value pairs in this map.ObjectBooleanMap.keyValuesView()Returns a view of the key/value pairs in this map.ObjectByteMap.keyValuesView()Returns a view of the key/value pairs in this map.ObjectCharMap.keyValuesView()Returns a view of the key/value pairs in this map.ObjectDoubleMap.keyValuesView()Returns a view of the key/value pairs in this map.ObjectFloatMap.keyValuesView()Returns a view of the key/value pairs in this map.ObjectIntMap.keyValuesView()Returns a view of the key/value pairs in this map.ObjectLongMap.keyValuesView()Returns a view of the key/value pairs in this map.ObjectShortMap.keyValuesView()Returns a view of the key/value pairs in this map.ShortBooleanMap.keyValuesView()Returns a view of the key/value pairs in this map.ShortByteMap.keyValuesView()Returns a view of the key/value pairs in this map.ShortCharMap.keyValuesView()Returns a view of the key/value pairs in this map.ShortDoubleMap.keyValuesView()Returns a view of the key/value pairs in this map.ShortFloatMap.keyValuesView()Returns a view of the key/value pairs in this map.ShortIntMap.keyValuesView()Returns a view of the key/value pairs in this map.ShortLongMap.keyValuesView()Returns a view of the key/value pairs in this map.ShortObjectMap.keyValuesView()Returns a view of the key/value pairs in this map.ShortShortMap.keyValuesView()Returns a view of the key/value pairs in this map. -
Uses of RichIterable in org.eclipse.collections.api.map.sorted
Subinterfaces of RichIterable in org.eclipse.collections.api.map.sortedModifier and TypeInterfaceDescriptioninterfaceImmutableSortedMap<K,V> An ImmutableSortedMap is different from a JCF SortedMap because it has no mutating methods.interfaceMutableSortedMap<K,V> A MutableSortedMap is similar to a JCF Map but adds additional useful internal iterator methods.interfaceSortedMapIterable<K,V> An iterable Map whose elements are sorted. -
Uses of RichIterable in org.eclipse.collections.api.multimap
Methods in org.eclipse.collections.api.multimap that return RichIterableModifier and TypeMethodDescriptionReturns a view of all values associated with the given key.RichIterable<Pair<K, RichIterable<V>>> Multimap.keyMultiValuePairsView()Returns a lazy view of the pair of a key and a lazy view of the values mapped to that key.Multimap.keysView()Returns a lazy view of the unique keys.RichIterable<Pair<K, V>> Multimap.keyValuePairsView()Returns a lazy view of all the key/value pairs.Multimap.multiValuesView()Returns an unmodifiable view of all the values mapped to each key.MutableMultimap.replaceValues(K key, Iterable<? extends V> values) Multimap.valuesView()Returns a lazy flattened view of all the values.Methods in org.eclipse.collections.api.multimap that return types with arguments of type RichIterableModifier and TypeMethodDescriptionRichIterable<Pair<K, RichIterable<V>>> Multimap.keyMultiValuePairsView()Returns a lazy view of the pair of a key and a lazy view of the values mapped to that key.Multimap.multiValuesView()Returns an unmodifiable view of all the values mapped to each key.MutableMap<K, RichIterable<V>> 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.Fields in org.eclipse.collections.impl declared as RichIterableModifier and TypeFieldDescriptionprotected final RichIterable<T> UnmodifiableRichIterable.iterableprivate RichIterable<T> SynchronizedRichIterable.SynchronizedRichIterableSerializationProxy.richIterableMethods 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 RichIterableModifierConstructorDescriptionprotectedSynchronizedRichIterable(RichIterable<T> iterable) protectedSynchronizedRichIterable(RichIterable<T> iterable, Object newLock) protectedUnmodifiableRichIterable(RichIterable<T> richIterable) -
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 TypeClassDescriptionclassclassclass(package private) final classThis is a zero elementImmutableBagwhich is created by calling the Bags.immutable.empty().class(package private) final classMethods in org.eclipse.collections.impl.bag.immutable that return RichIterableModifier and TypeMethodDescriptionAbstractImmutableBag.chunk(int size) ImmutableEmptyBag.chunk(int size) ImmutableArrayBag.distinctView()ImmutableEmptyBag.distinctView()ImmutableHashBag.distinctView()ImmutableSingletonBag.distinctView()Methods in org.eclipse.collections.impl.bag.immutable that return types with arguments of type RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return RichIterableModifier and TypeMethodDescriptionImmutableBooleanEmptyBag.chunk(int size) ImmutableBooleanHashBag.chunk(int size) ImmutableBooleanSingletonBag.chunk(int size) ImmutableByteEmptyBag.chunk(int size) ImmutableByteHashBag.chunk(int size) ImmutableByteSingletonBag.chunk(int size) ImmutableCharEmptyBag.chunk(int size) ImmutableCharHashBag.chunk(int size) ImmutableCharSingletonBag.chunk(int size) ImmutableDoubleEmptyBag.chunk(int size) ImmutableDoubleHashBag.chunk(int size) ImmutableDoubleSingletonBag.chunk(int size) ImmutableFloatEmptyBag.chunk(int size) ImmutableFloatHashBag.chunk(int size) ImmutableFloatSingletonBag.chunk(int size) ImmutableIntEmptyBag.chunk(int size) ImmutableIntHashBag.chunk(int size) ImmutableIntSingletonBag.chunk(int size) ImmutableLongEmptyBag.chunk(int size) ImmutableLongHashBag.chunk(int size) ImmutableLongSingletonBag.chunk(int size) ImmutableShortEmptyBag.chunk(int size) ImmutableShortHashBag.chunk(int size) ImmutableShortSingletonBag.chunk(int size) -
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.(package private) static final classclassA 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) AbstractHashBag.distinctView()MultiReaderHashBag.distinctView()MultiReaderHashBag.UntouchableMutableBag.distinctView()SynchronizedBag.distinctView()UnmodifiableBag.distinctView()protected RichIterable<T> AbstractHashBag.getKeysView()protected abstract RichIterable<T> AbstractMutableBagIterable.getKeysView()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.immutable
Classes in org.eclipse.collections.impl.bag.sorted.immutable that implement RichIterableModifier and TypeClassDescription(package private) class(package private) class(package private) classMethods in org.eclipse.collections.impl.bag.sorted.immutable that return RichIterableModifier and TypeMethodDescriptionAbstractImmutableSortedBag.chunk(int size) ImmutableEmptySortedBag.chunk(int size) ImmutableEmptySortedBag.distinctView()ImmutableSortedBagImpl.distinctView()Methods in org.eclipse.collections.impl.bag.sorted.immutable that return types with arguments of type 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.Methods in org.eclipse.collections.impl.bag.sorted.mutable that return RichIterableModifier and TypeMethodDescriptionSynchronizedSortedBag.distinctView()TreeBag.distinctView()UnmodifiableSortedBag.distinctView()protected RichIterable<T> TreeBag.getKeysView() -
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 RichIterableModifier and TypeClassDescriptionclassprivate static class(package private) final classImmutableHashBiMap<K,V> -
Uses of RichIterable in org.eclipse.collections.impl.bimap.mutable
Classes in org.eclipse.collections.impl.bimap.mutable that implement RichIterableModifier and TypeClassDescription(package private) classAbstractMutableBiMap<K,V> private static classclassHashBiMap<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) UnmodifiableBiMap.keysView()RichIterable<Pair<K, V>> UnmodifiableBiMap.keyValuesView()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
Classes in org.eclipse.collections.impl.block.factory that implement interfaces with type arguments of type RichIterableModifier and TypeClassDescriptionprivate static final classMethods in org.eclipse.collections.impl.block.factory that return RichIterableModifier and TypeMethodDescriptionMethods 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
Subclasses with type arguments of type RichIterable in org.eclipse.collections.impl.block.procedure.checkedMethods 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 RichIterableFields in org.eclipse.collections.impl.collection declared as RichIterableModifier and TypeFieldDescriptionprotected final RichIterable<T> AbstractSynchronizedRichIterable.delegateMethods 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) protected RichIterable<T> AbstractSynchronizedRichIterable.getDelegate()<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 RichIterableConstructors in org.eclipse.collections.impl.collection with parameters of type RichIterableModifierConstructorDescriptionprotectedAbstractSynchronizedRichIterable(RichIterable<T> delegate, Object lock) -
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.protected static classclassclassclassfinal 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) AbstractMultiReaderMutableCollection.UntouchableMutableCollection.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.Subclasses with type arguments of type RichIterable in org.eclipse.collections.impl.lazyModifier and TypeClassDescriptionclassA ChunkIterable is an iterable that partitions a source iterable into fixed size chunks 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
Classes in org.eclipse.collections.impl.lazy.iterator that implement interfaces with type arguments of type RichIterableMethods 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 RichIterableFields in org.eclipse.collections.impl.lazy.parallel declared as RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.lazy.parallel.list
Classes in org.eclipse.collections.impl.lazy.parallel.list that implement RichIterableModifier and TypeClassDescriptionprivate class -
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 TypeClassDescriptionclassclassprivate static classfinal classArrayAdapter<T>This class provides a MutableList wrapper around an array.(package private) final classA DoubletonList is a two-element memory efficient List.(package private) final classEmptyList<T>This class is a memory efficient list with no elements.(package private) final classThis is a four element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four).(package private) final classThis is a five element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four, five).(package private) final classThis is a six element immutable List which is created by calling Lists.fixedSize.of(one, two, three, four, five, six).(package private) final classThis class is a memory efficient list with one element.(package private) final classThis is a three element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three). -
Uses of RichIterable in org.eclipse.collections.impl.list.immutable
Classes in org.eclipse.collections.impl.list.immutable that implement RichIterableModifier and TypeClassDescription(package private) classThis class is the parent class for all ImmutableLists.protected static class(package private) final classAn ImmutableArrayList wraps a Java array, but it cannot be modified after creation.(package private) final classThis is a ten element immutable List which is created by calling Immutable.newListWith(one, two, three, four, five, six, seven, eight, nine, ten) method.(package private) final classThis is a two element immutable List which is created by calling Immutable.newListWith(one, two) method.(package private) final classThis is a zero elementImmutableListwhich is created by calling the Lists.immutable.empty() method.(package private) final classThis is a nine element immutable List which is created by calling Lists.immutable.with(one, two, three, four, five, six, seven, eight, nine) method.(package private) final classThis is an eight element immutable List which is created by calling Immutable.newListWith(one, two, three, four, five, six, seven, eight) method.(package private) final classThis is a four element immutable List which is created by calling Immutable.newListWith(one, two, three, four) method.(package private) final classThis is a five element immutable List which is created by calling Immutable.newListWith(one, two, three, four, five) method.(package private) final classThis is a seven element immutable List which is created by calling Immutable.newListWith(one, two, three, four, five, six, seven) method.(package private) final classThis is a six element immutable List which is created by calling Immutable.newListWith(one, two, three, four, five, six) method.(package private) final classThis is a single element immutable List which is created by calling Immutable.newListWith(one) method.(package private) final classThis is a three element immutable List which is created by calling Immutable.newListWith(one, two, three) method.Methods in org.eclipse.collections.impl.list.immutable that return RichIterableMethods in org.eclipse.collections.impl.list.immutable that return types with arguments of type RichIterableMethods 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.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return RichIterableModifier and TypeMethodDescriptionImmutableBooleanArrayList.chunk(int size) ImmutableBooleanEmptyList.chunk(int size) ImmutableBooleanSingletonList.chunk(int size) ImmutableByteArrayList.chunk(int size) ImmutableByteEmptyList.chunk(int size) ImmutableByteSingletonList.chunk(int size) ImmutableCharArrayList.chunk(int size) ImmutableCharEmptyList.chunk(int size) ImmutableCharSingletonList.chunk(int size) ImmutableDoubleArrayList.chunk(int size) ImmutableDoubleEmptyList.chunk(int size) ImmutableDoubleSingletonList.chunk(int size) ImmutableFloatArrayList.chunk(int size) ImmutableFloatEmptyList.chunk(int size) ImmutableFloatSingletonList.chunk(int size) ImmutableIntArrayList.chunk(int size) ImmutableIntEmptyList.chunk(int size) ImmutableIntSingletonList.chunk(int size) ImmutableLongArrayList.chunk(int size) ImmutableLongEmptyList.chunk(int size) ImmutableLongSingletonList.chunk(int size) ImmutableShortArrayList.chunk(int size) ImmutableShortEmptyList.chunk(int size) ImmutableShortSingletonList.chunk(int size) -
Uses of RichIterable in org.eclipse.collections.impl.list.mutable
Classes in org.eclipse.collections.impl.list.mutable that implement RichIterableModifier and TypeClassDescriptionclassclassprotected static classfinal 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.(package private) static final classfinal classThis class provides a MutableList wrapper around a JDK Collections List interface instance.classA synchronized view of aMutableList.classAn unmodifiable view of a list.private static final classMethods 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
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement RichIterableModifier and TypeClassDescriptionclassA boxed view of aMutableBooleanList.classA boxed view of aMutableByteList.classA boxed view of aMutableCharList.classA boxed view of aMutableDoubleList.classA boxed view of aMutableFloatList.classA boxed view of aMutableIntList.classA boxed view of aMutableLongList.classA boxed view of aMutableShortList.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) AbstractSynchronizedMapIterable.keysView()RichIterable<Pair<K, V>> AbstractSynchronizedMapIterable.keyValuesView()AbstractSynchronizedMapIterable.valuesView()Methods in org.eclipse.collections.impl.map that return types with arguments of type RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.map.fixed
Classes in org.eclipse.collections.impl.map.fixed that implement RichIterableModifier and TypeClassDescription(package private) class(package private) final classDoubletonMap<K,V> (package private) final classEmptyMap<K,V> (package private) final classSingletonMap<K,V> (package private) final classTripletonMap<K,V> -
Uses of RichIterable in org.eclipse.collections.impl.map.immutable
Classes in org.eclipse.collections.impl.map.immutable that implement RichIterableModifier and TypeClassDescriptionclassAbstractImmutableMap<K,V> (package private) final class(package private) final classImmutableEmptyMap<K,V> This is a zero elementImmutableMapwhich is created by calling the Maps.immutable.empty() method.(package private) final class(package private) final class(package private) final classclassImmutableUnifiedMap<K,V> Methods in org.eclipse.collections.impl.map.immutable that return RichIterableModifier and TypeMethodDescriptionImmutableDoubletonMap.keysView()ImmutableEmptyMap.keysView()ImmutableQuadrupletonMap.keysView()ImmutableSingletonMap.keysView()ImmutableTripletonMap.keysView()ImmutableUnifiedMap.keysView()RichIterable<Pair<K, V>> ImmutableDoubletonMap.keyValuesView()RichIterable<Pair<K, V>> ImmutableEmptyMap.keyValuesView()RichIterable<Pair<K, V>> ImmutableQuadrupletonMap.keyValuesView()RichIterable<Pair<K, V>> ImmutableSingletonMap.keyValuesView()RichIterable<Pair<K, V>> ImmutableTripletonMap.keyValuesView()RichIterable<Pair<K, V>> ImmutableUnifiedMap.keyValuesView()ImmutableDoubletonMap.valuesView()ImmutableEmptyMap.valuesView()ImmutableQuadrupletonMap.valuesView()ImmutableSingletonMap.valuesView()ImmutableTripletonMap.valuesView()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.(package private) final classImmutableByteObjectEmptyMap is an optimization forImmutableByteObjectMapof size 0.(package private) final classImmutableByteObjectHashMap is the non-modifiable equivalent ofByteObjectHashMap.(package private) final classImmutableByteObjectSingletonMap is an optimization forImmutableByteObjectMapof size 1.(package private) final classImmutableCharObjectEmptyMap is an optimization forImmutableCharObjectMapof size 0.(package private) final classImmutableCharObjectHashMap is the non-modifiable equivalent ofCharObjectHashMap.(package private) final classImmutableCharObjectSingletonMap is an optimization forImmutableCharObjectMapof size 1.(package private) final classImmutableDoubleObjectEmptyMap is an optimization forImmutableDoubleObjectMapof size 0.(package private) final classImmutableDoubleObjectHashMap is the non-modifiable equivalent ofDoubleObjectHashMap.(package private) final classImmutableDoubleObjectSingletonMap is an optimization forImmutableDoubleObjectMapof size 1.(package private) final classImmutableFloatObjectEmptyMap is an optimization forImmutableFloatObjectMapof size 0.(package private) final classImmutableFloatObjectHashMap is the non-modifiable equivalent ofFloatObjectHashMap.(package private) final classImmutableFloatObjectSingletonMap is an optimization forImmutableFloatObjectMapof size 1.(package private) final classImmutableIntObjectEmptyMap is an optimization forImmutableIntObjectMapof size 0.(package private) final classImmutableIntObjectHashMap is the non-modifiable equivalent ofIntObjectHashMap.(package private) final classImmutableIntObjectSingletonMap is an optimization forImmutableIntObjectMapof size 1.(package private) final classImmutableLongObjectEmptyMap is an optimization forImmutableLongObjectMapof size 0.(package private) final classImmutableLongObjectHashMap is the non-modifiable equivalent ofLongObjectHashMap.(package private) final classImmutableLongObjectSingletonMap is an optimization forImmutableLongObjectMapof size 1.(package private) final classImmutableShortObjectEmptyMap is an optimization forImmutableShortObjectMapof size 0.(package private) final classImmutableShortObjectHashMap is the non-modifiable equivalent ofShortObjectHashMap.(package private) final classImmutableShortObjectSingletonMap is an optimization forImmutableShortObjectMapof size 1.Methods in org.eclipse.collections.impl.map.immutable.primitive that return RichIterableModifier and TypeMethodDescriptionImmutableByteBooleanEmptyMap.chunk(int size) ImmutableByteBooleanHashMap.chunk(int size) ImmutableByteBooleanSingletonMap.chunk(int size) ImmutableByteByteEmptyMap.chunk(int size) ImmutableByteByteHashMap.chunk(int size) ImmutableByteByteSingletonMap.chunk(int size) ImmutableByteCharEmptyMap.chunk(int size) ImmutableByteCharHashMap.chunk(int size) ImmutableByteCharSingletonMap.chunk(int size) ImmutableByteDoubleEmptyMap.chunk(int size) ImmutableByteDoubleHashMap.chunk(int size) ImmutableByteDoubleSingletonMap.chunk(int size) ImmutableByteFloatEmptyMap.chunk(int size) ImmutableByteFloatHashMap.chunk(int size) ImmutableByteFloatSingletonMap.chunk(int size) ImmutableByteIntEmptyMap.chunk(int size) ImmutableByteIntHashMap.chunk(int size) ImmutableByteIntSingletonMap.chunk(int size) ImmutableByteLongEmptyMap.chunk(int size) ImmutableByteLongHashMap.chunk(int size) ImmutableByteLongSingletonMap.chunk(int size) ImmutableByteObjectEmptyMap.chunk(int size) ImmutableByteObjectHashMap.chunk(int size) ImmutableByteObjectSingletonMap.chunk(int size) ImmutableByteShortEmptyMap.chunk(int size) ImmutableByteShortHashMap.chunk(int size) ImmutableByteShortSingletonMap.chunk(int size) ImmutableCharBooleanEmptyMap.chunk(int size) ImmutableCharBooleanHashMap.chunk(int size) ImmutableCharBooleanSingletonMap.chunk(int size) ImmutableCharByteEmptyMap.chunk(int size) ImmutableCharByteHashMap.chunk(int size) ImmutableCharByteSingletonMap.chunk(int size) ImmutableCharCharEmptyMap.chunk(int size) ImmutableCharCharHashMap.chunk(int size) ImmutableCharCharSingletonMap.chunk(int size) ImmutableCharDoubleEmptyMap.chunk(int size) ImmutableCharDoubleHashMap.chunk(int size) ImmutableCharDoubleSingletonMap.chunk(int size) ImmutableCharFloatEmptyMap.chunk(int size) ImmutableCharFloatHashMap.chunk(int size) ImmutableCharFloatSingletonMap.chunk(int size) ImmutableCharIntEmptyMap.chunk(int size) ImmutableCharIntHashMap.chunk(int size) ImmutableCharIntSingletonMap.chunk(int size) ImmutableCharLongEmptyMap.chunk(int size) ImmutableCharLongHashMap.chunk(int size) ImmutableCharLongSingletonMap.chunk(int size) ImmutableCharObjectEmptyMap.chunk(int size) ImmutableCharObjectHashMap.chunk(int size) ImmutableCharObjectSingletonMap.chunk(int size) ImmutableCharShortEmptyMap.chunk(int size) ImmutableCharShortHashMap.chunk(int size) ImmutableCharShortSingletonMap.chunk(int size) ImmutableDoubleBooleanEmptyMap.chunk(int size) ImmutableDoubleBooleanHashMap.chunk(int size) ImmutableDoubleBooleanSingletonMap.chunk(int size) ImmutableDoubleByteEmptyMap.chunk(int size) ImmutableDoubleByteHashMap.chunk(int size) ImmutableDoubleByteSingletonMap.chunk(int size) ImmutableDoubleCharEmptyMap.chunk(int size) ImmutableDoubleCharHashMap.chunk(int size) ImmutableDoubleCharSingletonMap.chunk(int size) ImmutableDoubleDoubleEmptyMap.chunk(int size) ImmutableDoubleDoubleHashMap.chunk(int size) ImmutableDoubleDoubleSingletonMap.chunk(int size) ImmutableDoubleFloatEmptyMap.chunk(int size) ImmutableDoubleFloatHashMap.chunk(int size) ImmutableDoubleFloatSingletonMap.chunk(int size) ImmutableDoubleIntEmptyMap.chunk(int size) ImmutableDoubleIntHashMap.chunk(int size) ImmutableDoubleIntSingletonMap.chunk(int size) ImmutableDoubleLongEmptyMap.chunk(int size) ImmutableDoubleLongHashMap.chunk(int size) ImmutableDoubleLongSingletonMap.chunk(int size) ImmutableDoubleObjectEmptyMap.chunk(int size) ImmutableDoubleObjectHashMap.chunk(int size) ImmutableDoubleObjectSingletonMap.chunk(int size) ImmutableDoubleShortEmptyMap.chunk(int size) ImmutableDoubleShortHashMap.chunk(int size) ImmutableDoubleShortSingletonMap.chunk(int size) ImmutableFloatBooleanEmptyMap.chunk(int size) ImmutableFloatBooleanHashMap.chunk(int size) ImmutableFloatBooleanSingletonMap.chunk(int size) ImmutableFloatByteEmptyMap.chunk(int size) ImmutableFloatByteHashMap.chunk(int size) ImmutableFloatByteSingletonMap.chunk(int size) ImmutableFloatCharEmptyMap.chunk(int size) ImmutableFloatCharHashMap.chunk(int size) ImmutableFloatCharSingletonMap.chunk(int size) ImmutableFloatDoubleEmptyMap.chunk(int size) ImmutableFloatDoubleHashMap.chunk(int size) ImmutableFloatDoubleSingletonMap.chunk(int size) ImmutableFloatFloatEmptyMap.chunk(int size) ImmutableFloatFloatHashMap.chunk(int size) ImmutableFloatFloatSingletonMap.chunk(int size) ImmutableFloatIntEmptyMap.chunk(int size) ImmutableFloatIntHashMap.chunk(int size) ImmutableFloatIntSingletonMap.chunk(int size) ImmutableFloatLongEmptyMap.chunk(int size) ImmutableFloatLongHashMap.chunk(int size) ImmutableFloatLongSingletonMap.chunk(int size) ImmutableFloatObjectEmptyMap.chunk(int size) ImmutableFloatObjectHashMap.chunk(int size) ImmutableFloatObjectSingletonMap.chunk(int size) ImmutableFloatShortEmptyMap.chunk(int size) ImmutableFloatShortHashMap.chunk(int size) ImmutableFloatShortSingletonMap.chunk(int size) ImmutableIntBooleanEmptyMap.chunk(int size) ImmutableIntBooleanHashMap.chunk(int size) ImmutableIntBooleanSingletonMap.chunk(int size) ImmutableIntByteEmptyMap.chunk(int size) ImmutableIntByteHashMap.chunk(int size) ImmutableIntByteSingletonMap.chunk(int size) ImmutableIntCharEmptyMap.chunk(int size) ImmutableIntCharHashMap.chunk(int size) ImmutableIntCharSingletonMap.chunk(int size) ImmutableIntDoubleEmptyMap.chunk(int size) ImmutableIntDoubleHashMap.chunk(int size) ImmutableIntDoubleSingletonMap.chunk(int size) ImmutableIntFloatEmptyMap.chunk(int size) ImmutableIntFloatHashMap.chunk(int size) ImmutableIntFloatSingletonMap.chunk(int size) ImmutableIntIntEmptyMap.chunk(int size) ImmutableIntIntHashMap.chunk(int size) ImmutableIntIntSingletonMap.chunk(int size) ImmutableIntLongEmptyMap.chunk(int size) ImmutableIntLongHashMap.chunk(int size) ImmutableIntLongSingletonMap.chunk(int size) ImmutableIntObjectEmptyMap.chunk(int size) ImmutableIntObjectHashMap.chunk(int size) ImmutableIntObjectSingletonMap.chunk(int size) ImmutableIntShortEmptyMap.chunk(int size) ImmutableIntShortHashMap.chunk(int size) ImmutableIntShortSingletonMap.chunk(int size) ImmutableLongBooleanEmptyMap.chunk(int size) ImmutableLongBooleanHashMap.chunk(int size) ImmutableLongBooleanSingletonMap.chunk(int size) ImmutableLongByteEmptyMap.chunk(int size) ImmutableLongByteHashMap.chunk(int size) ImmutableLongByteSingletonMap.chunk(int size) ImmutableLongCharEmptyMap.chunk(int size) ImmutableLongCharHashMap.chunk(int size) ImmutableLongCharSingletonMap.chunk(int size) ImmutableLongDoubleEmptyMap.chunk(int size) ImmutableLongDoubleHashMap.chunk(int size) ImmutableLongDoubleSingletonMap.chunk(int size) ImmutableLongFloatEmptyMap.chunk(int size) ImmutableLongFloatHashMap.chunk(int size) ImmutableLongFloatSingletonMap.chunk(int size) ImmutableLongIntEmptyMap.chunk(int size) ImmutableLongIntHashMap.chunk(int size) ImmutableLongIntSingletonMap.chunk(int size) ImmutableLongLongEmptyMap.chunk(int size) ImmutableLongLongHashMap.chunk(int size) ImmutableLongLongSingletonMap.chunk(int size) ImmutableLongObjectEmptyMap.chunk(int size) ImmutableLongObjectHashMap.chunk(int size) ImmutableLongObjectSingletonMap.chunk(int size) ImmutableLongShortEmptyMap.chunk(int size) ImmutableLongShortHashMap.chunk(int size) ImmutableLongShortSingletonMap.chunk(int size) ImmutableObjectBooleanEmptyMap.chunk(int size) ImmutableObjectBooleanHashMap.chunk(int size) ImmutableObjectBooleanSingletonMap.chunk(int size) ImmutableObjectByteEmptyMap.chunk(int size) ImmutableObjectByteHashMap.chunk(int size) ImmutableObjectByteSingletonMap.chunk(int size) ImmutableObjectCharEmptyMap.chunk(int size) ImmutableObjectCharHashMap.chunk(int size) ImmutableObjectCharSingletonMap.chunk(int size) ImmutableObjectDoubleEmptyMap.chunk(int size) ImmutableObjectDoubleHashMap.chunk(int size) ImmutableObjectDoubleSingletonMap.chunk(int size) ImmutableObjectFloatEmptyMap.chunk(int size) ImmutableObjectFloatHashMap.chunk(int size) ImmutableObjectFloatSingletonMap.chunk(int size) ImmutableObjectIntEmptyMap.chunk(int size) ImmutableObjectIntHashMap.chunk(int size) ImmutableObjectIntSingletonMap.chunk(int size) ImmutableObjectLongEmptyMap.chunk(int size) ImmutableObjectLongHashMap.chunk(int size) ImmutableObjectLongSingletonMap.chunk(int size) ImmutableObjectShortEmptyMap.chunk(int size) ImmutableObjectShortHashMap.chunk(int size) ImmutableObjectShortSingletonMap.chunk(int size) ImmutableShortBooleanEmptyMap.chunk(int size) ImmutableShortBooleanHashMap.chunk(int size) ImmutableShortBooleanSingletonMap.chunk(int size) ImmutableShortByteEmptyMap.chunk(int size) ImmutableShortByteHashMap.chunk(int size) ImmutableShortByteSingletonMap.chunk(int size) ImmutableShortCharEmptyMap.chunk(int size) ImmutableShortCharHashMap.chunk(int size) ImmutableShortCharSingletonMap.chunk(int size) ImmutableShortDoubleEmptyMap.chunk(int size) ImmutableShortDoubleHashMap.chunk(int size) ImmutableShortDoubleSingletonMap.chunk(int size) ImmutableShortFloatEmptyMap.chunk(int size) ImmutableShortFloatHashMap.chunk(int size) ImmutableShortFloatSingletonMap.chunk(int size) ImmutableShortIntEmptyMap.chunk(int size) ImmutableShortIntHashMap.chunk(int size) ImmutableShortIntSingletonMap.chunk(int size) ImmutableShortLongEmptyMap.chunk(int size) ImmutableShortLongHashMap.chunk(int size) ImmutableShortLongSingletonMap.chunk(int size) ImmutableShortObjectEmptyMap.chunk(int size) ImmutableShortObjectHashMap.chunk(int size) ImmutableShortObjectSingletonMap.chunk(int size) ImmutableShortShortEmptyMap.chunk(int size) ImmutableShortShortHashMap.chunk(int size) ImmutableShortShortSingletonMap.chunk(int size) ImmutableByteBooleanEmptyMap.keyValuesView()ImmutableByteBooleanHashMap.keyValuesView()ImmutableByteBooleanSingletonMap.keyValuesView()ImmutableByteByteEmptyMap.keyValuesView()ImmutableByteByteHashMap.keyValuesView()ImmutableByteByteSingletonMap.keyValuesView()ImmutableByteCharEmptyMap.keyValuesView()ImmutableByteCharHashMap.keyValuesView()ImmutableByteCharSingletonMap.keyValuesView()ImmutableByteDoubleEmptyMap.keyValuesView()ImmutableByteDoubleHashMap.keyValuesView()ImmutableByteDoubleSingletonMap.keyValuesView()ImmutableByteFloatEmptyMap.keyValuesView()ImmutableByteFloatHashMap.keyValuesView()ImmutableByteFloatSingletonMap.keyValuesView()ImmutableByteIntEmptyMap.keyValuesView()ImmutableByteIntHashMap.keyValuesView()ImmutableByteIntSingletonMap.keyValuesView()ImmutableByteLongEmptyMap.keyValuesView()ImmutableByteLongHashMap.keyValuesView()ImmutableByteLongSingletonMap.keyValuesView()ImmutableByteObjectEmptyMap.keyValuesView()ImmutableByteObjectHashMap.keyValuesView()ImmutableByteObjectSingletonMap.keyValuesView()ImmutableByteShortEmptyMap.keyValuesView()ImmutableByteShortHashMap.keyValuesView()ImmutableByteShortSingletonMap.keyValuesView()ImmutableCharBooleanEmptyMap.keyValuesView()ImmutableCharBooleanHashMap.keyValuesView()ImmutableCharBooleanSingletonMap.keyValuesView()ImmutableCharByteEmptyMap.keyValuesView()ImmutableCharByteHashMap.keyValuesView()ImmutableCharByteSingletonMap.keyValuesView()ImmutableCharCharEmptyMap.keyValuesView()ImmutableCharCharHashMap.keyValuesView()ImmutableCharCharSingletonMap.keyValuesView()ImmutableCharDoubleEmptyMap.keyValuesView()ImmutableCharDoubleHashMap.keyValuesView()ImmutableCharDoubleSingletonMap.keyValuesView()ImmutableCharFloatEmptyMap.keyValuesView()ImmutableCharFloatHashMap.keyValuesView()ImmutableCharFloatSingletonMap.keyValuesView()ImmutableCharIntEmptyMap.keyValuesView()ImmutableCharIntHashMap.keyValuesView()ImmutableCharIntSingletonMap.keyValuesView()ImmutableCharLongEmptyMap.keyValuesView()ImmutableCharLongHashMap.keyValuesView()ImmutableCharLongSingletonMap.keyValuesView()ImmutableCharObjectEmptyMap.keyValuesView()ImmutableCharObjectHashMap.keyValuesView()ImmutableCharObjectSingletonMap.keyValuesView()ImmutableCharShortEmptyMap.keyValuesView()ImmutableCharShortHashMap.keyValuesView()ImmutableCharShortSingletonMap.keyValuesView()ImmutableDoubleBooleanEmptyMap.keyValuesView()ImmutableDoubleBooleanHashMap.keyValuesView()ImmutableDoubleBooleanSingletonMap.keyValuesView()ImmutableDoubleByteEmptyMap.keyValuesView()ImmutableDoubleByteHashMap.keyValuesView()ImmutableDoubleByteSingletonMap.keyValuesView()ImmutableDoubleCharEmptyMap.keyValuesView()ImmutableDoubleCharHashMap.keyValuesView()ImmutableDoubleCharSingletonMap.keyValuesView()ImmutableDoubleDoubleEmptyMap.keyValuesView()ImmutableDoubleDoubleHashMap.keyValuesView()ImmutableDoubleDoubleSingletonMap.keyValuesView()ImmutableDoubleFloatEmptyMap.keyValuesView()ImmutableDoubleFloatHashMap.keyValuesView()ImmutableDoubleFloatSingletonMap.keyValuesView()ImmutableDoubleIntEmptyMap.keyValuesView()ImmutableDoubleIntHashMap.keyValuesView()ImmutableDoubleIntSingletonMap.keyValuesView()ImmutableDoubleLongEmptyMap.keyValuesView()ImmutableDoubleLongHashMap.keyValuesView()ImmutableDoubleLongSingletonMap.keyValuesView()ImmutableDoubleObjectEmptyMap.keyValuesView()ImmutableDoubleObjectHashMap.keyValuesView()ImmutableDoubleObjectSingletonMap.keyValuesView()ImmutableDoubleShortEmptyMap.keyValuesView()ImmutableDoubleShortHashMap.keyValuesView()ImmutableDoubleShortSingletonMap.keyValuesView()ImmutableFloatBooleanEmptyMap.keyValuesView()ImmutableFloatBooleanHashMap.keyValuesView()ImmutableFloatBooleanSingletonMap.keyValuesView()ImmutableFloatByteEmptyMap.keyValuesView()ImmutableFloatByteHashMap.keyValuesView()ImmutableFloatByteSingletonMap.keyValuesView()ImmutableFloatCharEmptyMap.keyValuesView()ImmutableFloatCharHashMap.keyValuesView()ImmutableFloatCharSingletonMap.keyValuesView()ImmutableFloatDoubleEmptyMap.keyValuesView()ImmutableFloatDoubleHashMap.keyValuesView()ImmutableFloatDoubleSingletonMap.keyValuesView()ImmutableFloatFloatEmptyMap.keyValuesView()ImmutableFloatFloatHashMap.keyValuesView()ImmutableFloatFloatSingletonMap.keyValuesView()ImmutableFloatIntEmptyMap.keyValuesView()ImmutableFloatIntHashMap.keyValuesView()ImmutableFloatIntSingletonMap.keyValuesView()ImmutableFloatLongEmptyMap.keyValuesView()ImmutableFloatLongHashMap.keyValuesView()ImmutableFloatLongSingletonMap.keyValuesView()ImmutableFloatObjectEmptyMap.keyValuesView()ImmutableFloatObjectHashMap.keyValuesView()ImmutableFloatObjectSingletonMap.keyValuesView()ImmutableFloatShortEmptyMap.keyValuesView()ImmutableFloatShortHashMap.keyValuesView()ImmutableFloatShortSingletonMap.keyValuesView()ImmutableIntBooleanEmptyMap.keyValuesView()ImmutableIntBooleanHashMap.keyValuesView()ImmutableIntBooleanSingletonMap.keyValuesView()ImmutableIntByteEmptyMap.keyValuesView()ImmutableIntByteHashMap.keyValuesView()ImmutableIntByteSingletonMap.keyValuesView()ImmutableIntCharEmptyMap.keyValuesView()ImmutableIntCharHashMap.keyValuesView()ImmutableIntCharSingletonMap.keyValuesView()ImmutableIntDoubleEmptyMap.keyValuesView()ImmutableIntDoubleHashMap.keyValuesView()ImmutableIntDoubleSingletonMap.keyValuesView()ImmutableIntFloatEmptyMap.keyValuesView()ImmutableIntFloatHashMap.keyValuesView()ImmutableIntFloatSingletonMap.keyValuesView()ImmutableIntIntEmptyMap.keyValuesView()ImmutableIntIntHashMap.keyValuesView()ImmutableIntIntSingletonMap.keyValuesView()ImmutableIntLongEmptyMap.keyValuesView()ImmutableIntLongHashMap.keyValuesView()ImmutableIntLongSingletonMap.keyValuesView()ImmutableIntObjectEmptyMap.keyValuesView()ImmutableIntObjectHashMap.keyValuesView()ImmutableIntObjectSingletonMap.keyValuesView()ImmutableIntShortEmptyMap.keyValuesView()ImmutableIntShortHashMap.keyValuesView()ImmutableIntShortSingletonMap.keyValuesView()ImmutableLongBooleanEmptyMap.keyValuesView()ImmutableLongBooleanHashMap.keyValuesView()ImmutableLongBooleanSingletonMap.keyValuesView()ImmutableLongByteEmptyMap.keyValuesView()ImmutableLongByteHashMap.keyValuesView()ImmutableLongByteSingletonMap.keyValuesView()ImmutableLongCharEmptyMap.keyValuesView()ImmutableLongCharHashMap.keyValuesView()ImmutableLongCharSingletonMap.keyValuesView()ImmutableLongDoubleEmptyMap.keyValuesView()ImmutableLongDoubleHashMap.keyValuesView()ImmutableLongDoubleSingletonMap.keyValuesView()ImmutableLongFloatEmptyMap.keyValuesView()ImmutableLongFloatHashMap.keyValuesView()ImmutableLongFloatSingletonMap.keyValuesView()ImmutableLongIntEmptyMap.keyValuesView()ImmutableLongIntHashMap.keyValuesView()ImmutableLongIntSingletonMap.keyValuesView()ImmutableLongLongEmptyMap.keyValuesView()ImmutableLongLongHashMap.keyValuesView()ImmutableLongLongSingletonMap.keyValuesView()ImmutableLongObjectEmptyMap.keyValuesView()ImmutableLongObjectHashMap.keyValuesView()ImmutableLongObjectSingletonMap.keyValuesView()ImmutableLongShortEmptyMap.keyValuesView()ImmutableLongShortHashMap.keyValuesView()ImmutableLongShortSingletonMap.keyValuesView()ImmutableObjectBooleanEmptyMap.keyValuesView()ImmutableObjectBooleanHashMap.keyValuesView()ImmutableObjectBooleanSingletonMap.keyValuesView()ImmutableObjectByteEmptyMap.keyValuesView()ImmutableObjectByteHashMap.keyValuesView()ImmutableObjectByteSingletonMap.keyValuesView()ImmutableObjectCharEmptyMap.keyValuesView()ImmutableObjectCharHashMap.keyValuesView()ImmutableObjectCharSingletonMap.keyValuesView()ImmutableObjectDoubleEmptyMap.keyValuesView()ImmutableObjectDoubleHashMap.keyValuesView()ImmutableObjectDoubleSingletonMap.keyValuesView()ImmutableObjectFloatEmptyMap.keyValuesView()ImmutableObjectFloatHashMap.keyValuesView()ImmutableObjectFloatSingletonMap.keyValuesView()ImmutableObjectIntEmptyMap.keyValuesView()ImmutableObjectIntHashMap.keyValuesView()ImmutableObjectIntSingletonMap.keyValuesView()ImmutableObjectLongEmptyMap.keyValuesView()ImmutableObjectLongHashMap.keyValuesView()ImmutableObjectLongSingletonMap.keyValuesView()ImmutableObjectShortEmptyMap.keyValuesView()ImmutableObjectShortHashMap.keyValuesView()ImmutableObjectShortSingletonMap.keyValuesView()ImmutableShortBooleanEmptyMap.keyValuesView()ImmutableShortBooleanHashMap.keyValuesView()ImmutableShortBooleanSingletonMap.keyValuesView()ImmutableShortByteEmptyMap.keyValuesView()ImmutableShortByteHashMap.keyValuesView()ImmutableShortByteSingletonMap.keyValuesView()ImmutableShortCharEmptyMap.keyValuesView()ImmutableShortCharHashMap.keyValuesView()ImmutableShortCharSingletonMap.keyValuesView()ImmutableShortDoubleEmptyMap.keyValuesView()ImmutableShortDoubleHashMap.keyValuesView()ImmutableShortDoubleSingletonMap.keyValuesView()ImmutableShortFloatEmptyMap.keyValuesView()ImmutableShortFloatHashMap.keyValuesView()ImmutableShortFloatSingletonMap.keyValuesView()ImmutableShortIntEmptyMap.keyValuesView()ImmutableShortIntHashMap.keyValuesView()ImmutableShortIntSingletonMap.keyValuesView()ImmutableShortLongEmptyMap.keyValuesView()ImmutableShortLongHashMap.keyValuesView()ImmutableShortLongSingletonMap.keyValuesView()ImmutableShortObjectEmptyMap.keyValuesView()ImmutableShortObjectHashMap.keyValuesView()ImmutableShortObjectSingletonMap.keyValuesView()ImmutableShortShortEmptyMap.keyValuesView()ImmutableShortShortHashMap.keyValuesView()ImmutableShortShortSingletonMap.keyValuesView()Methods in org.eclipse.collections.impl.map.immutable.primitive that return types with arguments of type RichIterableModifier and TypeMethodDescriptionImmutableByteObjectEmptyMap.chunk(int size) ImmutableByteObjectHashMap.chunk(int size) ImmutableByteObjectSingletonMap.chunk(int size) ImmutableCharObjectEmptyMap.chunk(int size) ImmutableCharObjectHashMap.chunk(int size) ImmutableCharObjectSingletonMap.chunk(int size) ImmutableDoubleObjectEmptyMap.chunk(int size) ImmutableDoubleObjectHashMap.chunk(int size) ImmutableDoubleObjectSingletonMap.chunk(int size) ImmutableFloatObjectEmptyMap.chunk(int size) ImmutableFloatObjectHashMap.chunk(int size) ImmutableFloatObjectSingletonMap.chunk(int size) ImmutableIntObjectEmptyMap.chunk(int size) ImmutableIntObjectHashMap.chunk(int size) ImmutableIntObjectSingletonMap.chunk(int size) ImmutableLongObjectEmptyMap.chunk(int size) ImmutableLongObjectHashMap.chunk(int size) ImmutableLongObjectSingletonMap.chunk(int size) ImmutableShortObjectEmptyMap.chunk(int size) ImmutableShortObjectHashMap.chunk(int size) ImmutableShortObjectSingletonMap.chunk(int size) -
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()UnmodifiableMutableMap.keysView()RichIterable<Pair<K, V>> AbstractMutableMapIterable.keyValuesView()RichIterable<Pair<K, V>> UnmodifiableMutableMap.keyValuesView()AbstractMutableMapIterable.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 TypeClassDescriptionprivate classprivate classprivate classprivate classprivate classprivate classprivate classclassThis file was automatically generated from template file primitiveObjectHashMap.stg.private classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classclassThis file was automatically generated from template file primitiveObjectHashMap.stg.private classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classclassThis file was automatically generated from template file primitiveObjectHashMap.stg.private classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classclassThis file was automatically generated from template file primitiveObjectHashMap.stg.private classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classclassThis file was automatically generated from template file primitiveObjectHashMap.stg.private classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classclassThis file was automatically generated from template file primitiveObjectHashMap.stg.private classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classclassThis file was automatically generated from template file primitiveObjectHashMap.stg.private classprivate classclassA 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.AbstractBooleanValuesCollection.chunk(int size) AbstractMutableBooleanValuesMap.chunk(int size) AbstractMutableByteKeySet.chunk(int size) AbstractMutableByteValuesMap.AbstractByteValuesCollection.chunk(int size) AbstractMutableByteValuesMap.chunk(int size) AbstractMutableCharKeySet.chunk(int size) AbstractMutableCharValuesMap.AbstractCharValuesCollection.chunk(int size) AbstractMutableCharValuesMap.chunk(int size) AbstractMutableDoubleKeySet.chunk(int size) AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection.chunk(int size) AbstractMutableDoubleValuesMap.chunk(int size) AbstractMutableFloatKeySet.chunk(int size) AbstractMutableFloatValuesMap.AbstractFloatValuesCollection.chunk(int size) AbstractMutableFloatValuesMap.chunk(int size) AbstractMutableIntKeySet.chunk(int size) AbstractMutableIntValuesMap.AbstractIntValuesCollection.chunk(int size) AbstractMutableIntValuesMap.chunk(int size) AbstractMutableLongKeySet.chunk(int size) AbstractMutableLongValuesMap.AbstractLongValuesCollection.chunk(int size) AbstractMutableLongValuesMap.chunk(int size) AbstractMutableShortKeySet.chunk(int size) AbstractMutableShortValuesMap.AbstractShortValuesCollection.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) ObjectBooleanHashMap.ValuesCollection.chunk(int size) ObjectBooleanHashMapWithHashingStrategy.chunk(int size) ObjectBooleanHashMapWithHashingStrategy.ValuesCollection.chunk(int size) ObjectByteHashMap.chunk(int size) ObjectByteHashMap.ValuesCollection.chunk(int size) ObjectByteHashMapWithHashingStrategy.chunk(int size) ObjectByteHashMapWithHashingStrategy.ValuesCollection.chunk(int size) ObjectCharHashMap.chunk(int size) ObjectCharHashMap.ValuesCollection.chunk(int size) ObjectCharHashMapWithHashingStrategy.chunk(int size) ObjectCharHashMapWithHashingStrategy.ValuesCollection.chunk(int size) ObjectDoubleHashMap.chunk(int size) ObjectDoubleHashMap.ValuesCollection.chunk(int size) ObjectDoubleHashMapWithHashingStrategy.chunk(int size) ObjectDoubleHashMapWithHashingStrategy.ValuesCollection.chunk(int size) ObjectFloatHashMap.chunk(int size) ObjectFloatHashMap.ValuesCollection.chunk(int size) ObjectFloatHashMapWithHashingStrategy.chunk(int size) ObjectFloatHashMapWithHashingStrategy.ValuesCollection.chunk(int size) ObjectIntHashMap.chunk(int size) ObjectIntHashMap.ValuesCollection.chunk(int size) ObjectIntHashMapWithHashingStrategy.chunk(int size) ObjectIntHashMapWithHashingStrategy.ValuesCollection.chunk(int size) ObjectLongHashMap.chunk(int size) ObjectLongHashMap.ValuesCollection.chunk(int size) ObjectLongHashMapWithHashingStrategy.chunk(int size) ObjectLongHashMapWithHashingStrategy.ValuesCollection.chunk(int size) ObjectShortHashMap.chunk(int size) ObjectShortHashMap.ValuesCollection.chunk(int size) ObjectShortHashMapWithHashingStrategy.chunk(int size) ObjectShortHashMapWithHashingStrategy.ValuesCollection.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.immutable
Classes in org.eclipse.collections.impl.map.ordered.immutable that implement RichIterableMethods in org.eclipse.collections.impl.map.ordered.immutable that return RichIterableModifier and TypeMethodDescriptionImmutableOrderedMapAdapter.keysView()RichIterable<Pair<K, V>> ImmutableOrderedMapAdapter.keyValuesView()ImmutableOrderedMapAdapter.valuesView() -
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 RichIterableModifier and TypeClassDescriptionclass(package private) final classThis is a zero elementImmutableSortedMapwhich is created by calling SortedMaps.immutable.empty().classImmutableTreeMap<K,V> Methods in org.eclipse.collections.impl.map.sorted.immutable that return RichIterableModifier and TypeMethodDescriptionImmutableEmptySortedMap.keysView()ImmutableTreeMap.keysView()RichIterable<Pair<K, V>> ImmutableEmptySortedMap.keyValuesView()RichIterable<Pair<K, V>> ImmutableTreeMap.keyValuesView()ImmutableEmptySortedMap.valuesView()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) UnmodifiableTreeMap.keysView()RichIterable<Pair<K, V>> UnmodifiableTreeMap.keyValuesView()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 RichIterableModifier and TypeClassDescription(package private) final classThis is a zero elementImmutableUnifiedMapWithHashingStrategywhich is created by calling the HashingStrategyMaps.immutable.empty() method.classMethods in org.eclipse.collections.impl.map.strategy.immutable that return RichIterableModifier and TypeMethodDescriptionImmutableEmptyMapWithHashingStrategy.keysView()ImmutableUnifiedMapWithHashingStrategy.keysView()RichIterable<Pair<K, V>> ImmutableEmptyMapWithHashingStrategy.keyValuesView()RichIterable<Pair<K, V>> ImmutableUnifiedMapWithHashingStrategy.keyValuesView()ImmutableEmptyMapWithHashingStrategy.valuesView()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 TypeMethodDescriptionRichIterable<Pair<K, RichIterable<V>>> AbstractMultimap.keyMultiValuePairsView()RichIterable<Pair<K, RichIterable<V>>> 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 TypeMethodDescriptionRichIterable<Pair<K, RichIterable<V>>> AbstractMultimap.keyMultiValuePairsView()RichIterable<Pair<K, RichIterable<V>>> AbstractSynchronizedMultimap.keyMultiValuePairsView()AbstractMultimap.multiValuesView()AbstractSynchronizedMultimap.multiValuesView()MutableMap<K, RichIterable<V>> AbstractImmutableMultimap.toMap()MutableMap<K, RichIterable<V>> AbstractMutableMultimap.toMap()MutableMap<K, RichIterable<V>> 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.fixed
Classes in org.eclipse.collections.impl.set.fixed that implement RichIterableModifier and TypeClassDescription(package private) class(package private) final classDoubletonSet<T>(package private) final classEmptySet<T>This class is a memory efficient list with no elements.(package private) final class(package private) classSingletonSet<T>(package private) final classTripletonSet<T> -
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.(package private) final class(package private) final classThis is a zero elementImmutableSetwhich is created by calling the Sets.immutable.empty() method.(package private) final class(package private) final class(package private) final class(package private) final class -
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) ImmutableBooleanEmptySet.chunk(int size) ImmutableByteEmptySet.chunk(int size) ImmutableByteSingletonSet.chunk(int size) ImmutableCharEmptySet.chunk(int size) ImmutableCharSingletonSet.chunk(int size) ImmutableDoubleEmptySet.chunk(int size) ImmutableDoubleSingletonSet.chunk(int size) ImmutableFalseSet.chunk(int size) ImmutableFloatEmptySet.chunk(int size) ImmutableFloatSingletonSet.chunk(int size) ImmutableIntEmptySet.chunk(int size) ImmutableIntSingletonSet.chunk(int size) ImmutableLongEmptySet.chunk(int size) ImmutableLongSingletonSet.chunk(int size) ImmutableShortEmptySet.chunk(int size) ImmutableShortSingletonSet.chunk(int size) ImmutableTrueFalseSet.chunk(int size) ImmutableTrueSet.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.(package private) static final classfinal classSetAdapter<T>This class provides a MutableSet wrapper around a JDK Collections Set interface instance.classA synchronized view of aMutableSet.classUnifiedSet<T>private classclassAn 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
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement RichIterableModifier and TypeClassDescriptionclassA boxed view of aMutableBooleanSet.classA boxed view of aMutableByteSet.classA boxed view of aMutableCharSet.classA boxed view of aMutableDoubleSet.classA boxed view of aMutableFloatSet.classA boxed view of aMutableIntSet.classA boxed view of aMutableLongSet.classA boxed view of aMutableShortSet.Methods in org.eclipse.collections.impl.set.mutable.primitive that return RichIterableModifier and TypeMethodDescriptionBooleanHashSet.chunk(int size) ByteHashSet.chunk(int size) ByteHashSet.ImmutableByteHashSet.chunk(int size) CharHashSet.chunk(int size) DoubleHashSet.chunk(int size) FloatHashSet.chunk(int size) IntHashSet.chunk(int size) LongHashSet.chunk(int size) ShortHashSet.chunk(int size) -
Uses of RichIterable in org.eclipse.collections.impl.set.sorted.immutable
Classes in org.eclipse.collections.impl.set.sorted.immutable that implement RichIterableModifier and TypeClassDescription(package private) classThis class is the parent class for all ImmutableSortedSets.(package private) final classThis is a zero elementImmutableSortedSetwhich is created by calling the SortedSets.immutable.empty() method.(package private) final classprivate class -
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.immutable
Classes in org.eclipse.collections.impl.set.strategy.immutable that implement RichIterableModifier and TypeClassDescription(package private) final classThis is a zero elementImmutableUnifiedSetWithHashingStrategywhich is created by calling the HashingStrategySets.immutable.empty() method.(package private) final class -
Uses of RichIterable in org.eclipse.collections.impl.set.strategy.mutable
Classes in org.eclipse.collections.impl.set.strategy.mutable that implement RichIterableModifier and TypeClassDescriptionclassprivate classUnifiedSetWithHashingStrategy.UnifiedSetParallelUnsortedIterable.UnifiedSetParallelSplitLazyIterable -
Uses of RichIterable in org.eclipse.collections.impl.stack.immutable
Classes in org.eclipse.collections.impl.stack.immutable that implement RichIterableModifier and TypeClassDescription(package private) final classDeprecated.Replaced byImmutableNotEmptyStack.(package private) final class(package private) final classMethods in org.eclipse.collections.impl.stack.immutable that return RichIterableModifier and TypeMethodDescriptionImmutableArrayStack.chunk(int size) Deprecated.ImmutableEmptyStack.chunk(int size) ImmutableNotEmptyStack.chunk(int size) Methods in org.eclipse.collections.impl.stack.immutable that return types with arguments of type RichIterable -
Uses of RichIterable in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return RichIterableModifier and TypeMethodDescriptionImmutableBooleanEmptyStack.chunk(int size) ImmutableBooleanSingletonStack.chunk(int size) ImmutableByteEmptyStack.chunk(int size) ImmutableByteSingletonStack.chunk(int size) ImmutableCharEmptyStack.chunk(int size) ImmutableCharSingletonStack.chunk(int size) ImmutableDoubleEmptyStack.chunk(int size) ImmutableDoubleSingletonStack.chunk(int size) ImmutableFloatEmptyStack.chunk(int size) ImmutableFloatSingletonStack.chunk(int size) ImmutableIntEmptyStack.chunk(int size) ImmutableIntSingletonStack.chunk(int size) ImmutableLongEmptyStack.chunk(int size) ImmutableLongSingletonStack.chunk(int size) ImmutableShortEmptyStack.chunk(int size) ImmutableShortSingletonStack.chunk(int size) -
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.test
Methods in org.eclipse.collections.impl.test with parameters of type RichIterableModifier and TypeMethodDescriptionprivate voidprivate voidClassComparer.outputGroupByToString(RichIterable<String> methods) -
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)