Uses of Package
org.eclipse.collections.api.list
-
Packages that use org.eclipse.collections.api.list 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.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.collection org.eclipse.collections.api.factory.list This package contains factory API for creating instances of typeListIterable
.org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList
.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap
org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.multimap.list This package contains interfaces forListMultimap
.org.eclipse.collections.api.ordered org.eclipse.collections.api.partition.list This package contains interfaces forPartitionList
.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 theImmutableBag
interface.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBag
interface.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag
.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMap
interface.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction
,Predicate
,SerializableComparator
andProcedure
.org.eclipse.collections.impl.block.function org.eclipse.collections.impl.block.function.primitive This package contains implementations of primitive functions.org.eclipse.collections.impl.block.procedure.primitive This package contains implementations of primitive procedures.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.factory This package contains static utilities for creating mutable and immutable collection factories.org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterable
interface.org.eclipse.collections.impl.lazy.parallel org.eclipse.collections.impl.lazy.parallel.list org.eclipse.collections.impl.lazy.parallel.set.sorted 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.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.list.primitive This package contains implementations of the primitive list interfaces.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 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.multimap.list This package contains implementations of theListMultimap
interface.org.eclipse.collections.impl.partition.list This package contains implementations of thePartitionList
interface.org.eclipse.collections.impl.partition.stack This package contains implementations of thePartitionStack
interface.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.mutable This package contains implementations of sets with user definedHashingStrategy
s.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.org.eclipse.collections.impl.string.immutable org.eclipse.collections.impl.tuple org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.api Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.api.bag Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.ListIterable An iterable whose items are ordered and may be accessed directly by index.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.api.bag.primitive Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.ListIterable An iterable whose items are ordered and may be accessed directly by index.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.api.bag.sorted Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.ListIterable An iterable whose items are ordered and may be accessed directly by index.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol.ParallelListIterable A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.api.collection Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.api.factory.list Class Description FixedSizeList A FixedSizeList is a list that may be mutated, but cannot grow or shrink in size.ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.MultiReaderList A MultiReaderList provides thread-safe iteration for a list through methodswithReadLockAndDelegate()
andwithWriteLockAndDelegate()
.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.api.list Class Description FixedSizeList A FixedSizeList is a list that may be mutated, but cannot grow or shrink in size.ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.ListIterable An iterable whose items are ordered and may be accessed directly by index.MultiReaderList A MultiReaderList provides thread-safe iteration for a list through methodswithReadLockAndDelegate()
andwithWriteLockAndDelegate()
.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol.ParallelListIterable A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.api.list.primitive Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.ListIterable An iterable whose items are ordered and may be accessed directly by index.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.api.map Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.ListIterable An iterable whose items are ordered and may be accessed directly by index.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.api.map.sorted Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.ListIterable An iterable whose items are ordered and may be accessed directly by index.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.api.multimap.list Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.ListIterable An iterable whose items are ordered and may be accessed directly by index.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.api.ordered Class Description ListIterable An iterable whose items are ordered and may be accessed directly by index. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.api.partition.list Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.ListIterable An iterable whose items are ordered and may be accessed directly by index.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.api.set.sorted Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.ListIterable An iterable whose items are ordered and may be accessed directly by index.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol.ParallelListIterable A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.api.stack Class Description ListIterable An iterable whose items are ordered and may be accessed directly by index. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.bag Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.bag.immutable Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.bag.immutable.primitive Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.bag.mutable Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.bag.mutable.primitive Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.bag.sorted.immutable Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.bag.sorted.mutable Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.bimap Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.bimap.mutable Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.block.factory Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.block.function Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.block.function.primitive Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.block.procedure.primitive Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.collection Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.collection.mutable Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.collector Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.factory Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.lazy Class Description ListIterable An iterable whose items are ordered and may be accessed directly by index.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.lazy.parallel Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol.ParallelListIterable A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.lazy.parallel.list Class Description ListIterable An iterable whose items are ordered and may be accessed directly by index.ParallelListIterable A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.lazy.parallel.set.sorted Class Description ParallelListIterable A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.list Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.list.fixed Class Description FixedSizeList A FixedSizeList is a list that may be mutated, but cannot grow or shrink in size.ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.ListIterable An iterable whose items are ordered and may be accessed directly by index.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.list.immutable Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.ListIterable An iterable whose items are ordered and may be accessed directly by index.ParallelListIterable A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.list.immutable.primitive Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.list.mutable Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.ListIterable An iterable whose items are ordered and may be accessed directly by index.MultiReaderList A MultiReaderList provides thread-safe iteration for a list through methodswithReadLockAndDelegate()
andwithWriteLockAndDelegate()
.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol.ParallelListIterable A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.list.mutable.primitive Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.list.primitive Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.map.immutable.primitive Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.map.mutable Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.map.mutable.primitive Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.map.ordered.mutable Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.map.sorted.immutable Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.map.sorted.mutable Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.multimap.list Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.partition.list Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.partition.stack Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.set.mutable Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.set.sorted.immutable Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.set.sorted.mutable Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.set.strategy.mutable Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.stack.immutable Class Description ListIterable An iterable whose items are ordered and may be accessed directly by index.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.stack.mutable Class Description ListIterable An iterable whose items are ordered and may be accessed directly by index.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.string.immutable Class Description ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.tuple Class Description FixedSizeList A FixedSizeList is a list that may be mutated, but cannot grow or shrink in size.ImmutableList ImmutableList is the non-modifiable equivalent interface toMutableList
.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.utility Class Description MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.list used by org.eclipse.collections.impl.utility.internal Class Description ListIterable An iterable whose items are ordered and may be accessed directly by index.MutableList A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol.