Uses of Interface
org.eclipse.collections.api.set.primitive.ImmutableIntSet
-
Packages that use ImmutableIntSet Package Description org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.factory.set.primitive This package contains factory API for creating primitive set instances.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.primitive This package contains implementations of the immutable primitive bag 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.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.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.stream -
-
Uses of ImmutableIntSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableIntSet Modifier and Type Method Description ImmutableIntSet
ImmutableIntBag. selectUnique()
Returns all elements of the bag that have exactly one occurrence. -
Uses of ImmutableIntSet in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive that return ImmutableIntSet Modifier and Type Method Description ImmutableIntSet
ImmutableIntSetFactory. empty()
ImmutableIntSet
ImmutableIntSetFactory. of()
Same asImmutableIntSetFactory.empty()
.ImmutableIntSet
ImmutableIntSetFactory. of(int one)
Same asImmutableIntSetFactory.with(int)
.ImmutableIntSet
ImmutableIntSetFactory. of(int... items)
Same asImmutableIntSetFactory.with(int[])
.ImmutableIntSet
ImmutableIntSetFactory. ofAll(java.lang.Iterable<java.lang.Integer> iterable)
ImmutableIntSet
ImmutableIntSetFactory. ofAll(java.util.stream.IntStream items)
ImmutableIntSet
ImmutableIntSetFactory. ofAll(IntIterable items)
ImmutableIntSet
ImmutableIntSetFactory. with()
Same asImmutableIntSetFactory.empty()
.ImmutableIntSet
ImmutableIntSetFactory. with(int one)
ImmutableIntSet
ImmutableIntSetFactory. with(int... items)
ImmutableIntSet
ImmutableIntSetFactory. withAll(java.lang.Iterable<java.lang.Integer> iterable)
ImmutableIntSet
ImmutableIntSetFactory. withAll(java.util.stream.IntStream items)
ImmutableIntSet
ImmutableIntSetFactory. withAll(IntIterable items)
-
Uses of ImmutableIntSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return ImmutableIntSet Modifier and Type Method Description ImmutableIntSet
ImmutableSet. collectInt(IntFunction<? super T> intFunction)
-
Uses of ImmutableIntSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return ImmutableIntSet Modifier and Type Method Description default ImmutableIntSet
ImmutableIntSet. difference(IntSet set)
Returns the set of all members ofthis
that are not members ofset
.default ImmutableIntSet
ImmutableIntSet. intersect(IntSet set)
Returns the set of all objects that are members of boththis
andset
.ImmutableIntSet
ImmutableIntSet. newWith(int element)
ImmutableIntSet
ImmutableIntSet. newWithAll(IntIterable elements)
ImmutableIntSet
ImmutableIntSet. newWithout(int element)
ImmutableIntSet
ImmutableIntSet. newWithoutAll(IntIterable elements)
ImmutableIntSet
ImmutableIntSet. reject(IntPredicate predicate)
ImmutableIntSet
ImmutableIntSet. select(IntPredicate predicate)
default ImmutableIntSet
ImmutableIntSet. symmetricDifference(IntSet set)
Returns the set of all objects that are a member of exactly one ofthis
andset
(elements which are in one of the sets, but not in both).default ImmutableIntSet
ImmutableIntSet. tap(IntProcedure procedure)
ImmutableIntSet
IntSet. toImmutable()
Returns an immutable copy of this set.ImmutableIntSet
MutableIntSet. toImmutable()
Returns an immutable copy of this set.default ImmutableIntSet
ImmutableIntSet. union(IntSet set)
-
Uses of ImmutableIntSet in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return ImmutableIntSet Modifier and Type Method Description ImmutableIntSet
ImmutableIntEmptyBag. selectUnique()
ImmutableIntSet
ImmutableIntHashBag. selectUnique()
ImmutableIntSet
ImmutableIntSingletonBag. selectUnique()
-
Uses of ImmutableIntSet in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement ImmutableIntSet Modifier and Type Class Description (package private) class
ImmutableIntIntMapKeySet
This file was automatically generated from template file immutablePrimitivePrimitiveMapKeySet.stg(package private) class
ImmutableIntMapKeySet
This file was automatically generated from template file immutablePrimitiveMapKeySet.stgMethods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableIntSet Modifier and Type Method Description ImmutableIntSet
ImmutableIntIntMapKeySet. reject(IntPredicate predicate)
ImmutableIntSet
ImmutableIntMapKeySet. reject(IntPredicate predicate)
ImmutableIntSet
ImmutableIntIntMapKeySet. select(IntPredicate predicate)
ImmutableIntSet
ImmutableIntMapKeySet. select(IntPredicate predicate)
ImmutableIntSet
AbstractMutableIntKeySet. toImmutable()
-
Uses of ImmutableIntSet in org.eclipse.collections.impl.set.immutable
Methods in org.eclipse.collections.impl.set.immutable that return ImmutableIntSet Modifier and Type Method Description ImmutableIntSet
AbstractImmutableSet. collectInt(IntFunction<? super T> intFunction)
-
Uses of ImmutableIntSet in org.eclipse.collections.impl.set.immutable.primitive
Classes in org.eclipse.collections.impl.set.immutable.primitive that implement ImmutableIntSet Modifier and Type Class Description class
AbstractImmutableIntSet
This file was automatically generated from template file abstractImmutablePrimitiveSet.stg.(package private) class
ImmutableIntEmptySet
ImmutableIntEmptySet is an optimization forImmutableIntSet
of size 0.(package private) class
ImmutableIntSingletonSet
ImmutableIntSingletonSet is an optimization forImmutableIntSet
of size 1.Fields in org.eclipse.collections.impl.set.immutable.primitive declared as ImmutableIntSet Modifier and Type Field Description (package private) static ImmutableIntSet
ImmutableIntEmptySet. INSTANCE
Methods in org.eclipse.collections.impl.set.immutable.primitive that return ImmutableIntSet Modifier and Type Method Description ImmutableIntSet
ImmutableIntSetFactoryImpl. empty()
ImmutableIntSet
AbstractImmutableIntSet. newWith(int element)
ImmutableIntSet
ImmutableIntEmptySet. newWith(int element)
ImmutableIntSet
ImmutableIntSingletonSet. newWith(int element)
ImmutableIntSet
AbstractImmutableIntSet. newWithAll(IntIterable elements)
ImmutableIntSet
ImmutableIntEmptySet. newWithAll(IntIterable elements)
ImmutableIntSet
ImmutableIntSingletonSet. newWithAll(IntIterable elements)
ImmutableIntSet
AbstractImmutableIntSet. newWithout(int element)
ImmutableIntSet
ImmutableIntEmptySet. newWithout(int element)
ImmutableIntSet
ImmutableIntSingletonSet. newWithout(int element)
ImmutableIntSet
AbstractImmutableIntSet. newWithoutAll(IntIterable elements)
ImmutableIntSet
ImmutableIntEmptySet. newWithoutAll(IntIterable elements)
ImmutableIntSet
ImmutableIntSingletonSet. newWithoutAll(IntIterable elements)
ImmutableIntSet
ImmutableIntSetFactoryImpl. of()
ImmutableIntSet
ImmutableIntSetFactoryImpl. of(int one)
ImmutableIntSet
ImmutableIntSetFactoryImpl. of(int... items)
ImmutableIntSet
ImmutableIntSetFactoryImpl. ofAll(java.lang.Iterable<java.lang.Integer> iterable)
ImmutableIntSet
ImmutableIntSetFactoryImpl. ofAll(java.util.stream.IntStream items)
ImmutableIntSet
ImmutableIntSetFactoryImpl. ofAll(IntIterable items)
ImmutableIntSet
ImmutableIntEmptySet. reject(IntPredicate predicate)
ImmutableIntSet
ImmutableIntSingletonSet. reject(IntPredicate predicate)
ImmutableIntSet
ImmutableIntEmptySet. select(IntPredicate predicate)
ImmutableIntSet
ImmutableIntSingletonSet. select(IntPredicate predicate)
ImmutableIntSet
AbstractImmutableIntSet. toImmutable()
ImmutableIntSet
ImmutableIntEmptySet. toImmutable()
ImmutableIntSet
ImmutableIntSingletonSet. toImmutable()
ImmutableIntSet
ImmutableIntSetFactoryImpl. with()
ImmutableIntSet
ImmutableIntSetFactoryImpl. with(int one)
ImmutableIntSet
ImmutableIntSetFactoryImpl. with(int... items)
ImmutableIntSet
ImmutableIntSetFactoryImpl. withAll(java.lang.Iterable<java.lang.Integer> iterable)
ImmutableIntSet
ImmutableIntSetFactoryImpl. withAll(java.util.stream.IntStream items)
ImmutableIntSet
ImmutableIntSetFactoryImpl. withAll(IntIterable items)
-
Uses of ImmutableIntSet in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement ImmutableIntSet Modifier and Type Class Description private static class
IntHashSet.ImmutableIntHashSet
Methods in org.eclipse.collections.impl.set.mutable.primitive that return ImmutableIntSet Modifier and Type Method Description static ImmutableIntSet
IntHashSet.ImmutableIntHashSet. newSetWith(int... elements)
ImmutableIntSet
IntHashSet.ImmutableIntHashSet. reject(IntPredicate predicate)
ImmutableIntSet
IntHashSet.ImmutableIntHashSet. select(IntPredicate predicate)
ImmutableIntSet
IntHashSet. toImmutable()
ImmutableIntSet
SynchronizedIntSet. toImmutable()
ImmutableIntSet
UnmodifiableIntSet. toImmutable()
-
Uses of ImmutableIntSet in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return ImmutableIntSet Modifier and Type Method Description static ImmutableIntSet
PrimitiveStreams. iIntSet(java.util.stream.IntStream stream)
-