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 theImmutableBaginterface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBaginterface.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 definedHashingStrategys.org.eclipse.collections.impl.collection.immutable This package contains implementations of theImmutableCollectioninterface.org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollectioninterface.org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterableinterface.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 theListIterableinterface.org.eclipse.collections.impl.list.fixed This package contains implementations of theFixedSizeListinterface.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableListinterface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableListinterface.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map This package contains implementations of theMapIterableinterface.org.eclipse.collections.impl.map.fixed This package contains implementations of theFixedSizeMapinterface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMapinterface.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMapinterface.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.immutable org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMapinterface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMapinterface.org.eclipse.collections.impl.map.strategy.immutable This package contains immutable map implementations backed by hashtables that rely onHashingStrategys 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 onHashingStrategys 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.mutable.primitive This package contains implementations of the mutable primitive set interfaces.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 definedHashingStrategys.org.eclipse.collections.impl.set.strategy.mutable This package contains implementations of sets with user definedHashingStrategys.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStackinterface. -
-
Uses of AbstractRichIterable in org.eclipse.collections.impl.bag
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.bag Modifier and Type Class Description classAbstractBag<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 classAbstractImmutableBag<T>classAbstractImmutableBagIterable<T>classImmutableArrayBag<T>(package private) classImmutableEmptyBag<T>This is a zero elementImmutableBagwhich is created by calling the Bags.immutable.empty().classImmutableHashBag<T>(package private) classImmutableSingletonBag<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 classAbstractHashBag<T>classAbstractMutableBag<T>classAbstractMutableBagIterable<T>classHashBag<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) classAbstractImmutableSortedBag<T>(package private) classImmutableEmptySortedBag<T>(package private) classImmutableSortedBagImpl<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 classAbstractMutableSortedBag<T>classTreeBag<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 classHashBagWithHashingStrategy<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 classAbstractImmutableCollection<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 classAbstractMutableCollection<T> -
Uses of AbstractRichIterable in org.eclipse.collections.impl.lazy
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.lazy Modifier and Type Class Description classAbstractLazyIterable<T>AbstractLazyIterable provides a base from which deferred iterables such as SelectIterable, RejectIterable and CollectIterable can be derived.classChunkIterable<T>A 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.classCompositeIterable<E>classDistinctIterable<T>A 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.classDropWhileIterable<T>Iterates over the elements of the adapted Iterable skipping the first elements until the predicate returns false.classFlatCollectIterable<T,V>classLazyIterableAdapter<T>A LazyIterableAdapter wraps any iterable with the LazyIterable interface.classRejectIterable<T>A RejectIterable is an iterable that filters a source iterable on a negative condition as it iterates.classReverseIterable<T>A ReverseIterable is an iterable that wraps another iterable and iterates in reverse order.classSelectInstancesOfIterable<T>A SelectIterable is an iterable that filters a source iterable for instances of a Class as it iterates.classSelectIterable<T>A 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.classTakeWhileIterable<T>Iterates 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.classZipWithIndexIterable<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 classListIterableParallelIterable.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 classChunkBooleanIterableThis file was automatically generated from template file chunkPrimitiveIterable.stg.classChunkByteIterableThis file was automatically generated from template file chunkPrimitiveIterable.stg.classChunkCharIterableThis file was automatically generated from template file chunkPrimitiveIterable.stg.classChunkDoubleIterableThis file was automatically generated from template file chunkPrimitiveIterable.stg.classChunkFloatIterableThis file was automatically generated from template file chunkPrimitiveIterable.stg.classChunkIntIterableThis file was automatically generated from template file chunkPrimitiveIterable.stg.classChunkLongIterableThis file was automatically generated from template file chunkPrimitiveIterable.stg.classChunkShortIterableThis file was automatically generated from template file chunkPrimitiveIterable.stg.classCollectBooleanToObjectIterable<V>classCollectByteToObjectIterable<V>This file was automatically generated from template file collectPrimitiveToObjectIterable.stg.classCollectCharToObjectIterable<V>This file was automatically generated from template file collectPrimitiveToObjectIterable.stg.classCollectDoubleToObjectIterable<V>This file was automatically generated from template file collectPrimitiveToObjectIterable.stg.classCollectFloatToObjectIterable<V>This file was automatically generated from template file collectPrimitiveToObjectIterable.stg.classCollectIntToObjectIterable<V>This file was automatically generated from template file collectPrimitiveToObjectIterable.stg.classCollectLongToObjectIterable<V>This file was automatically generated from template file collectPrimitiveToObjectIterable.stg.classCollectShortToObjectIterable<V>This file was automatically generated from template file collectPrimitiveToObjectIterable.stg.classFlatCollectBooleanToObjectIterable<V>This file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.classFlatCollectByteToObjectIterable<V>This file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.classFlatCollectCharToObjectIterable<V>This file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.classFlatCollectDoubleToObjectIterable<V>This file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.classFlatCollectFloatToObjectIterable<V>This file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.classFlatCollectIntToObjectIterable<V>This file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.classFlatCollectLongToObjectIterable<V>This file was automatically generated from template file flatCollectPrimitiveToObjectIterable.stg.classFlatCollectShortToObjectIterable<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 classIntervalAn 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 classAbstractArrayAdapter<T>classAbstractMemoryEfficientMutableList<T>private static classAbstractMemoryEfficientMutableList.SubList<T>classArrayAdapter<T>This class provides a MutableList wrapper around an array.(package private) classDoubletonList<T>A DoubletonList is a two-element memory efficient List.(package private) classEmptyList<T>This class is a memory efficient list with no elements.(package private) classQuadrupletonList<T>This is a four element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four).(package private) classQuintupletonList<T>This is a five element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four, five).(package private) classSextupletonList<T>This is a six element immutable List which is created by calling Lists.fixedSize.of(one, two, three, four, five, six).(package private) classSingletonList<T>This class is a memory efficient list with one element.(package private) classTripletonList<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) classAbstractImmutableList<T>This class is the parent class for all ImmutableLists.protected static classAbstractImmutableList.ImmutableSubList<T>(package private) classImmutableArrayList<T>An ImmutableArrayList wraps a Java array, but it cannot be modified after creation.(package private) classImmutableDecapletonList<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) classImmutableDoubletonList<T>This is a two element immutable List which is created by calling Immutable.newListWith(one, two) method.(package private) classImmutableEmptyList<T>This is a zero elementImmutableListwhich is created by calling the Lists.immutable.empty() method.(package private) classImmutableNonupletonList<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) classImmutableOctupletonList<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) classImmutableQuadrupletonList<T>This is a four element immutable List which is created by calling Immutable.newListWith(one, two, three, four) method.(package private) classImmutableQuintupletonList<T>This is a five element immutable List which is created by calling Immutable.newListWith(one, two, three, four, five) method.(package private) classImmutableSeptupletonList<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) classImmutableSextupletonList<T>This is a six element immutable List which is created by calling Immutable.newListWith(one, two, three, four, five, six) method.(package private) classImmutableSingletonList<T>This is a single element immutable List which is created by calling Immutable.newListWith(one) method.(package private) classImmutableTripletonList<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 classAbstractMutableList<T>protected static classAbstractMutableList.SubList<T>classCompositeFastList<E>CompositeFastList 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. -
Uses of AbstractRichIterable in org.eclipse.collections.impl.list.mutable.primitive
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.list.mutable.primitive Modifier and Type Class Description classBoxedMutableBooleanListA boxed view of aMutableBooleanList.classBoxedMutableByteListA boxed view of aMutableByteList.classBoxedMutableCharListA boxed view of aMutableCharList.classBoxedMutableDoubleListA boxed view of aMutableDoubleList.classBoxedMutableFloatListA boxed view of aMutableFloatList.classBoxedMutableIntListA boxed view of aMutableIntList.classBoxedMutableLongListA boxed view of aMutableLongList.classBoxedMutableShortListA boxed view of aMutableShortList. -
Uses of AbstractRichIterable in org.eclipse.collections.impl.map
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.map Modifier and Type Class Description classAbstractMapIterable<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) classAbstractMemoryEfficientMutableMap<K,V>(package private) classDoubletonMap<K,V>(package private) classEmptyMap<K,V>(package private) classSingletonMap<K,V>(package private) classTripletonMap<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 classAbstractImmutableMap<K,V>(package private) classImmutableDoubletonMap<K,V>(package private) classImmutableEmptyMap<K,V>This is a zero elementImmutableMapwhich is created by calling the Maps.immutable.empty() method.(package private) classImmutableQuadrupletonMap<K,V>(package private) classImmutableSingletonMap<K,V>(package private) classImmutableTripletonMap<K,V>classImmutableUnifiedMap<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 classAbstractMutableMap<K,V>classAbstractMutableMapIterable<K,V>classConcurrentHashMap<K,V>classConcurrentHashMapUnsafe<K,V>classConcurrentMutableHashMap<K,V>Deprecated.since 2.0classMapAdapter<K,V>This class provides a MutableMap wrapper around a JDK Collections Map interface instance.classUnifiedMap<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.immutable
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.map.ordered.immutable Modifier and Type Class Description classImmutableOrderedMapAdapter<K,V> -
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 classOrderedMapAdapter<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 classAbstractImmutableSortedMap<K,V>(package private) classImmutableEmptySortedMap<K,V>This is a zero elementImmutableSortedMapwhich is created by calling SortedMaps.immutable.empty().classImmutableTreeMap<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 classAbstractMutableSortedMap<K,V>classSortedMapAdapter<K,V>This class provides a MutableSortedMap wrapper around a JDK Collections SortedMap interface instance.classTreeSortedMap<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) classImmutableEmptyMapWithHashingStrategy<K,V>This is a zero elementImmutableUnifiedMapWithHashingStrategywhich is created by calling the HashingStrategyMaps.immutable.empty() method.classImmutableUnifiedMapWithHashingStrategy<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 classUnifiedMapWithHashingStrategy<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 classAbstractUnifiedSet<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) classAbstractMemoryEfficientMutableSet<T>(package private) classDoubletonSet<T>(package private) classEmptySet<T>This class is a memory efficient list with no elements.(package private) classQuadrupletonSet<T>(package private) classSingletonSet<T>(package private) classTripletonSet<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 classAbstractImmutableSet<T>This class is the parent class for all ImmutableSets.(package private) classImmutableDoubletonSet<T>(package private) classImmutableEmptySet<T>This is a zero elementImmutableSetwhich is created by calling the Sets.immutable.empty() method.(package private) classImmutableQuadrupletonSet<T>(package private) classImmutableSingletonSet<T>(package private) classImmutableTripletonSet<T>(package private) classImmutableUnifiedSet<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 classAbstractMutableSet<T>classUnifiedSet<T>private classUnifiedSet.UnifiedSetParallelUnsortedIterable.UnifiedSetParallelSplitLazyIterable -
Uses of AbstractRichIterable in org.eclipse.collections.impl.set.mutable.primitive
Subclasses of AbstractRichIterable in org.eclipse.collections.impl.set.mutable.primitive Modifier and Type Class Description classBoxedMutableBooleanSetA boxed view of aMutableBooleanSet.classBoxedMutableByteSetA boxed view of aMutableByteSet.classBoxedMutableCharSetA boxed view of aMutableCharSet.classBoxedMutableDoubleSetA boxed view of aMutableDoubleSet.classBoxedMutableFloatSetA boxed view of aMutableFloatSet.classBoxedMutableIntSetA boxed view of aMutableIntSet.classBoxedMutableLongSetA boxed view of aMutableLongSet.classBoxedMutableShortSetA boxed view of aMutableShortSet. -
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) classAbstractImmutableSortedSet<T>This class is the parent class for all ImmutableSortedSets.(package private) classImmutableEmptySortedSet<T>This is a zero elementImmutableSortedSetwhich is created by calling the SortedSets.immutable.empty() method.(package private) classImmutableTreeSet<T>private classImmutableTreeSet.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 classTreeSortedSet<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) classImmutableEmptySetWithHashingStrategy<T>This is a zero elementImmutableUnifiedSetWithHashingStrategywhich is created by calling the HashingStrategySets.immutable.empty() method.(package private) classImmutableUnifiedSetWithHashingStrategy<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 classUnifiedSetWithHashingStrategy<T>private classUnifiedSetWithHashingStrategy.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) classImmutableEmptyStack<T>(package private) classImmutableNotEmptyStack<T>
-