Uses of Interface
org.eclipse.collections.api.set.ImmutableSet
Packages that use ImmutableSet
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for Bag API.
This package contains interfaces for BiMap API.
This package contains Factory API for
ImmutableHashingStrategySetFactory
and MutableHashingStrategySetFactory
.This package contains interfaces for map API which enhance the performance and functionality of
Map
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains interfaces for
SetMultimap
.This package contains interfaces for
PartitionSet
.This package contains interfaces for set API which enhance the performance and functionality of
Set
.This package contains API for mutable and immutable primitive sets.
This package contains implementations of the
ImmutableBag
interface.This package contains implementations of the
MutableCollection
interface.This package contains static utilities for creating mutable and immutable collection factories.
This package contains implementations of the
ImmutableMap
interface.This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
SetMultimap
interface.This package contains implementations of the
PartitionSet
interface.This package contains the implementations of
ImmutableSet
.This package contains implementations of the immutable primitive set interfaces.
This package contains implementations of
MutableSet
.This package contains implementations of the mutable primitive set interfaces.
This package contains implementations of immutable sets with user defined
HashingStrategy
s.This package contains implementations of sets with user defined
HashingStrategy
s.This package contains
SerializeTestHelper
and Verify
classes.This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of ImmutableSet in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return ImmutableSetModifier and TypeMethodDescriptiondefault ImmutableSet
<T> RichIterable.toImmutableSet()
Converts the RichIterable to the default ImmutableSet implementation. -
Uses of ImmutableSet in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return ImmutableSetModifier and TypeMethodDescriptiondefault ImmutableSet
<T> ImmutableBag.selectUnique()
ImmutableBag.zipWithIndex()
Deprecated.in 6.0. -
Uses of ImmutableSet in org.eclipse.collections.api.bimap
Methods in org.eclipse.collections.api.bimap that return ImmutableSetModifier and TypeMethodDescription<P> ImmutableSet
<V> ImmutableBiMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <S> ImmutableSet
<S> ImmutableBiMap.selectInstancesOf
(Class<S> clazz) <P> ImmutableSet
<V> ImmutableBiMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <S> ImmutableSet
<Pair<V, S>> Deprecated.in 8.0.ImmutableBiMap.zipWithIndex()
Deprecated.in 8.0. -
Uses of ImmutableSet in org.eclipse.collections.api.factory.set
Methods in org.eclipse.collections.api.factory.set that return ImmutableSetModifier and TypeMethodDescription<T> ImmutableSet
<T> ImmutableSetFactory.empty()
default <T> ImmutableSet
<T> ImmutableSetFactory.fromStream
(Stream<? extends T> stream) <T> ImmutableSet
<T> ImmutableSetFactory.of()
Same asImmutableSetFactory.empty()
.<T> ImmutableSet
<T> ImmutableSetFactory.of
(T one) Same asImmutableSetFactory.with(Object)
.<T> ImmutableSet
<T> ImmutableSetFactory.of
(T... items) Same asImmutableSetFactory.with(Object[])
.<T> ImmutableSet
<T> ImmutableSetFactory.of
(T one, T two) <T> ImmutableSet
<T> ImmutableSetFactory.of
(T one, T two, T three) <T> ImmutableSet
<T> ImmutableSetFactory.of
(T one, T two, T three, T four) <T> ImmutableSet
<T> <T> ImmutableSet
<T> ImmutableSetFactory.with()
Same asImmutableSetFactory.empty()
.<T> ImmutableSet
<T> ImmutableSetFactory.with
(T one) <T> ImmutableSet
<T> ImmutableSetFactory.with
(T... items) <T> ImmutableSet
<T> ImmutableSetFactory.with
(T one, T two) <T> ImmutableSet
<T> ImmutableSetFactory.with
(T one, T two, T three) <T> ImmutableSet
<T> ImmutableSetFactory.with
(T one, T two, T three, T four) <T> ImmutableSet
<T> -
Uses of ImmutableSet in org.eclipse.collections.api.factory.set.strategy
Methods in org.eclipse.collections.api.factory.set.strategy that return ImmutableSetModifier and TypeMethodDescription<T> ImmutableSet
<T> ImmutableHashingStrategySetFactory.of
(HashingStrategy<? super T> hashingStrategy) <T> ImmutableSet
<T> ImmutableHashingStrategySetFactory.of
(HashingStrategy<? super T> hashingStrategy, T... items) <T> ImmutableSet
<T> ImmutableHashingStrategySetFactory.ofAll
(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> items) <T> ImmutableSet
<T> ImmutableHashingStrategySetFactory.ofInitialCapacity
(HashingStrategy<? super T> hashingStrategy, int capacity) <T> ImmutableSet
<T> ImmutableHashingStrategySetFactory.with
(HashingStrategy<? super T> hashingStrategy) <T> ImmutableSet
<T> ImmutableHashingStrategySetFactory.with
(HashingStrategy<? super T> hashingStrategy, T... items) <T> ImmutableSet
<T> ImmutableHashingStrategySetFactory.withAll
(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> items) <T> ImmutableSet
<T> ImmutableHashingStrategySetFactory.withInitialCapacity
(HashingStrategy<? super T> hashingStrategy, int capacity) -
Uses of ImmutableSet in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableSet -
Uses of ImmutableSet in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableSet -
Uses of ImmutableSet in org.eclipse.collections.api.multimap.set
Methods in org.eclipse.collections.api.multimap.set that return ImmutableSetMethod parameters in org.eclipse.collections.api.multimap.set with type arguments of type ImmutableSetModifier and TypeMethodDescriptionvoid
ImmutableSetMultimap.forEachKeyImmutableSet
(Procedure2<? super K, ? super ImmutableSet<V>> procedure) -
Uses of ImmutableSet in org.eclipse.collections.api.partition.set
Methods in org.eclipse.collections.api.partition.set that return ImmutableSetModifier and TypeMethodDescriptionPartitionImmutableSet.getRejected()
PartitionImmutableSet.getSelected()
-
Uses of ImmutableSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return ImmutableSetModifier and TypeMethodDescription<V> ImmutableSet
<V> <V> ImmutableSet
<V> <P,
V> ImmutableSet <V> ImmutableSet.collectWith
(Function2<? super T, ? super P, ? extends V> function, P parameter) ImmutableSet.difference
(SetIterable<? extends T> subtrahendSet) <V> ImmutableSet
<V> ImmutableSet.flatCollect
(Function<? super T, ? extends Iterable<V>> function) default <P,
V> ImmutableSet <V> ImmutableSet.flatCollectWith
(Function2<? super T, ? super P, ? extends Iterable<V>> function, P parameter) ImmutableSet.intersect
(SetIterable<? extends T> set) ImmutableSet.newWithAll
(Iterable<? extends T> elements) ImmutableSet.newWithout
(T element) ImmutableSet.newWithoutAll
(Iterable<? extends T> elements) ImmutableSet.powerSet()
<P> ImmutableSet
<T> ImmutableSet.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <S> ImmutableSet
<S> ImmutableSet.selectInstancesOf
(Class<S> clazz) <P> ImmutableSet
<T> ImmutableSet.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) ImmutableSet.symmetricDifference
(SetIterable<? extends T> setB) MutableSet.toImmutable()
Returns an immutable copy of this set.UnsortedSetIterable.toImmutable()
Converts the UnsortedSetIterable to an immutable implementation.default ImmutableSet
<T> ImmutableSet.toImmutableSet()
Overrides toImmutableSet in RichIterable to return this.default ImmutableSet
<T> MutableSet.toImmutableSet()
Converts the MutableSet to the default ImmutableSet implementation.ImmutableSet.union
(SetIterable<? extends T> set) <S> ImmutableSet
<Pair<T, S>> Deprecated.in 6.0.ImmutableSet.zipWithIndex()
Deprecated.in 6.0. -
Uses of ImmutableSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return ImmutableSetModifier and TypeMethodDescription<V> ImmutableSet
<V> ImmutableBooleanSet.collect
(BooleanToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableByteSet.collect
(ByteToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableCharSet.collect
(CharToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableDoubleSet.collect
(DoubleToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableFloatSet.collect
(FloatToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableIntSet.collect
(IntToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableLongSet.collect
(LongToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableShortSet.collect
(ShortToObjectFunction<? extends V> function) -
Uses of ImmutableSet in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable that return ImmutableSetModifier and TypeMethodDescriptionImmutableEmptyBag.selectUnique()
ImmutableSingletonBag.selectUnique()
ImmutableArrayBag.zipWithIndex()
Deprecated.in 6.0.ImmutableEmptyBag.zipWithIndex()
Deprecated.in 6.0.ImmutableHashBag.zipWithIndex()
Deprecated.in 6.0.ImmutableSingletonBag.zipWithIndex()
Deprecated.in 6.0. -
Uses of ImmutableSet in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable that return ImmutableSetModifier and TypeMethodDescription<P> ImmutableSet
<V> AbstractImmutableBiMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <S> ImmutableSet
<S> AbstractImmutableBiMap.selectInstancesOf
(Class<S> clazz) <P> ImmutableSet
<V> AbstractImmutableBiMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <S> ImmutableSet
<Pair<V, S>> Deprecated.in 8.0.AbstractImmutableBiMap.zipWithIndex()
Deprecated.in 8.0. -
Uses of ImmutableSet in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection that return ImmutableSet -
Uses of ImmutableSet in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable that return ImmutableSet -
Uses of ImmutableSet in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector that return types with arguments of type ImmutableSetModifier and TypeMethodDescriptionstatic <T> Collector
<T, ?, ImmutableSet<T>> Collectors2.toImmutableSet()
Returns the elements as an ImmutableSet. -
Uses of ImmutableSet in org.eclipse.collections.impl.factory
Methods in org.eclipse.collections.impl.factory that return ImmutableSetModifier and TypeMethodDescriptionstatic <T> ImmutableSet
<T> Iterables.iSet()
static <T> ImmutableSet
<T> Iterables.iSet
(T one) static <T> ImmutableSet
<T> Iterables.iSet
(T... elements) static <T> ImmutableSet
<T> Iterables.iSet
(T one, T two) static <T> ImmutableSet
<T> Iterables.iSet
(T one, T two, T three) static <T> ImmutableSet
<T> Iterables.iSet
(T one, T two, T three, T four) -
Uses of ImmutableSet in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable that return ImmutableSet -
Uses of ImmutableSet in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableSetModifier and TypeMethodDescriptionImmutableByteObjectEmptyMap.zipWithIndex()
ImmutableByteObjectHashMap.zipWithIndex()
ImmutableByteObjectSingletonMap.zipWithIndex()
ImmutableCharObjectEmptyMap.zipWithIndex()
ImmutableCharObjectHashMap.zipWithIndex()
ImmutableCharObjectSingletonMap.zipWithIndex()
ImmutableDoubleObjectEmptyMap.zipWithIndex()
ImmutableDoubleObjectHashMap.zipWithIndex()
ImmutableDoubleObjectSingletonMap.zipWithIndex()
ImmutableFloatObjectEmptyMap.zipWithIndex()
ImmutableFloatObjectHashMap.zipWithIndex()
ImmutableFloatObjectSingletonMap.zipWithIndex()
ImmutableIntObjectEmptyMap.zipWithIndex()
ImmutableIntObjectHashMap.zipWithIndex()
ImmutableIntObjectSingletonMap.zipWithIndex()
ImmutableLongObjectEmptyMap.zipWithIndex()
ImmutableLongObjectHashMap.zipWithIndex()
ImmutableLongObjectSingletonMap.zipWithIndex()
ImmutableShortObjectEmptyMap.zipWithIndex()
ImmutableShortObjectHashMap.zipWithIndex()
ImmutableShortObjectSingletonMap.zipWithIndex()
-
Uses of ImmutableSet in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableSetModifier and TypeMethodDescription<V> ImmutableSet
<V> ImmutableByteByteMapKeySet.collect
(ByteToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableByteMapKeySet.collect
(ByteToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableCharCharMapKeySet.collect
(CharToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableCharMapKeySet.collect
(CharToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableDoubleDoubleMapKeySet.collect
(DoubleToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableDoubleMapKeySet.collect
(DoubleToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableFloatFloatMapKeySet.collect
(FloatToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableFloatMapKeySet.collect
(FloatToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableIntIntMapKeySet.collect
(IntToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableIntMapKeySet.collect
(IntToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableLongLongMapKeySet.collect
(LongToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableLongMapKeySet.collect
(LongToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableShortMapKeySet.collect
(ShortToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableShortShortMapKeySet.collect
(ShortToObjectFunction<? extends V> function) SynchronizedByteObjectMap.toImmutableSet()
SynchronizedCharObjectMap.toImmutableSet()
SynchronizedDoubleObjectMap.toImmutableSet()
SynchronizedFloatObjectMap.toImmutableSet()
SynchronizedIntObjectMap.toImmutableSet()
SynchronizedLongObjectMap.toImmutableSet()
SynchronizedShortObjectMap.toImmutableSet()
-
Uses of ImmutableSet in org.eclipse.collections.impl.multimap.set
Methods in org.eclipse.collections.impl.multimap.set that return ImmutableSetModifier and TypeMethodDescriptionprotected ImmutableSet
<V> ImmutableSetMultimapImpl.createCollection()
Method parameters in org.eclipse.collections.impl.multimap.set with type arguments of type ImmutableSetModifier and TypeMethodDescriptionvoid
ImmutableSetMultimapImpl.forEachKeyImmutableSet
(Procedure2<? super K, ? super ImmutableSet<V>> procedure) Constructor parameters in org.eclipse.collections.impl.multimap.set with type arguments of type ImmutableSetModifierConstructorDescriptionprivate
-
Uses of ImmutableSet in org.eclipse.collections.impl.partition.set
Fields in org.eclipse.collections.impl.partition.set declared as ImmutableSetModifier and TypeFieldDescriptionprivate final ImmutableSet
<T> PartitionImmutableSetImpl.rejected
private final ImmutableSet
<T> PartitionImmutableSetImpl.selected
Methods in org.eclipse.collections.impl.partition.set that return ImmutableSetModifier and TypeMethodDescriptionPartitionImmutableSetImpl.getRejected()
PartitionImmutableSetImpl.getSelected()
-
Uses of ImmutableSet in org.eclipse.collections.impl.set.immutable
Classes in org.eclipse.collections.impl.set.immutable that implement ImmutableSetModifier and TypeClassDescriptionclass
This class is the parent class for all ImmutableSets.(package private) final class
(package private) final class
This is a zero elementImmutableSet
which is created by calling the Sets.immutable.empty() method.(package private) final class
(package private) final class
(package private) final class
(package private) final class
Fields in org.eclipse.collections.impl.set.immutable declared as ImmutableSetModifier and TypeFieldDescription(package private) static final ImmutableSet
<?> ImmutableEmptySet.INSTANCE
private ImmutableSet
<T> ImmutableSetSerializationProxy.set
Methods in org.eclipse.collections.impl.set.immutable that return ImmutableSetModifier and TypeMethodDescription<V> ImmutableSet
<V> <V> ImmutableSet
<V> <V> ImmutableSet
<V> AbstractImmutableSet.collectIf
(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <V> ImmutableSet
<V> ImmutableEmptySet.collectIf
(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <P,
V> ImmutableSet <V> AbstractImmutableSet.collectWith
(Function2<? super T, ? super P, ? extends V> function, P parameter) AbstractImmutableSet.difference
(SetIterable<? extends T> subtrahendSet) <T> ImmutableSet
<T> ImmutableSetFactoryImpl.empty()
<V> ImmutableSet
<V> AbstractImmutableSet.flatCollect
(Function<? super T, ? extends Iterable<V>> function) <V> ImmutableSet
<V> ImmutableEmptySet.flatCollect
(Function<? super T, ? extends Iterable<V>> function) AbstractImmutableSet.intersect
(SetIterable<? extends T> set) static <T> ImmutableSet
<T> static <T> ImmutableSet
<T> ImmutableUnifiedSet.newSetWith
(T... elements) AbstractImmutableSet.newWithAll
(Iterable<? extends T> elements) ImmutableEmptySet.newWithAll
(Iterable<? extends T> elements) AbstractImmutableSet.newWithout
(T element) ImmutableDoubletonSet.newWithout
(T element) ImmutableEmptySet.newWithout
(T element) ImmutableQuadrupletonSet.newWithout
(T element) ImmutableSingletonSet.newWithout
(T element) ImmutableTripletonSet.newWithout
(T element) AbstractImmutableSet.newWithoutAll
(Iterable<? extends T> elements) ImmutableEmptySet.newWithoutAll
(Iterable<? extends T> elements) <T> ImmutableSet
<T> ImmutableSetFactoryImpl.of()
<T> ImmutableSet
<T> ImmutableSetFactoryImpl.of
(T one) <T> ImmutableSet
<T> ImmutableSetFactoryImpl.of
(T... items) <T> ImmutableSet
<T> ImmutableSetFactoryImpl.of
(T one, T two) <T> ImmutableSet
<T> ImmutableSetFactoryImpl.of
(T one, T two, T three) <T> ImmutableSet
<T> ImmutableSetFactoryImpl.of
(T one, T two, T three, T four) <T> ImmutableSet
<T> AbstractImmutableSet.powerSet()
<P> ImmutableSet
<T> AbstractImmutableSet.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <S> ImmutableSet
<S> AbstractImmutableSet.selectInstancesOf
(Class<S> clazz) <P> ImmutableSet
<T> AbstractImmutableSet.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) AbstractImmutableSet.symmetricDifference
(SetIterable<? extends T> setB) AbstractImmutableSet.toImmutable()
AbstractImmutableSet.union
(SetIterable<? extends T> set) <T> ImmutableSet
<T> ImmutableSetFactoryImpl.with()
<T> ImmutableSet
<T> ImmutableSetFactoryImpl.with
(T one) <T> ImmutableSet
<T> ImmutableSetFactoryImpl.with
(T... items) <T> ImmutableSet
<T> ImmutableSetFactoryImpl.with
(T one, T two) <T> ImmutableSet
<T> ImmutableSetFactoryImpl.with
(T one, T two, T three) <T> ImmutableSet
<T> ImmutableSetFactoryImpl.with
(T one, T two, T three, T four) <T> ImmutableSet
<T> <S> ImmutableSet
<Pair<T, S>> Deprecated.in 6.0.<S> ImmutableSet
<Pair<T, S>> Deprecated.in 6.0.AbstractImmutableSet.zipWithIndex()
Deprecated.in 6.0.ImmutableEmptySet.zipWithIndex()
Deprecated.in 6.0.Constructors in org.eclipse.collections.impl.set.immutable with parameters of type ImmutableSetModifierConstructorDescription(package private)
-
Uses of ImmutableSet in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return ImmutableSetModifier and TypeMethodDescription<V> ImmutableSet
<V> ImmutableBooleanEmptySet.collect
(BooleanToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableByteEmptySet.collect
(ByteToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableByteSingletonSet.collect
(ByteToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableCharEmptySet.collect
(CharToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableCharSingletonSet.collect
(CharToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableDoubleEmptySet.collect
(DoubleToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableDoubleSingletonSet.collect
(DoubleToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableFalseSet.collect
(BooleanToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableFloatEmptySet.collect
(FloatToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableFloatSingletonSet.collect
(FloatToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableIntEmptySet.collect
(IntToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableIntSingletonSet.collect
(IntToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableLongEmptySet.collect
(LongToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableLongSingletonSet.collect
(LongToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableShortEmptySet.collect
(ShortToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableShortSingletonSet.collect
(ShortToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableTrueFalseSet.collect
(BooleanToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ImmutableTrueSet.collect
(BooleanToObjectFunction<? extends V> function) -
Uses of ImmutableSet in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable that return ImmutableSetModifier and TypeMethodDescriptionAbstractMutableSet.toImmutable()
MultiReaderUnifiedSet.toImmutable()
MultiReaderUnifiedSet.UntouchableMutableSet.toImmutable()
SetAdapter.toImmutable()
SynchronizedMutableSet.toImmutable()
UnifiedSet.toImmutable()
UnmodifiableMutableSet.toImmutable()
-
Uses of ImmutableSet in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive that return ImmutableSetModifier and TypeMethodDescription<V> ImmutableSet
<V> ByteHashSet.ImmutableByteHashSet.collect
(ByteToObjectFunction<? extends V> function) <V> ImmutableSet
<V> CharHashSet.ImmutableCharHashSet.collect
(CharToObjectFunction<? extends V> function) <V> ImmutableSet
<V> DoubleHashSet.ImmutableDoubleHashSet.collect
(DoubleToObjectFunction<? extends V> function) <V> ImmutableSet
<V> FloatHashSet.ImmutableFloatHashSet.collect
(FloatToObjectFunction<? extends V> function) <V> ImmutableSet
<V> IntHashSet.ImmutableIntHashSet.collect
(IntToObjectFunction<? extends V> function) <V> ImmutableSet
<V> LongHashSet.ImmutableLongHashSet.collect
(LongToObjectFunction<? extends V> function) <V> ImmutableSet
<V> ShortHashSet.ImmutableShortHashSet.collect
(ShortToObjectFunction<? extends V> function) -
Uses of ImmutableSet in org.eclipse.collections.impl.set.strategy.immutable
Classes in org.eclipse.collections.impl.set.strategy.immutable that implement ImmutableSetModifier and TypeClassDescription(package private) final class
This is a zero elementImmutableUnifiedSetWithHashingStrategy
which is created by calling the HashingStrategySets.immutable.empty() method.(package private) final class
Fields in org.eclipse.collections.impl.set.strategy.immutable declared as ImmutableSetModifier and TypeFieldDescriptionprivate ImmutableSet
<T> ImmutableSetWithHashingStrategySerializationProxy.set
Methods in org.eclipse.collections.impl.set.strategy.immutable that return ImmutableSetModifier and TypeMethodDescriptionstatic <T> ImmutableSet
<T> ImmutableUnifiedSetWithHashingStrategy.newSet
(HashingStrategy<? super T> hashingStrategy, int capacity) static <T> ImmutableSet
<T> ImmutableUnifiedSetWithHashingStrategy.newSet
(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> iterable) static <T> ImmutableSet
<T> ImmutableUnifiedSetWithHashingStrategy.newSetWith
(HashingStrategy<? super T> hashingStrategy, T... elements) ImmutableEmptySetWithHashingStrategy.newWithAll
(Iterable<? extends T> elements) ImmutableEmptySetWithHashingStrategy.newWithout
(T element) ImmutableEmptySetWithHashingStrategy.newWithoutAll
(Iterable<? extends T> elements) <T> ImmutableSet
<T> ImmutableHashingStrategySetFactoryImpl.of
(HashingStrategy<? super T> hashingStrategy) <T> ImmutableSet
<T> ImmutableHashingStrategySetFactoryImpl.of
(HashingStrategy<? super T> hashingStrategy, T... items) <T> ImmutableSet
<T> ImmutableHashingStrategySetFactoryImpl.ofAll
(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> items) <T> ImmutableSet
<T> ImmutableHashingStrategySetFactoryImpl.ofInitialCapacity
(HashingStrategy<? super T> hashingStrategy, int capacity) <T> ImmutableSet
<T> ImmutableHashingStrategySetFactoryImpl.with
(HashingStrategy<? super T> hashingStrategy) <T> ImmutableSet
<T> ImmutableHashingStrategySetFactoryImpl.with
(HashingStrategy<? super T> hashingStrategy, T... items) <T> ImmutableSet
<T> ImmutableHashingStrategySetFactoryImpl.withAll
(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> items) <T> ImmutableSet
<T> ImmutableHashingStrategySetFactoryImpl.withInitialCapacity
(HashingStrategy<? super T> hashingStrategy, int capacity) Constructors in org.eclipse.collections.impl.set.strategy.immutable with parameters of type ImmutableSetModifierConstructorDescription(package private)
ImmutableSetWithHashingStrategySerializationProxy
(ImmutableSet<T> set, HashingStrategy<? super T> hashingStrategy) -
Uses of ImmutableSet in org.eclipse.collections.impl.set.strategy.mutable
Methods in org.eclipse.collections.impl.set.strategy.mutable that return ImmutableSet -
Uses of ImmutableSet in org.eclipse.collections.impl.test
Methods in org.eclipse.collections.impl.test with parameters of type ImmutableSetModifier and TypeMethodDescriptionstatic void
Verify.assertSize
(int expectedSize, ImmutableSet<?> actualImmutableSet) Assert the size of the givenImmutableSet
.static void
Verify.assertSize
(String immutableSetName, int expectedSize, ImmutableSet<?> actualImmutableSet) Assert the size of the givenImmutableSet
. -
Uses of ImmutableSet in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return ImmutableSetModifier and TypeMethodDescriptionstatic <T> ImmutableSet
<ImmutableSet<T>> SetIterables.immutablePowerSet
(Set<T> set) Returns an Immutable version of powerset where the inner sets are also immutable.Methods in org.eclipse.collections.impl.utility.internal that return types with arguments of type ImmutableSetModifier and TypeMethodDescriptionstatic <T> ImmutableSet
<ImmutableSet<T>> SetIterables.immutablePowerSet
(Set<T> set) Returns an Immutable version of powerset where the inner sets are also immutable.