Uses of Interface
org.eclipse.collections.api.set.ImmutableSet
-
Packages that use ImmutableSet 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.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.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.impl.bag.immutable This package contains implementations of theImmutableBag
interface.org.eclipse.collections.impl.bimap.immutable 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.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.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.multimap.set This package contains implementations of theSetMultimap
interface.org.eclipse.collections.impl.partition.set This package contains implementations of thePartitionSet
interface.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.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.test This package containsSerializeTestHelper
andVerify
classes.org.eclipse.collections.impl.utility.internal 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 ImmutableSet Modifier and Type Method Description default 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 ImmutableSet Modifier and Type Method Description default ImmutableSet<T>
ImmutableBag. selectUnique()
ImmutableSet<Pair<T,java.lang.Integer>>
ImmutableBag. zipWithIndex()
Deprecated.in 6.0. -
Uses of ImmutableSet in org.eclipse.collections.api.bimap
Methods in org.eclipse.collections.api.bimap that return ImmutableSet Modifier and Type Method Description ImmutableSet<V>
ImmutableBiMap. reject(Predicate<? super V> predicate)
<P> ImmutableSet<V>
ImmutableBiMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)
ImmutableSet<V>
ImmutableBiMap. select(Predicate<? super V> predicate)
<S> ImmutableSet<S>
ImmutableBiMap. selectInstancesOf(java.lang.Class<S> clazz)
<P> ImmutableSet<V>
ImmutableBiMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)
<S> ImmutableSet<Pair<V,S>>
ImmutableBiMap. zip(java.lang.Iterable<S> that)
Deprecated.in 8.0.ImmutableSet<Pair<V,java.lang.Integer>>
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 ImmutableSet Modifier and Type Method Description <T> ImmutableSet<T>
ImmutableSetFactory. empty()
default <T> ImmutableSet<T>
ImmutableSetFactory. fromStream(java.util.stream.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>
ImmutableSetFactory. ofAll(java.lang.Iterable<? extends T> items)
<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>
ImmutableSetFactory. withAll(java.lang.Iterable<? extends T> items)
-
Uses of ImmutableSet in org.eclipse.collections.api.factory.set.strategy
Methods in org.eclipse.collections.api.factory.set.strategy that return ImmutableSet Modifier and Type Method Description <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, java.lang.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, java.lang.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 Modifier and Type Method Description ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableMap. zipWithIndex()
Deprecated.in 6.0. -
Uses of ImmutableSet in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableSet Modifier and Type Method Description ImmutableSet<Pair<V,java.lang.Integer>>
ImmutablePrimitiveObjectMap. zipWithIndex()
Deprecated.in 7.0. -
Uses of ImmutableSet in org.eclipse.collections.api.multimap.set
Methods in org.eclipse.collections.api.multimap.set that return ImmutableSet Modifier and Type Method Description ImmutableSet<V>
ImmutableSetMultimap. get(K key)
Method parameters in org.eclipse.collections.api.multimap.set with type arguments of type ImmutableSet Modifier and Type Method Description void
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 ImmutableSet Modifier and Type Method Description ImmutableSet<T>
PartitionImmutableSet. getRejected()
ImmutableSet<T>
PartitionImmutableSet. getSelected()
-
Uses of ImmutableSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return ImmutableSet Modifier and Type Method Description <V> ImmutableSet<V>
ImmutableSet. collect(Function<? super T,? extends V> function)
<V> ImmutableSet<V>
ImmutableSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<P,V>
ImmutableSet<V>ImmutableSet. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
ImmutableSet<T>
ImmutableSet. difference(SetIterable<? extends T> subtrahendSet)
<V> ImmutableSet<V>
ImmutableSet. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
default <P,V>
ImmutableSet<V>ImmutableSet. flatCollectWith(Function2<? super T,? super P,? extends java.lang.Iterable<V>> function, P parameter)
ImmutableSet<T>
ImmutableSet. intersect(SetIterable<? extends T> set)
ImmutableSet<T>
ImmutableSet. newWith(T element)
ImmutableSet<T>
ImmutableSet. newWithAll(java.lang.Iterable<? extends T> elements)
ImmutableSet<T>
ImmutableSet. newWithout(T element)
ImmutableSet<T>
ImmutableSet. newWithoutAll(java.lang.Iterable<? extends T> elements)
ImmutableSet<UnsortedSetIterable<T>>
ImmutableSet. powerSet()
ImmutableSet<T>
ImmutableSet. reject(Predicate<? super T> predicate)
<P> ImmutableSet<T>
ImmutableSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
ImmutableSet<T>
ImmutableSet. select(Predicate<? super T> predicate)
<S> ImmutableSet<S>
ImmutableSet. selectInstancesOf(java.lang.Class<S> clazz)
<P> ImmutableSet<T>
ImmutableSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
ImmutableSet<T>
ImmutableSet. symmetricDifference(SetIterable<? extends T> setB)
ImmutableSet<T>
ImmutableSet. tap(Procedure<? super T> procedure)
ImmutableSet<T>
MutableSet. toImmutable()
Returns an immutable copy of this set.ImmutableSet<T>
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<T>
ImmutableSet. union(SetIterable<? extends T> set)
<S> ImmutableSet<Pair<T,S>>
ImmutableSet. zip(java.lang.Iterable<S> that)
Deprecated.in 6.0.ImmutableSet<Pair<T,java.lang.Integer>>
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 ImmutableSet Modifier and Type Method Description <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 ImmutableSet Modifier and Type Method Description ImmutableSet<T>
ImmutableEmptyBag. selectUnique()
ImmutableSet<T>
ImmutableSingletonBag. selectUnique()
ImmutableSet<Pair<T,java.lang.Integer>>
ImmutableArrayBag. zipWithIndex()
Deprecated.in 6.0.ImmutableSet<Pair<T,java.lang.Integer>>
ImmutableEmptyBag. zipWithIndex()
Deprecated.in 6.0.ImmutableSet<Pair<T,java.lang.Integer>>
ImmutableHashBag. zipWithIndex()
Deprecated.in 6.0.ImmutableSet<Pair<T,java.lang.Integer>>
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 ImmutableSet Modifier and Type Method Description ImmutableSet<V>
AbstractImmutableBiMap. reject(Predicate<? super V> predicate)
<P> ImmutableSet<V>
AbstractImmutableBiMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)
ImmutableSet<V>
AbstractImmutableBiMap. select(Predicate<? super V> predicate)
<S> ImmutableSet<S>
AbstractImmutableBiMap. selectInstancesOf(java.lang.Class<S> clazz)
<P> ImmutableSet<V>
AbstractImmutableBiMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)
<S> ImmutableSet<Pair<V,S>>
AbstractImmutableBiMap. zip(java.lang.Iterable<S> that)
Deprecated.in 8.0.ImmutableSet<Pair<V,java.lang.Integer>>
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 Modifier and Type Method Description ImmutableSet<T>
AbstractSynchronizedRichIterable. toImmutableSet()
-
Uses of ImmutableSet in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable that return ImmutableSet Modifier and Type Method Description ImmutableSet<T>
AbstractMultiReaderMutableCollection. toImmutableSet()
-
Uses of ImmutableSet in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector that return types with arguments of type ImmutableSet Modifier and Type Method Description static <T> java.util.stream.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 ImmutableSet Modifier and Type Method Description static <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 Modifier and Type Method Description ImmutableSet<Pair<V,java.lang.Integer>>
AbstractImmutableMap. zipWithIndex()
Deprecated.in 6.0. -
Uses of ImmutableSet in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableSet Modifier and Type Method Description ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableByteObjectEmptyMap. zipWithIndex()
ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableByteObjectHashMap. zipWithIndex()
ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableByteObjectSingletonMap. zipWithIndex()
ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableCharObjectEmptyMap. zipWithIndex()
ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableCharObjectHashMap. zipWithIndex()
ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableCharObjectSingletonMap. zipWithIndex()
ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableDoubleObjectEmptyMap. zipWithIndex()
ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableDoubleObjectHashMap. zipWithIndex()
ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableDoubleObjectSingletonMap. zipWithIndex()
ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableFloatObjectEmptyMap. zipWithIndex()
ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableFloatObjectHashMap. zipWithIndex()
ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableFloatObjectSingletonMap. zipWithIndex()
ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableIntObjectEmptyMap. zipWithIndex()
ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableIntObjectHashMap. zipWithIndex()
ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableIntObjectSingletonMap. zipWithIndex()
ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableLongObjectEmptyMap. zipWithIndex()
ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableLongObjectHashMap. zipWithIndex()
ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableLongObjectSingletonMap. zipWithIndex()
ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableShortObjectEmptyMap. zipWithIndex()
ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableShortObjectHashMap. zipWithIndex()
ImmutableSet<Pair<V,java.lang.Integer>>
ImmutableShortObjectSingletonMap. zipWithIndex()
-
Uses of ImmutableSet in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableSet Modifier and Type Method Description <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)
ImmutableSet<V>
SynchronizedByteObjectMap. toImmutableSet()
ImmutableSet<V>
SynchronizedCharObjectMap. toImmutableSet()
ImmutableSet<V>
SynchronizedDoubleObjectMap. toImmutableSet()
ImmutableSet<V>
SynchronizedFloatObjectMap. toImmutableSet()
ImmutableSet<V>
SynchronizedIntObjectMap. toImmutableSet()
ImmutableSet<V>
SynchronizedLongObjectMap. toImmutableSet()
ImmutableSet<V>
SynchronizedShortObjectMap. toImmutableSet()
-
Uses of ImmutableSet in org.eclipse.collections.impl.multimap.set
Methods in org.eclipse.collections.impl.multimap.set that return ImmutableSet Modifier and Type Method Description protected ImmutableSet<V>
ImmutableSetMultimapImpl. createCollection()
Method parameters in org.eclipse.collections.impl.multimap.set with type arguments of type ImmutableSet Modifier and Type Method Description void
ImmutableSetMultimapImpl. forEachKeyImmutableSet(Procedure2<? super K,? super ImmutableSet<V>> procedure)
Constructor parameters in org.eclipse.collections.impl.multimap.set with type arguments of type ImmutableSet Constructor Description ImmutableSetMultimapImpl(ImmutableMap<K,ImmutableSet<V>> map)
ImmutableSetMultimapImpl(MutableMap<K,ImmutableSet<V>> map)
ImmutableSetMultimapSerializationProxy(ImmutableMap<K,ImmutableSet<V>> map)
-
Uses of ImmutableSet in org.eclipse.collections.impl.partition.set
Fields in org.eclipse.collections.impl.partition.set declared as ImmutableSet Modifier and Type Field Description private ImmutableSet<T>
PartitionImmutableSetImpl. rejected
private ImmutableSet<T>
PartitionImmutableSetImpl. selected
Methods in org.eclipse.collections.impl.partition.set that return ImmutableSet Modifier and Type Method Description ImmutableSet<T>
PartitionImmutableSetImpl. getRejected()
ImmutableSet<T>
PartitionImmutableSetImpl. getSelected()
-
Uses of ImmutableSet in org.eclipse.collections.impl.set.immutable
Classes in org.eclipse.collections.impl.set.immutable that implement ImmutableSet Modifier and Type Class Description class
AbstractImmutableSet<T>
This class is the parent class for all ImmutableSets.(package private) class
ImmutableDoubletonSet<T>
(package private) class
ImmutableEmptySet<T>
This is a zero elementImmutableSet
which is created by calling the Sets.immutable.empty() method.(package private) class
ImmutableQuadrupletonSet<T>
(package private) class
ImmutableSingletonSet<T>
(package private) class
ImmutableTripletonSet<T>
(package private) class
ImmutableUnifiedSet<T>
Fields in org.eclipse.collections.impl.set.immutable declared as ImmutableSet Modifier and Type Field Description (package private) static ImmutableSet<?>
ImmutableEmptySet. INSTANCE
private ImmutableSet<T>
ImmutableSetSerializationProxy. set
Methods in org.eclipse.collections.impl.set.immutable that return ImmutableSet Modifier and Type Method Description <V> ImmutableSet<V>
AbstractImmutableSet. collect(Function<? super T,? extends V> function)
<V> ImmutableSet<V>
ImmutableEmptySet. collect(Function<? super T,? extends V> function)
<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)
ImmutableSet<T>
AbstractImmutableSet. difference(SetIterable<? extends T> subtrahendSet)
<T> ImmutableSet<T>
ImmutableSetFactoryImpl. empty()
<V> ImmutableSet<V>
AbstractImmutableSet. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> ImmutableSet<V>
ImmutableEmptySet. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
ImmutableSet<T>
AbstractImmutableSet. intersect(SetIterable<? extends T> set)
static <T> ImmutableSet<T>
ImmutableUnifiedSet. newSet(java.lang.Iterable<? extends T> iterable)
static <T> ImmutableSet<T>
ImmutableUnifiedSet. newSetWith(T... elements)
ImmutableSet<T>
AbstractImmutableSet. newWith(T element)
ImmutableSet<T>
ImmutableDoubletonSet. newWith(T element)
ImmutableSet<T>
ImmutableEmptySet. newWith(T element)
ImmutableSet<T>
ImmutableQuadrupletonSet. newWith(T element)
ImmutableSet<T>
ImmutableSingletonSet. newWith(T element)
ImmutableSet<T>
ImmutableTripletonSet. newWith(T element)
ImmutableSet<T>
AbstractImmutableSet. newWithAll(java.lang.Iterable<? extends T> elements)
ImmutableSet<T>
ImmutableEmptySet. newWithAll(java.lang.Iterable<? extends T> elements)
ImmutableSet<T>
AbstractImmutableSet. newWithout(T element)
ImmutableSet<T>
ImmutableDoubletonSet. newWithout(T element)
ImmutableSet<T>
ImmutableEmptySet. newWithout(T element)
ImmutableSet<T>
ImmutableQuadrupletonSet. newWithout(T element)
ImmutableSet<T>
ImmutableSingletonSet. newWithout(T element)
ImmutableSet<T>
ImmutableTripletonSet. newWithout(T element)
ImmutableSet<T>
AbstractImmutableSet. newWithoutAll(java.lang.Iterable<? extends T> elements)
ImmutableSet<T>
ImmutableEmptySet. newWithoutAll(java.lang.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>
ImmutableSetFactoryImpl. ofAll(java.lang.Iterable<? extends T> items)
ImmutableSet<UnsortedSetIterable<T>>
AbstractImmutableSet. powerSet()
ImmutableSet<T>
AbstractImmutableSet. reject(Predicate<? super T> predicate)
ImmutableSet<T>
ImmutableEmptySet. reject(Predicate<? super T> predicate)
<P> ImmutableSet<T>
AbstractImmutableSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
ImmutableSet<T>
AbstractImmutableSet. select(Predicate<? super T> predicate)
ImmutableSet<T>
ImmutableEmptySet. select(Predicate<? super T> predicate)
<S> ImmutableSet<S>
AbstractImmutableSet. selectInstancesOf(java.lang.Class<S> clazz)
<P> ImmutableSet<T>
AbstractImmutableSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
ImmutableSet<T>
AbstractImmutableSet. symmetricDifference(SetIterable<? extends T> setB)
ImmutableSet<T>
AbstractImmutableSet. tap(Procedure<? super T> procedure)
ImmutableSet<T>
ImmutableEmptySet. tap(Procedure<? super T> procedure)
ImmutableSet<T>
AbstractImmutableSet. toImmutable()
ImmutableSet<T>
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>
ImmutableSetFactoryImpl. withAll(java.lang.Iterable<? extends T> items)
<S> ImmutableSet<Pair<T,S>>
AbstractImmutableSet. zip(java.lang.Iterable<S> that)
Deprecated.in 6.0.<S> ImmutableSet<Pair<T,S>>
ImmutableEmptySet. zip(java.lang.Iterable<S> that)
Deprecated.in 6.0.ImmutableSet<Pair<T,java.lang.Integer>>
AbstractImmutableSet. zipWithIndex()
Deprecated.in 6.0.ImmutableSet<Pair<T,java.lang.Integer>>
ImmutableEmptySet. zipWithIndex()
Deprecated.in 6.0.Constructors in org.eclipse.collections.impl.set.immutable with parameters of type ImmutableSet Constructor Description ImmutableSetSerializationProxy(ImmutableSet<T> set)
-
Uses of ImmutableSet in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return ImmutableSet Modifier and Type Method Description <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 ImmutableSet Modifier and Type Method Description ImmutableSet<T>
AbstractMutableSet. toImmutable()
ImmutableSet<T>
MultiReaderUnifiedSet. toImmutable()
ImmutableSet<T>
MultiReaderUnifiedSet.UntouchableMutableSet. toImmutable()
ImmutableSet<T>
SetAdapter. toImmutable()
ImmutableSet<T>
SynchronizedMutableSet. toImmutable()
ImmutableSet<T>
UnifiedSet. toImmutable()
ImmutableSet<T>
UnmodifiableMutableSet. toImmutable()
-
Uses of ImmutableSet in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive that return ImmutableSet Modifier and Type Method Description <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 ImmutableSet Modifier and Type Class Description (package private) class
ImmutableEmptySetWithHashingStrategy<T>
This is a zero elementImmutableUnifiedSetWithHashingStrategy
which is created by calling the HashingStrategySets.immutable.empty() method.(package private) class
ImmutableUnifiedSetWithHashingStrategy<T>
Fields in org.eclipse.collections.impl.set.strategy.immutable declared as ImmutableSet Modifier and Type Field Description private ImmutableSet<T>
ImmutableSetWithHashingStrategySerializationProxy. set
Methods in org.eclipse.collections.impl.set.strategy.immutable that return ImmutableSet Modifier and Type Method Description static <T> ImmutableSet<T>
ImmutableUnifiedSetWithHashingStrategy. newSet(HashingStrategy<? super T> hashingStrategy, int capacity)
static <T> ImmutableSet<T>
ImmutableUnifiedSetWithHashingStrategy. newSet(HashingStrategy<? super T> hashingStrategy, java.lang.Iterable<? extends T> iterable)
static <T> ImmutableSet<T>
ImmutableUnifiedSetWithHashingStrategy. newSetWith(HashingStrategy<? super T> hashingStrategy, T... elements)
ImmutableSet<T>
ImmutableEmptySetWithHashingStrategy. newWith(T element)
ImmutableSet<T>
ImmutableEmptySetWithHashingStrategy. newWithAll(java.lang.Iterable<? extends T> elements)
ImmutableSet<T>
ImmutableEmptySetWithHashingStrategy. newWithout(T element)
ImmutableSet<T>
ImmutableEmptySetWithHashingStrategy. newWithoutAll(java.lang.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, java.lang.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, java.lang.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 ImmutableSet Constructor Description 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 Modifier and Type Method Description ImmutableSet<T>
UnifiedSetWithHashingStrategy. toImmutable()
-
Uses of ImmutableSet in org.eclipse.collections.impl.test
Methods in org.eclipse.collections.impl.test with parameters of type ImmutableSet Modifier and Type Method Description static void
Verify. assertSize(int expectedSize, ImmutableSet<?> actualImmutableSet)
Assert the size of the givenImmutableSet
.static void
Verify. assertSize(java.lang.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 ImmutableSet Modifier and Type Method Description static <T> ImmutableSet<ImmutableSet<T>>
SetIterables. immutablePowerSet(java.util.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 ImmutableSet Modifier and Type Method Description static <T> ImmutableSet<ImmutableSet<T>>
SetIterables. immutablePowerSet(java.util.Set<T> set)
Returns an Immutable version of powerset where the inner sets are also immutable.
-