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
MapThis 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.
-
Uses of ImmutableSet in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return ImmutableSetModifier and TypeMethodDescriptiondefault ImmutableSet<T>LazyIterable.toImmutableSet()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 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) Same asImmutableHashingStrategySetFactory.withInitialCapacity(HashingStrategy, int). of initial 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 TypeMethodDescriptionvoidImmutableSetMultimap.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)