Uses of Package
org.eclipse.collections.api.set
-
Packages that use org.eclipse.collections.api.set 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.bimap This package contains interfaces for BiMap API.org.eclipse.collections.api.factory.set org.eclipse.collections.api.factory.set.strategy This package contains Factory API forImmutableHashingStrategySetFactory
andMutableHashingStrategySetFactory
.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 ofMap
org.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.multimap This package contains interfaces forMultimap
.org.eclipse.collections.api.multimap.set This package contains interfaces forSetMultimap
.org.eclipse.collections.api.partition.set This package contains interfaces forPartitionSet
.org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet
.org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set 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.mutable This package contains implementations of theMutableBag
interface.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.immutable 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.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.iterator This package contains implementations of theIterator
interface.org.eclipse.collections.impl.lazy.parallel org.eclipse.collections.impl.lazy.parallel.bag org.eclipse.collections.impl.lazy.parallel.list org.eclipse.collections.impl.lazy.parallel.set 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.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.map.fixed This package contains implementations of theFixedSizeMap
interface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMap
interface.org.eclipse.collections.impl.map.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.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.multimap This package contains implementations of theMultimap
interface.org.eclipse.collections.impl.multimap.set This package contains implementations of theSetMultimap
interface.org.eclipse.collections.impl.multimap.set.strategy This package contains implementations of theSetMultimap
interface which use a set with user-definedHashingStrategy
as their underlying store for the multiple values of a given key.org.eclipse.collections.impl.partition.set This package contains implementations of thePartitionSet
interface.org.eclipse.collections.impl.partition.set.strategy This package contains implementations of thePartitionMutableSet
interface.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.immutable.primitive This package contains implementations of the immutable primitive set interfaces.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 definedHashingStrategy
s.org.eclipse.collections.impl.set.strategy.mutable This package contains implementations of sets with user definedHashingStrategy
s.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.org.eclipse.collections.impl.test This package containsSerializeTestHelper
andVerify
classes.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.set used by org.eclipse.collections.api Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.api.bag Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.ImmutableSetIterable MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.MutableSetIterable ParallelUnsortedSetIterable A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc.SetIterable A Read-only Set api, with the minor exception inherited from java.lang.Iterable (iterable.iterator().remove()).UnsortedSetIterable An iterable whose items are unique. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.api.bimap Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.SetIterable A Read-only Set api, with the minor exception inherited from java.lang.Iterable (iterable.iterator().remove()). -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.api.factory.set Class Description FixedSizeSet A FixedSizeSet is a set that may be mutated, but cannot grow or shrink in size.ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.MultiReaderSet A MultiReaderSet provides thread-safe iteration for a set through methodswithReadLockAndDelegate()
andwithWriteLockAndDelegate()
.MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.api.factory.set.strategy Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.api.list Class Description ParallelUnsortedSetIterable A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.api.map Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.UnsortedSetIterable An iterable whose items are unique. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.api.map.primitive Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.UnsortedSetIterable An iterable whose items are unique. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.api.map.sorted Class Description MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.api.multimap Class Description SetIterable A Read-only Set api, with the minor exception inherited from java.lang.Iterable (iterable.iterator().remove()). -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.api.multimap.set Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.ImmutableSetIterable MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.MutableSetIterable SetIterable A Read-only Set api, with the minor exception inherited from java.lang.Iterable (iterable.iterator().remove()).UnsortedSetIterable An iterable whose items are unique. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.api.partition.set Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.ImmutableSetIterable MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.MutableSetIterable SetIterable A Read-only Set api, with the minor exception inherited from java.lang.Iterable (iterable.iterator().remove()).UnsortedSetIterable An iterable whose items are unique. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.api.set Class Description FixedSizeSet A FixedSizeSet is a set that may be mutated, but cannot grow or shrink in size.ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.ImmutableSetIterable MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.MutableSetIterable ParallelSetIterable ParallelUnsortedSetIterable A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc.SetIterable A Read-only Set api, with the minor exception inherited from java.lang.Iterable (iterable.iterator().remove()).UnsortedSetIterable An iterable whose items are unique. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.api.set.primitive Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.SetIterable A Read-only Set api, with the minor exception inherited from java.lang.Iterable (iterable.iterator().remove()). -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.api.set.sorted Class Description ImmutableSetIterable MutableSetIterable ParallelSetIterable SetIterable A Read-only Set api, with the minor exception inherited from java.lang.Iterable (iterable.iterator().remove()). -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl Class Description MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.bag Class Description MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.bag.immutable Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.bag.mutable Class Description MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.bimap Class Description MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.bimap.immutable Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.bimap.mutable Class Description MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.block.factory Class Description MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.SetIterable A Read-only Set api, with the minor exception inherited from java.lang.Iterable (iterable.iterator().remove()). -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.collection Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.collection.mutable Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.collector Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.factory Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.lazy.iterator Class Description MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.lazy.parallel Class Description MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.ParallelSetIterable ParallelUnsortedSetIterable A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.lazy.parallel.bag Class Description ParallelUnsortedSetIterable A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.lazy.parallel.list Class Description ParallelSetIterable ParallelUnsortedSetIterable A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.lazy.parallel.set Class Description ParallelSetIterable ParallelUnsortedSetIterable A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc.UnsortedSetIterable An iterable whose items are unique. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.lazy.parallel.set.sorted Class Description ParallelSetIterable -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.list Class Description MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.list.mutable Class Description MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.map.fixed Class Description MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.map.immutable Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.map.immutable.primitive Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.map.mutable Class Description MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.map.mutable.primitive Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.map.ordered.mutable Class Description MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.map.sorted.mutable Class Description MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.multimap Class Description SetIterable A Read-only Set api, with the minor exception inherited from java.lang.Iterable (iterable.iterator().remove()). -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.multimap.set Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.multimap.set.strategy Class Description MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.partition.set Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.partition.set.strategy Class Description MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.set Class Description MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.MutableSetIterable Pool SetIterable A Read-only Set api, with the minor exception inherited from java.lang.Iterable (iterable.iterator().remove()).UnsortedSetIterable An iterable whose items are unique. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.set.fixed Class Description FixedSizeSet A FixedSizeSet is a set that may be mutated, but cannot grow or shrink in size.MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.MutableSetIterable ParallelUnsortedSetIterable A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc.SetIterable A Read-only Set api, with the minor exception inherited from java.lang.Iterable (iterable.iterator().remove()).UnsortedSetIterable An iterable whose items are unique. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.set.immutable Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.ImmutableSetIterable ParallelUnsortedSetIterable A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc.SetIterable A Read-only Set api, with the minor exception inherited from java.lang.Iterable (iterable.iterator().remove()).UnsortedSetIterable An iterable whose items are unique. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.set.immutable.primitive Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.set.mutable Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.MultiReaderSet A MultiReaderSet provides thread-safe iteration for a set through methodswithReadLockAndDelegate()
andwithWriteLockAndDelegate()
.MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.MutableSetIterable ParallelSetIterable ParallelUnsortedSetIterable A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc.Pool SetIterable A Read-only Set api, with the minor exception inherited from java.lang.Iterable (iterable.iterator().remove()).UnsortedSetIterable An iterable whose items are unique. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.set.mutable.primitive Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.set.sorted.immutable Class Description ImmutableSetIterable ParallelSetIterable SetIterable A Read-only Set api, with the minor exception inherited from java.lang.Iterable (iterable.iterator().remove()). -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.set.sorted.mutable Class Description MutableSetIterable SetIterable A Read-only Set api, with the minor exception inherited from java.lang.Iterable (iterable.iterator().remove()). -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.set.strategy.immutable Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.ImmutableSetIterable ParallelUnsortedSetIterable A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc.SetIterable A Read-only Set api, with the minor exception inherited from java.lang.Iterable (iterable.iterator().remove()).UnsortedSetIterable An iterable whose items are unique. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.set.strategy.mutable Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.MutableSetIterable ParallelSetIterable ParallelUnsortedSetIterable A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc.Pool SetIterable A Read-only Set api, with the minor exception inherited from java.lang.Iterable (iterable.iterator().remove()).UnsortedSetIterable An iterable whose items are unique. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.stack.immutable Class Description MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.stack.mutable Class Description MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.test Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.utility Class Description MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol. -
Classes in org.eclipse.collections.api.set used by org.eclipse.collections.impl.utility.internal Class Description ImmutableSet ImmutableSet is the non-modifiable equivalent interface toMutableSet
.MutableSet A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.SetIterable A Read-only Set api, with the minor exception inherited from java.lang.Iterable (iterable.iterator().remove()).