Uses of Class
org.eclipse.collections.impl.AbstractRichIterable
-
Packages that use AbstractRichIterable Package Description org.eclipse.collections.impl.bag org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBag
interface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBag
interface.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag
.org.eclipse.collections.impl.bag.strategy.mutable This package contains implementations of bags with user definedHashingStrategy
s.org.eclipse.collections.impl.collection.immutable This package contains implementations of theImmutableCollection
interface.org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterable
interface.org.eclipse.collections.impl.lazy.parallel.list org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list This package contains implementations of theListIterable
interface.org.eclipse.collections.impl.list.fixed This package contains implementations of theFixedSizeList
interface.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableList
interface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.map This package contains implementations of theMapIterable
interface.org.eclipse.collections.impl.map.fixed This package contains implementations of theFixedSizeMap
interface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMap
interface.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMap
interface.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.map.strategy.immutable This package contains immutable map implementations backed by hashtables that rely onHashingStrategy
s provided by the developer to compute the hashCode and equals for the objects stored in the map.org.eclipse.collections.impl.map.strategy.mutable This package contains mutable map implementations backed by hashtables that rely onHashingStrategy
s provided by the developer to compute the hashCode and equals for the objects stored in the map.org.eclipse.collections.impl.set org.eclipse.collections.impl.set.fixed This package contains implementations ofFixedSizeSet
.org.eclipse.collections.impl.set.immutable This package contains the implementations ofImmutableSet
.org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet
.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet
.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet
.org.eclipse.collections.impl.set.strategy.immutable This package contains implementations of immutable sets with user definedHashingStrategy
s.org.eclipse.collections.impl.set.strategy.mutable This package contains implementations of sets with user definedHashingStrategy
s.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface. -
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.bag
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.bag Modifier and Type Class Description class
AbstractBag<T>
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.bag.immutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.bag.immutable Modifier and Type Class Description class
AbstractImmutableBag<T>
class
AbstractImmutableBagIterable<T>
class
ImmutableArrayBag<T>
(package private) class
ImmutableEmptyBag<T>
This is a zero elementImmutableBag
which is created by calling the Bags.immutable.empty().class
ImmutableHashBag<T>
(package private) class
ImmutableSingletonBag<T>
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.bag.mutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.bag.mutable Modifier and Type Class Description class
AbstractHashBag<T>
class
AbstractMutableBag<T>
class
AbstractMutableBagIterable<T>
class
HashBag<T>
A HashBag is a MutableBag which uses a Map as its underlying data store. -
Uses of AbstractRichIterable in org.eclipse.collections.impl.bag.sorted.immutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.bag.sorted.immutable Modifier and Type Class Description (package private) class
AbstractImmutableSortedBag<T>
(package private) class
ImmutableEmptySortedBag<T>
(package private) class
ImmutableSortedBagImpl<T>
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.bag.sorted.mutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.bag.sorted.mutable Modifier and Type Class Description class
AbstractMutableSortedBag<T>
class
TreeBag<T>
A TreeBag is a MutableSortedBag which uses a SortedMap as its underlying data store. -
Uses of AbstractRichIterable in org.eclipse.collections.impl.bag.strategy.mutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.bag.strategy.mutable Modifier and Type Class Description class
HashBagWithHashingStrategy<T>
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.collection.immutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.collection.immutable Modifier and Type Class Description class
AbstractImmutableCollection<T>
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.collection.mutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.collection.mutable Modifier and Type Class Description class
AbstractMutableCollection<T>
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.lazy
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.lazy Modifier and Type Class Description class
AbstractLazyIterable<T>
AbstractLazyIterable provides a base from which deferred iterables such as SelectIterable, RejectIterable and CollectIterable can be derived.class
ChunkIterable<T>
A ChunkIterable is an iterable that partitions a source iterable into fixed size chunks as it iterates.class
CollectIterable<T,V>
A CollectIterable is an iterable that transforms a source iterable using a function as it iterates.class
CompositeIterable<E>
class
DistinctIterable<T>
A DistinctIterable is an iterable that eliminates duplicates from a source iterable as it iterates.class
DropIterable<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.class
DropWhileIterable<T>
Iterates over the elements of the adapted Iterable skipping the first elements until the predicate returns false.class
FlatCollectIterable<T,V>
class
LazyIterableAdapter<T>
A LazyIterableAdapter wraps any iterable with the LazyIterable interface.class
RejectIterable<T>
A RejectIterable is an iterable that filters a source iterable on a negative condition as it iterates.class
ReverseIterable<T>
A ReverseIterable is an iterable that wraps another iterable and iterates in reverse order.class
SelectInstancesOfIterable<T>
A SelectIterable is an iterable that filters a source iterable for instances of a Class as it iterates.class
SelectIterable<T>
A SelectIterable is an iterable that filters a source iterable on a condition as it iterates.class
TakeIterable<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.class
TakeWhileIterable<T>
Iterates over the elements of the adapted Iterable until the predicate returns false.class
TapIterable<T>
A TapIterable is an iterable that executes a procedure for each element before each iteration.class
ZipIterable<X,Y>
A ZipIterable is an iterable that transforms a source iterable on a condition as it iterates.class
ZipWithIndexIterable<T>
A CollectIterable is an iterable that transforms a source iterable on a condition as it iterates. -
Uses of AbstractRichIterable in org.eclipse.collections.impl.lazy.parallel.list
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.lazy.parallel.list Modifier and Type Class Description private class
ListIterableParallelIterable.ListIterableParallelBatchLazyIterable
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.lazy.primitive
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.lazy.primitive Modifier and Type Class Description class
ChunkBooleanIterable
This file was automatically generated from template file chunkPrimitiveIterable.stg.class
ChunkByteIterable
This file was automatically generated from template file chunkPrimitiveIterable.stg.class
ChunkCharIterable
This file was automatically generated from template file chunkPrimitiveIterable.stg.class
ChunkDoubleIterable
This file was automatically generated from template file chunkPrimitiveIterable.stg.class
ChunkFloatIterable
This file was automatically generated from template file chunkPrimitiveIterable.stg.class
ChunkIntIterable
This file was automatically generated from template file chunkPrimitiveIterable.stg.class
ChunkLongIterable
This file was automatically generated from template file chunkPrimitiveIterable.stg.class
ChunkShortIterable
This file was automatically generated from template file chunkPrimitiveIterable.stg.class
CollectBooleanToObjectIterable<V>
class
CollectByteToObjectIterable<V>
This file was automatically generated from template file collectPrimitiveToObjectIterable.stg.class
CollectCharToObjectIterable<V>
This file was automatically generated from template file collectPrimitiveToObjectIterable.stg.class
CollectDoubleToObjectIterable<V>
This file was automatically generated from template file collectPrimitiveToObjectIterable.stg.class
CollectFloatToObjectIterable<V>
This file was automatically generated from template file collectPrimitiveToObjectIterable.stg.class
CollectIntToObjectIterable<V>
This file was automatically generated from template file collectPrimitiveToObjectIterable.stg.class
CollectLongToObjectIterable<V>
This file was automatically generated from template file collectPrimitiveToObjectIterable.stg.class
CollectShortToObjectIterable<V>
This file was automatically generated from template file collectPrimitiveToObjectIterable.stg.class
FlatCollectBooleanToObjectIterable<V>
This file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.class
FlatCollectByteToObjectIterable<V>
This file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.class
FlatCollectCharToObjectIterable<V>
This file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.class
FlatCollectDoubleToObjectIterable<V>
This file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.class
FlatCollectFloatToObjectIterable<V>
This file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.class
FlatCollectIntToObjectIterable<V>
This file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.class
FlatCollectLongToObjectIterable<V>
This file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.class
FlatCollectShortToObjectIterable<V>
This file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg. -
Uses of AbstractRichIterable in org.eclipse.collections.impl.list
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.list Modifier and Type Class Description class
Interval
An Interval is a range of integers that may be iterated over using a step value. -
Uses of AbstractRichIterable in org.eclipse.collections.impl.list.fixed
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.list.fixed Modifier and Type Class Description class
AbstractArrayAdapter<T>
class
AbstractMemoryEfficientMutableList<T>
private static class
AbstractMemoryEfficientMutableList.SubList<T>
class
ArrayAdapter<T>
This class provides a MutableList wrapper around an array.(package private) class
DoubletonList<T>
A DoubletonList is a two-element memory efficient List.(package private) class
EmptyList<T>
This class is a memory efficient list with no elements.(package private) class
QuadrupletonList<T>
This is a four element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four).(package private) class
QuintupletonList<T>
This is a five element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four, five).(package private) class
SextupletonList<T>
This is a six element immutable List which is created by calling Lists.fixedSize.of(one, two, three, four, five, six).(package private) class
SingletonList<T>
This class is a memory efficient list with one element.(package private) class
TripletonList<T>
This is a three element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three). -
Uses of AbstractRichIterable in org.eclipse.collections.impl.list.immutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.list.immutable Modifier and Type Class Description (package private) class
AbstractImmutableList<T>
This class is the parent class for all ImmutableLists.protected static class
AbstractImmutableList.ImmutableSubList<T>
(package private) class
ImmutableArrayList<T>
An ImmutableArrayList wraps a Java array, but it cannot be modified after creation.(package private) class
ImmutableDecapletonList<T>
This 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) class
ImmutableDoubletonList<T>
This is a two element immutable List which is created by calling Immutable.newListWith(one, two) method.(package private) class
ImmutableEmptyList<T>
This is a zero elementImmutableList
which is created by calling the Lists.immutable.empty() method.(package private) class
ImmutableNonupletonList<T>
This 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) class
ImmutableOctupletonList<T>
This is an eight element immutable List which is created by calling Immutable.newListWith(one, two, three, four, five, six, seven, eight) method.(package private) class
ImmutableQuadrupletonList<T>
This is a four element immutable List which is created by calling Immutable.newListWith(one, two, three, four) method.(package private) class
ImmutableQuintupletonList<T>
This is a five element immutable List which is created by calling Immutable.newListWith(one, two, three, four, five) method.(package private) class
ImmutableSeptupletonList<T>
This is a seven element immutable List which is created by calling Immutable.newListWith(one, two, three, four, five, six, seven) method.(package private) class
ImmutableSextupletonList<T>
This is a six element immutable List which is created by calling Immutable.newListWith(one, two, three, four, five, six) method.(package private) class
ImmutableSingletonList<T>
This is a single element immutable List which is created by calling Immutable.newListWith(one) method.(package private) class
ImmutableTripletonList<T>
This is a three element immutable List which is created by calling Immutable.newListWith(one, two, three) method. -
Uses of AbstractRichIterable in org.eclipse.collections.impl.list.mutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.list.mutable Modifier and Type Class Description class
AbstractMutableList<T>
protected static class
AbstractMutableList.SubList<T>
class
CompositeFastList<E>
CompositeFastList behaves like a list, but is composed of at least one list.class
FastList<T>
FastList is an attempt to provide the same functionality as ArrayList without the support for concurrent modification exceptions. -
Uses of AbstractRichIterable in org.eclipse.collections.impl.map
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.map Modifier and Type Class Description class
AbstractMapIterable<K,V>
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.map.fixed
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.map.fixed Modifier and Type Class Description (package private) class
AbstractMemoryEfficientMutableMap<K,V>
(package private) class
DoubletonMap<K,V>
(package private) class
EmptyMap<K,V>
(package private) class
SingletonMap<K,V>
(package private) class
TripletonMap<K,V>
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.map.immutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.map.immutable Modifier and Type Class Description class
AbstractImmutableMap<K,V>
(package private) class
ImmutableDoubletonMap<K,V>
(package private) class
ImmutableEmptyMap<K,V>
This is a zero elementImmutableMap
which is created by calling the Maps.immutable.empty() method.(package private) class
ImmutableQuadrupletonMap<K,V>
(package private) class
ImmutableSingletonMap<K,V>
(package private) class
ImmutableTripletonMap<K,V>
class
ImmutableUnifiedMap<K,V>
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.map.mutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.map.mutable Modifier and Type Class Description class
AbstractMutableMap<K,V>
class
AbstractMutableMapIterable<K,V>
class
ConcurrentHashMap<K,V>
class
ConcurrentHashMapUnsafe<K,V>
class
ConcurrentMutableHashMap<K,V>
Deprecated.since 2.0class
MapAdapter<K,V>
This class provides a MutableMap wrapper around a JDK Collections Map interface instance.class
UnifiedMap<K,V>
UnifiedMap stores key/value pairs in a single array, where alternate slots are keys and values. -
Uses of AbstractRichIterable in org.eclipse.collections.impl.map.mutable.primitive
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.map.ordered.mutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.map.ordered.mutable Modifier and Type Class Description class
OrderedMapAdapter<K,V>
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.map.sorted.immutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.map.sorted.immutable Modifier and Type Class Description class
AbstractImmutableSortedMap<K,V>
(package private) class
ImmutableEmptySortedMap<K,V>
This is a zero elementImmutableSortedMap
which is created by calling SortedMaps.immutable.empty().class
ImmutableTreeMap<K,V>
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.map.sorted.mutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.map.sorted.mutable Modifier and Type Class Description class
AbstractMutableSortedMap<K,V>
class
SortedMapAdapter<K,V>
This class provides a MutableSortedMap wrapper around a JDK Collections SortedMap interface instance.class
TreeSortedMap<K,V>
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.map.strategy.immutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.map.strategy.immutable Modifier and Type Class Description (package private) class
ImmutableEmptyMapWithHashingStrategy<K,V>
This is a zero elementImmutableUnifiedMapWithHashingStrategy
which is created by calling the HashingStrategyMaps.immutable.empty() method.class
ImmutableUnifiedMapWithHashingStrategy<K,V>
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.map.strategy.mutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.map.strategy.mutable Modifier and Type Class Description class
UnifiedMapWithHashingStrategy<K,V>
UnifiedMapWithHashingStrategy stores key/value pairs in a single array, where alternate slots are keys and values. -
Uses of AbstractRichIterable in org.eclipse.collections.impl.set
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.set Modifier and Type Class Description class
AbstractUnifiedSet<T>
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.set.fixed
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.set.fixed Modifier and Type Class Description (package private) class
AbstractMemoryEfficientMutableSet<T>
(package private) class
DoubletonSet<T>
(package private) class
EmptySet<T>
This class is a memory efficient list with no elements.(package private) class
QuadrupletonSet<T>
(package private) class
SingletonSet<T>
(package private) class
TripletonSet<T>
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.set.immutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.set.immutable Modifier and Type Class Description class
AbstractImmutableSet<T>
This class is the parent class for all ImmutableSets.(package private) class
ImmutableDoubletonSet<T>
(package private) class
ImmutableEmptySet<T>
This is a zero elementImmutableSet
which is created by calling the Sets.immutable.empty() method.(package private) class
ImmutableQuadrupletonSet<T>
(package private) class
ImmutableSingletonSet<T>
(package private) class
ImmutableTripletonSet<T>
(package private) class
ImmutableUnifiedSet<T>
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.set.mutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.set.mutable Modifier and Type Class Description class
AbstractMutableSet<T>
class
UnifiedSet<T>
private class
UnifiedSet.UnifiedSetParallelUnsortedIterable.UnifiedSetParallelSplitLazyIterable
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.set.sorted.immutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.set.sorted.immutable Modifier and Type Class Description (package private) class
AbstractImmutableSortedSet<T>
This class is the parent class for all ImmutableSortedSets.(package private) class
ImmutableEmptySortedSet<T>
This is a zero elementImmutableSortedSet
which is created by calling the SortedSets.immutable.empty() method.(package private) class
ImmutableTreeSet<T>
private class
ImmutableTreeSet.SortedSetIterableParallelIterable.SortedSetIterableParallelBatchLazyIterable
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.set.sorted.mutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.set.sorted.mutable Modifier and Type Class Description class
TreeSortedSet<T>
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.set.strategy.immutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.set.strategy.immutable Modifier and Type Class Description (package private) class
ImmutableEmptySetWithHashingStrategy<T>
This is a zero elementImmutableUnifiedSetWithHashingStrategy
which is created by calling the HashingStrategySets.immutable.empty() method.(package private) class
ImmutableUnifiedSetWithHashingStrategy<T>
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.set.strategy.mutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.set.strategy.mutable Modifier and Type Class Description class
UnifiedSetWithHashingStrategy<T>
private class
UnifiedSetWithHashingStrategy.UnifiedSetParallelUnsortedIterable.UnifiedSetParallelSplitLazyIterable
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.stack.immutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.stack.immutable Modifier and Type Class Description (package private) class
ImmutableEmptyStack<T>
(package private) class
ImmutableNotEmptyStack<T>
-