Uses of Interface
org.eclipse.collections.api.InternalIterable
-
Packages that use InternalIterable Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.bimap This package contains interfaces for BiMap API.org.eclipse.collections.api.collection org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMaporg.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.ordered org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.api.stack This package contains interfaces for stack API.org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.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.bimap org.eclipse.collections.impl.bimap.immutable org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMapinterface.org.eclipse.collections.impl.collection 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.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.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.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStackinterface. -
-
Uses of InternalIterable in org.eclipse.collections.api
Subinterfaces of InternalIterable in org.eclipse.collections.api Modifier and Type Interface Description interfaceLazyIterable<T>A LazyIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc.interfaceRichIterable<T>RichIterable is a read-only interface which extends the InternalIterable interface and adds many internal iterator methods. -
Uses of InternalIterable in org.eclipse.collections.api.bag
Subinterfaces of InternalIterable in org.eclipse.collections.api.bag Modifier and Type Interface Description interfaceBag<T>A Bag is a Collection whose elements are unordered and may contain duplicate entries.interfaceImmutableBag<T>interfaceImmutableBagIterable<T>interfaceMultiReaderBag<T>A 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.interfaceMutableBagIterable<T>interfaceUnsortedBag<T> -
Uses of InternalIterable in org.eclipse.collections.api.bag.sorted
Subinterfaces of InternalIterable in org.eclipse.collections.api.bag.sorted Modifier and Type Interface Description interfaceImmutableSortedBag<T>ImmutableSortedBag is the non-modifiable equivalent interface toMutableSortedBag.interfaceMutableSortedBag<T>interfaceSortedBag<T>An Iterable whose elements are sorted by some comparator or their natural ordering and may contain duplicate entries. -
Uses of InternalIterable in org.eclipse.collections.api.bimap
Subinterfaces of InternalIterable in org.eclipse.collections.api.bimap Modifier and Type Interface Description interfaceBiMap<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 InternalIterable in org.eclipse.collections.api.collection
Subinterfaces of InternalIterable in org.eclipse.collections.api.collection Modifier and Type Interface Description interfaceFixedSizeCollection<T>A FixedSizeCollection is a collection that may be mutated, but cannot grow or shrink in size.interfaceImmutableCollection<T>ImmutableCollection is the common interface between ImmutableList, ImmutableSet and ImmutableBag.interfaceMutableCollection<T>MutableCollection is an interface which extends the base java.util.Collection interface and adds several internal iterator methods, from the Smalltalk Collection protocol. -
Uses of InternalIterable in org.eclipse.collections.api.list
Subinterfaces of InternalIterable in org.eclipse.collections.api.list Modifier and Type Interface Description interfaceFixedSizeList<T>A FixedSizeList is a list that may be mutated, but cannot grow or shrink in size.interfaceImmutableList<T>ImmutableList is the non-modifiable equivalent interface toMutableList.interfaceListIterable<T>An iterable whose items are ordered and may be accessed directly by index.interfaceMultiReaderList<T>A 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 InternalIterable in org.eclipse.collections.api.map
Subinterfaces of InternalIterable in org.eclipse.collections.api.map Modifier and Type Interface Description interfaceConcurrentMutableMap<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. -
Uses of InternalIterable in org.eclipse.collections.api.map.primitive
Subinterfaces of InternalIterable in org.eclipse.collections.api.map.primitive Modifier and Type Interface Description interfaceByteObjectMap<V>This file was automatically generated from template file primitiveObjectMap.stg.interfaceCharObjectMap<V>This file was automatically generated from template file primitiveObjectMap.stg.interfaceDoubleObjectMap<V>This file was automatically generated from template file primitiveObjectMap.stg.interfaceFloatObjectMap<V>This file was automatically generated from template file primitiveObjectMap.stg.interfaceImmutableByteObjectMap<V>This file was automatically generated from template file immutablePrimitiveObjectMap.stg.interfaceImmutableCharObjectMap<V>This file was automatically generated from template file immutablePrimitiveObjectMap.stg.interfaceImmutableDoubleObjectMap<V>This file was automatically generated from template file immutablePrimitiveObjectMap.stg.interfaceImmutableFloatObjectMap<V>This file was automatically generated from template file immutablePrimitiveObjectMap.stg.interfaceImmutableIntObjectMap<V>This file was automatically generated from template file immutablePrimitiveObjectMap.stg.interfaceImmutableLongObjectMap<V>This file was automatically generated from template file immutablePrimitiveObjectMap.stg.interfaceImmutablePrimitiveObjectMap<V>interfaceImmutableShortObjectMap<V>This file was automatically generated from template file immutablePrimitiveObjectMap.stg.interfaceIntObjectMap<V>This file was automatically generated from template file primitiveObjectMap.stg.interfaceLongObjectMap<V>This file was automatically generated from template file primitiveObjectMap.stg.interfaceMutableByteObjectMap<V>This file was automatically generated from template file mutablePrimitiveObjectMap.stg.interfaceMutableCharObjectMap<V>This file was automatically generated from template file mutablePrimitiveObjectMap.stg.interfaceMutableDoubleObjectMap<V>This file was automatically generated from template file mutablePrimitiveObjectMap.stg.interfaceMutableFloatObjectMap<V>This file was automatically generated from template file mutablePrimitiveObjectMap.stg.interfaceMutableIntObjectMap<V>This file was automatically generated from template file mutablePrimitiveObjectMap.stg.interfaceMutableLongObjectMap<V>This file was automatically generated from template file mutablePrimitiveObjectMap.stg.interfaceMutablePrimitiveObjectMap<V>interfaceMutableShortObjectMap<V>This file was automatically generated from template file mutablePrimitiveObjectMap.stg.interfacePrimitiveObjectMap<V>interfaceShortObjectMap<V>This file was automatically generated from template file primitiveObjectMap.stg. -
Uses of InternalIterable in org.eclipse.collections.api.map.sorted
Subinterfaces of InternalIterable in org.eclipse.collections.api.map.sorted Modifier and Type Interface Description interfaceImmutableSortedMap<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 InternalIterable in org.eclipse.collections.api.ordered
Subinterfaces of InternalIterable in org.eclipse.collections.api.ordered Modifier and Type Interface Description interfaceOrderedIterable<T>An OrderedIterable is a RichIterable with some meaningful order, such as insertion order, access order, or sorted order.interfaceReversibleIterable<T>A ReversibleIterable is an ordered iterable that you can iterate over forwards or backwards.interfaceSortedIterable<T>A SortedIterable is an ordered iterable where the elements are stored in sorted order defined by a non-strict partial order relation. -
Uses of InternalIterable in org.eclipse.collections.api.set
Subinterfaces of InternalIterable in org.eclipse.collections.api.set Modifier and Type Interface Description interfaceFixedSizeSet<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.interfaceImmutableSetIterable<T>interfaceMultiReaderSet<T>A 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.interfaceMutableSetIterable<T>interfaceSetIterable<T>A Read-only Set api, with the minor exception inherited from java.lang.Iterable (iterable.iterator().remove()).interfaceUnsortedSetIterable<T>An iterable whose items are unique. -
Uses of InternalIterable in org.eclipse.collections.api.set.sorted
Subinterfaces of InternalIterable in org.eclipse.collections.api.set.sorted Modifier and Type Interface Description interfaceImmutableSortedSet<T>ImmutableSortedSet is the non-modifiable equivalent interface toMutableSortedSet.interfaceMutableSortedSet<T>A MutableSortedSet is an implementation of a JCF SortedSet which provides methods matching the Smalltalk Collection protocol.interfaceSortedSetIterable<T>An iterable whose items are unique and sorted by some comparator or their natural ordering. -
Uses of InternalIterable in org.eclipse.collections.api.stack
Subinterfaces of InternalIterable in org.eclipse.collections.api.stack Modifier and Type Interface Description interfaceImmutableStack<T>interfaceMutableStack<T>interfaceStackIterable<T>StackIterable is a last-in-first-out data structure. -
Uses of InternalIterable in org.eclipse.collections.impl
Classes in org.eclipse.collections.impl that implement InternalIterable Modifier and Type Class Description classAbstractRichIterable<T>classSynchronizedRichIterable<T>A synchronized view of a RichIterable.classUnmodifiableRichIterable<T>An unmodifiable view of a RichIterable. -
Uses of InternalIterable in org.eclipse.collections.impl.bag
Classes in org.eclipse.collections.impl.bag that implement InternalIterable Modifier and Type Class Description classAbstractBag<T> -
Uses of InternalIterable in org.eclipse.collections.impl.bag.immutable
Classes in org.eclipse.collections.impl.bag.immutable that implement InternalIterable 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 InternalIterable in org.eclipse.collections.impl.bag.mutable
Classes in org.eclipse.collections.impl.bag.mutable that implement InternalIterable 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.classMultiReaderHashBag<T>MultiReaderHashBag provides a thread-safe wrapper around a HashBag, using a ReentrantReadWriteLock.(package private) static classMultiReaderHashBag.UntouchableMutableBag<T>classSynchronizedBag<T>A synchronized view of aMutableBag.classUnmodifiableBag<T>An unmodifiable view of a bag. -
Uses of InternalIterable in org.eclipse.collections.impl.bag.sorted.immutable
Classes in org.eclipse.collections.impl.bag.sorted.immutable that implement InternalIterable Modifier and Type Class Description (package private) classAbstractImmutableSortedBag<T>(package private) classImmutableEmptySortedBag<T>(package private) classImmutableSortedBagImpl<T> -
Uses of InternalIterable in org.eclipse.collections.impl.bag.sorted.mutable
Classes in org.eclipse.collections.impl.bag.sorted.mutable that implement InternalIterable Modifier and Type Class Description classAbstractMutableSortedBag<T>classSynchronizedSortedBag<T>A synchronized view of aMutableSortedBag.classTreeBag<T>A TreeBag is a MutableSortedBag which uses a SortedMap as its underlying data store.classUnmodifiableSortedBag<T>An unmodifiable view of a SortedBag. -
Uses of InternalIterable in org.eclipse.collections.impl.bag.strategy.mutable
Classes in org.eclipse.collections.impl.bag.strategy.mutable that implement InternalIterable Modifier and Type Class Description classHashBagWithHashingStrategy<T> -
Uses of InternalIterable in org.eclipse.collections.impl.bimap
Classes in org.eclipse.collections.impl.bimap that implement InternalIterable Modifier and Type Class Description classAbstractBiMap<K,V> -
Uses of InternalIterable in org.eclipse.collections.impl.bimap.immutable
Classes in org.eclipse.collections.impl.bimap.immutable that implement InternalIterable Modifier and Type Class Description classAbstractImmutableBiMap<K,V>private static classAbstractImmutableBiMap.Inverse<K,V>(package private) classImmutableHashBiMap<K,V> -
Uses of InternalIterable in org.eclipse.collections.impl.bimap.mutable
Classes in org.eclipse.collections.impl.bimap.mutable that implement InternalIterable Modifier and Type Class Description (package private) classAbstractMutableBiMap<K,V>private static classAbstractMutableBiMap.Inverse<K,V>classHashBiMap<K,V>AMutableBiMapwhich uses two hash tables as its underlying data store.classSynchronizedBiMap<K,V>classUnmodifiableBiMap<K,V> -
Uses of InternalIterable in org.eclipse.collections.impl.collection
Classes in org.eclipse.collections.impl.collection that implement InternalIterable Modifier and Type Class Description classAbstractSynchronizedRichIterable<T> -
Uses of InternalIterable in org.eclipse.collections.impl.collection.immutable
Classes in org.eclipse.collections.impl.collection.immutable that implement InternalIterable Modifier and Type Class Description classAbstractImmutableCollection<T> -
Uses of InternalIterable in org.eclipse.collections.impl.collection.mutable
Classes in org.eclipse.collections.impl.collection.mutable that implement InternalIterable Modifier and Type Class Description classAbstractCollectionAdapter<T>classAbstractMultiReaderMutableCollection<T>AbstractMultiReaderMutableCollection is an abstraction that provides thread-safe collection behaviors.protected static classAbstractMultiReaderMutableCollection.UntouchableMutableCollection<T>classAbstractMutableCollection<T>classAbstractSynchronizedMutableCollection<T>classAbstractUnmodifiableMutableCollection<T>classCollectionAdapter<T>This class provides a MutableCollection interface wrapper around a JDK Collections Collection interface instance.classSynchronizedMutableCollection<T>A synchronized view of aMutableCollection.classUnmodifiableMutableCollection<T>An unmodifiable view of a collection. -
Uses of InternalIterable in org.eclipse.collections.impl.lazy
Classes in org.eclipse.collections.impl.lazy that implement InternalIterable 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 InternalIterable in org.eclipse.collections.impl.lazy.parallel.list
Classes in org.eclipse.collections.impl.lazy.parallel.list that implement InternalIterable Modifier and Type Class Description private classListIterableParallelIterable.ListIterableParallelBatchLazyIterable -
Uses of InternalIterable in org.eclipse.collections.impl.lazy.primitive
Classes in org.eclipse.collections.impl.lazy.primitive that implement InternalIterable 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 InternalIterable in org.eclipse.collections.impl.list
Classes in org.eclipse.collections.impl.list that implement InternalIterable Modifier and Type Class Description classIntervalAn Interval is a range of integers that may be iterated over using a step value. -
Uses of InternalIterable in org.eclipse.collections.impl.list.fixed
Classes in org.eclipse.collections.impl.list.fixed that implement InternalIterable 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 InternalIterable in org.eclipse.collections.impl.list.immutable
Classes in org.eclipse.collections.impl.list.immutable that implement InternalIterable 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 InternalIterable in org.eclipse.collections.impl.list.mutable
Classes in org.eclipse.collections.impl.list.mutable that implement InternalIterable Modifier and Type Class Description classAbstractListAdapter<T>classAbstractMutableList<T>protected static classAbstractMutableList.SubList<T>classArrayListAdapter<T>This class provides a MutableList wrapper around a JDK Collections ArrayList instance.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.classListAdapter<T>This class provides a MutableList wrapper around a JDK Collections List interface instance.classMultiReaderFastList<T>MultiReadFastList provides a thread-safe wrapper around a FastList, using a ReentrantReadWriteLock.(package private) static classMultiReaderFastList.UntouchableMutableList<T>classRandomAccessListAdapter<T>This class provides a MutableList wrapper around a JDK Collections List interface instance.classSynchronizedMutableList<T>A synchronized view of aMutableList.classUnmodifiableMutableList<T>An unmodifiable view of a list.private static classUnmodifiableMutableList.RandomAccessUnmodifiableMutableList<T> -
Uses of InternalIterable in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement InternalIterable 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 InternalIterable in org.eclipse.collections.impl.map
Classes in org.eclipse.collections.impl.map that implement InternalIterable Modifier and Type Class Description classAbstractMapIterable<K,V>classAbstractSynchronizedMapIterable<K,V>A synchronized view of a map. -
Uses of InternalIterable in org.eclipse.collections.impl.map.fixed
Classes in org.eclipse.collections.impl.map.fixed that implement InternalIterable 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 InternalIterable in org.eclipse.collections.impl.map.immutable
Classes in org.eclipse.collections.impl.map.immutable that implement InternalIterable 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 InternalIterable in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement InternalIterable Modifier and Type Class Description classAbstractImmutableByteObjectMap<V>This file was automatically generated from template file abstractImmutablePrimitiveObjectMap.stg.classAbstractImmutableCharObjectMap<V>This file was automatically generated from template file abstractImmutablePrimitiveObjectMap.stg.classAbstractImmutableDoubleObjectMap<V>This file was automatically generated from template file abstractImmutablePrimitiveObjectMap.stg.classAbstractImmutableFloatObjectMap<V>This file was automatically generated from template file abstractImmutablePrimitiveObjectMap.stg.classAbstractImmutableIntObjectMap<V>This file was automatically generated from template file abstractImmutablePrimitiveObjectMap.stg.classAbstractImmutableLongObjectMap<V>This file was automatically generated from template file abstractImmutablePrimitiveObjectMap.stg.classAbstractImmutableShortObjectMap<V>This file was automatically generated from template file abstractImmutablePrimitiveObjectMap.stg.(package private) classImmutableByteObjectEmptyMap<V>ImmutableByteObjectEmptyMap is an optimization forImmutableByteObjectMapof size 0.(package private) classImmutableByteObjectHashMap<V>ImmutableByteObjectHashMap is the non-modifiable equivalent ofByteObjectHashMap.(package private) classImmutableByteObjectSingletonMap<V>ImmutableByteObjectSingletonMap is an optimization forImmutableByteObjectMapof size 1.(package private) classImmutableCharObjectEmptyMap<V>ImmutableCharObjectEmptyMap is an optimization forImmutableCharObjectMapof size 0.(package private) classImmutableCharObjectHashMap<V>ImmutableCharObjectHashMap is the non-modifiable equivalent ofCharObjectHashMap.(package private) classImmutableCharObjectSingletonMap<V>ImmutableCharObjectSingletonMap is an optimization forImmutableCharObjectMapof size 1.(package private) classImmutableDoubleObjectEmptyMap<V>ImmutableDoubleObjectEmptyMap is an optimization forImmutableDoubleObjectMapof size 0.(package private) classImmutableDoubleObjectHashMap<V>ImmutableDoubleObjectHashMap is the non-modifiable equivalent ofDoubleObjectHashMap.(package private) classImmutableDoubleObjectSingletonMap<V>ImmutableDoubleObjectSingletonMap is an optimization forImmutableDoubleObjectMapof size 1.(package private) classImmutableFloatObjectEmptyMap<V>ImmutableFloatObjectEmptyMap is an optimization forImmutableFloatObjectMapof size 0.(package private) classImmutableFloatObjectHashMap<V>ImmutableFloatObjectHashMap is the non-modifiable equivalent ofFloatObjectHashMap.(package private) classImmutableFloatObjectSingletonMap<V>ImmutableFloatObjectSingletonMap is an optimization forImmutableFloatObjectMapof size 1.(package private) classImmutableIntObjectEmptyMap<V>ImmutableIntObjectEmptyMap is an optimization forImmutableIntObjectMapof size 0.(package private) classImmutableIntObjectHashMap<V>ImmutableIntObjectHashMap is the non-modifiable equivalent ofIntObjectHashMap.(package private) classImmutableIntObjectSingletonMap<V>ImmutableIntObjectSingletonMap is an optimization forImmutableIntObjectMapof size 1.(package private) classImmutableLongObjectEmptyMap<V>ImmutableLongObjectEmptyMap is an optimization forImmutableLongObjectMapof size 0.(package private) classImmutableLongObjectHashMap<V>ImmutableLongObjectHashMap is the non-modifiable equivalent ofLongObjectHashMap.(package private) classImmutableLongObjectSingletonMap<V>ImmutableLongObjectSingletonMap is an optimization forImmutableLongObjectMapof size 1.(package private) classImmutableShortObjectEmptyMap<V>ImmutableShortObjectEmptyMap is an optimization forImmutableShortObjectMapof size 0.(package private) classImmutableShortObjectHashMap<V>ImmutableShortObjectHashMap is the non-modifiable equivalent ofShortObjectHashMap.(package private) classImmutableShortObjectSingletonMap<V>ImmutableShortObjectSingletonMap is an optimization forImmutableShortObjectMapof size 1. -
Uses of InternalIterable in org.eclipse.collections.impl.map.mutable
Classes in org.eclipse.collections.impl.map.mutable that implement InternalIterable 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.classSynchronizedMutableMap<K,V>A synchronized view of aMutableMap.classUnifiedMap<K,V>UnifiedMap stores key/value pairs in a single array, where alternate slots are keys and values.classUnmodifiableMutableMap<K,V>An unmodifiable view of a map. -
Uses of InternalIterable in org.eclipse.collections.impl.map.mutable.primitive
-
Uses of InternalIterable in org.eclipse.collections.impl.map.ordered.immutable
Classes in org.eclipse.collections.impl.map.ordered.immutable that implement InternalIterable Modifier and Type Class Description classImmutableOrderedMapAdapter<K,V> -
Uses of InternalIterable in org.eclipse.collections.impl.map.ordered.mutable
Classes in org.eclipse.collections.impl.map.ordered.mutable that implement InternalIterable Modifier and Type Class Description classOrderedMapAdapter<K,V>classUnmodifiableMutableOrderedMap<K,V>An unmodifiable view of a map. -
Uses of InternalIterable in org.eclipse.collections.impl.map.sorted.immutable
Classes in org.eclipse.collections.impl.map.sorted.immutable that implement InternalIterable 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 InternalIterable in org.eclipse.collections.impl.map.sorted.mutable
Classes in org.eclipse.collections.impl.map.sorted.mutable that implement InternalIterable Modifier and Type Class Description classAbstractMutableSortedMap<K,V>classSortedMapAdapter<K,V>This class provides a MutableSortedMap wrapper around a JDK Collections SortedMap interface instance.classSynchronizedSortedMap<K,V>A synchronized view of a SortedMap.classTreeSortedMap<K,V>classUnmodifiableTreeMap<K,V>An unmodifiable view of a map. -
Uses of InternalIterable in org.eclipse.collections.impl.map.strategy.immutable
Classes in org.eclipse.collections.impl.map.strategy.immutable that implement InternalIterable 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 InternalIterable in org.eclipse.collections.impl.map.strategy.mutable
Classes in org.eclipse.collections.impl.map.strategy.mutable that implement InternalIterable 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 InternalIterable in org.eclipse.collections.impl.set
Classes in org.eclipse.collections.impl.set that implement InternalIterable Modifier and Type Class Description classAbstractUnifiedSet<T> -
Uses of InternalIterable in org.eclipse.collections.impl.set.fixed
Classes in org.eclipse.collections.impl.set.fixed that implement InternalIterable 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 InternalIterable in org.eclipse.collections.impl.set.immutable
Classes in org.eclipse.collections.impl.set.immutable that implement InternalIterable 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 InternalIterable in org.eclipse.collections.impl.set.mutable
Classes in org.eclipse.collections.impl.set.mutable that implement InternalIterable Modifier and Type Class Description classAbstractMutableSet<T>classMultiReaderUnifiedSet<T>MultiReadUnifiedSet provides a thread-safe wrapper around a UnifiedSet, using a ReentrantReadWriteLock.(package private) static classMultiReaderUnifiedSet.UntouchableMutableSet<T>classSetAdapter<T>This class provides a MutableSet wrapper around a JDK Collections Set interface instance.classSynchronizedMutableSet<T>A synchronized view of aMutableSet.classUnifiedSet<T>private classUnifiedSet.UnifiedSetParallelUnsortedIterable.UnifiedSetParallelSplitLazyIterableclassUnmodifiableMutableSet<T>An unmodifiable view of a list. -
Uses of InternalIterable in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement InternalIterable 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 InternalIterable in org.eclipse.collections.impl.set.sorted.immutable
Classes in org.eclipse.collections.impl.set.sorted.immutable that implement InternalIterable 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 InternalIterable in org.eclipse.collections.impl.set.sorted.mutable
Classes in org.eclipse.collections.impl.set.sorted.mutable that implement InternalIterable Modifier and Type Class Description classSortedSetAdapter<T>This class provides a MutableSortedSet wrapper around a JDK Collections SortedSet interface instance.classSynchronizedSortedSet<T>A synchronized view of aMutableSortedSet.classTreeSortedSet<T>classUnmodifiableSortedSet<T>An unmodifiable view of a SortedSet. -
Uses of InternalIterable in org.eclipse.collections.impl.set.strategy.immutable
Classes in org.eclipse.collections.impl.set.strategy.immutable that implement InternalIterable 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 InternalIterable in org.eclipse.collections.impl.set.strategy.mutable
Classes in org.eclipse.collections.impl.set.strategy.mutable that implement InternalIterable Modifier and Type Class Description classUnifiedSetWithHashingStrategy<T>private classUnifiedSetWithHashingStrategy.UnifiedSetParallelUnsortedIterable.UnifiedSetParallelSplitLazyIterable -
Uses of InternalIterable in org.eclipse.collections.impl.stack.immutable
Classes in org.eclipse.collections.impl.stack.immutable that implement InternalIterable Modifier and Type Class Description (package private) classImmutableArrayStack<T>Deprecated.Replaced byImmutableNotEmptyStack.(package private) classImmutableEmptyStack<T>(package private) classImmutableNotEmptyStack<T> -
Uses of InternalIterable in org.eclipse.collections.impl.stack.mutable
Classes in org.eclipse.collections.impl.stack.mutable that implement InternalIterable Modifier and Type Class Description classArrayStack<T>ArrayStack is a MutableStack which contains a FastList of data.classSynchronizedStack<T>A synchronized view of aMutableStack.classUnmodifiableStack<T>
-