Uses of Interface
org.eclipse.collections.api.bag.primitive.ImmutableIntBag
Packages that use ImmutableIntBag
Package
Description
This package contains interfaces for Bag API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
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 implementations of the
ImmutableBag
interface.This package contains implementations of the immutable primitive bag interfaces.
This package contains implementations of the mutable primitive bag interfaces.
This package contains implementations of the
ImmutableMap
interface.This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
-
Uses of ImmutableIntBag in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return ImmutableIntBag -
Uses of ImmutableIntBag in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableIntBagModifier and TypeMethodDescriptionImmutableIntBag.newWith
(int element) ImmutableIntBag.newWithAll
(IntIterable elements) ImmutableIntBag.newWithout
(int element) ImmutableIntBag.newWithoutAll
(IntIterable elements) ImmutableIntBag.reject
(IntPredicate predicate) ImmutableIntBag.select
(IntPredicate predicate) ImmutableIntBag.selectByOccurrences
(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.default ImmutableIntBag
ImmutableIntBag.selectDuplicates()
Returns all elements of the bag that have more than one occurrence.default ImmutableIntBag
ImmutableIntBag.tap
(IntProcedure procedure) IntBag.toImmutable()
Returns an immutable copy of this bag.MutableIntBag.toImmutable()
Returns an immutable copy of this bag. -
Uses of ImmutableIntBag in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive that return ImmutableIntBagModifier and TypeMethodDescriptionImmutableIntBagFactory.empty()
ImmutableIntBagFactory.of()
Same asImmutableIntBagFactory.empty()
.ImmutableIntBagFactory.of
(int one) Same asImmutableIntBagFactory.with(int)
.ImmutableIntBagFactory.of
(int... items) Same asImmutableIntBagFactory.with(int[])
.ImmutableIntBagFactory.ofAll
(IntIterable items) ImmutableIntBagFactory.with()
Same asImmutableIntBagFactory.empty()
.ImmutableIntBagFactory.with
(int one) ImmutableIntBagFactory.with
(int... items) ImmutableIntBagFactory.withAll
(IntIterable items) -
Uses of ImmutableIntBag in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableIntBag -
Uses of ImmutableIntBag in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableIntBagModifier and TypeMethodDescriptionImmutablePrimitiveObjectMap.collectInt
(IntFunction<? super V> intFunction) ImmutableByteIntMap.reject
(IntPredicate predicate) ImmutableCharIntMap.reject
(IntPredicate predicate) ImmutableDoubleIntMap.reject
(IntPredicate predicate) ImmutableFloatIntMap.reject
(IntPredicate predicate) ImmutableIntIntMap.reject
(IntPredicate predicate) ImmutableLongIntMap.reject
(IntPredicate predicate) ImmutableShortIntMap.reject
(IntPredicate predicate) ImmutableByteIntMap.select
(IntPredicate predicate) ImmutableCharIntMap.select
(IntPredicate predicate) ImmutableDoubleIntMap.select
(IntPredicate predicate) ImmutableFloatIntMap.select
(IntPredicate predicate) ImmutableIntIntMap.select
(IntPredicate predicate) ImmutableLongIntMap.select
(IntPredicate predicate) ImmutableShortIntMap.select
(IntPredicate predicate) -
Uses of ImmutableIntBag in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable that return ImmutableIntBagModifier and TypeMethodDescriptionAbstractImmutableBag.collectInt
(IntFunction<? super T> intFunction) ImmutableEmptyBag.collectInt
(IntFunction<? super T> intFunction) -
Uses of ImmutableIntBag in org.eclipse.collections.impl.bag.immutable.primitive
Classes in org.eclipse.collections.impl.bag.immutable.primitive that implement ImmutableIntBagModifier and TypeClassDescription(package private) final class
ImmutableIntEmptyBag is an optimization forImmutableIntBag
of size 0.(package private) final class
ImmutableIntHashBag is the non-modifiable equivalent ofIntHashBag
.(package private) final class
ImmutableIntSingletonBag is an optimization forImmutableIntBag
of size 1.Fields in org.eclipse.collections.impl.bag.immutable.primitive declared as ImmutableIntBagModifier and TypeFieldDescription(package private) static final ImmutableIntBag
ImmutableIntEmptyBag.INSTANCE
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return ImmutableIntBagModifier and TypeMethodDescriptionImmutableIntBagFactoryImpl.empty()
ImmutableIntEmptyBag.newWith
(int element) ImmutableIntHashBag.newWith
(int element) ImmutableIntSingletonBag.newWith
(int element) ImmutableIntEmptyBag.newWithAll
(IntIterable elements) ImmutableIntHashBag.newWithAll
(IntIterable elements) ImmutableIntSingletonBag.newWithAll
(IntIterable elements) ImmutableIntEmptyBag.newWithout
(int element) ImmutableIntHashBag.newWithout
(int element) ImmutableIntSingletonBag.newWithout
(int element) ImmutableIntEmptyBag.newWithoutAll
(IntIterable elements) ImmutableIntHashBag.newWithoutAll
(IntIterable elements) ImmutableIntSingletonBag.newWithoutAll
(IntIterable elements) ImmutableIntBagFactoryImpl.of()
ImmutableIntBagFactoryImpl.of
(int one) ImmutableIntBagFactoryImpl.of
(int... items) ImmutableIntBagFactoryImpl.ofAll
(IntIterable items) ImmutableIntEmptyBag.reject
(IntPredicate predicate) ImmutableIntHashBag.reject
(IntPredicate predicate) ImmutableIntSingletonBag.reject
(IntPredicate predicate) ImmutableIntEmptyBag.select
(IntPredicate predicate) ImmutableIntHashBag.select
(IntPredicate predicate) ImmutableIntSingletonBag.select
(IntPredicate predicate) ImmutableIntEmptyBag.selectByOccurrences
(IntPredicate predicate) ImmutableIntHashBag.selectByOccurrences
(IntPredicate predicate) ImmutableIntSingletonBag.selectByOccurrences
(IntPredicate predicate) ImmutableIntEmptyBag.toImmutable()
ImmutableIntHashBag.toImmutable()
ImmutableIntSingletonBag.toImmutable()
ImmutableIntBagFactoryImpl.with()
ImmutableIntBagFactoryImpl.with
(int one) ImmutableIntBagFactoryImpl.with
(int... items) ImmutableIntBagFactoryImpl.withAll
(IntIterable items) -
Uses of ImmutableIntBag in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive that return ImmutableIntBagModifier and TypeMethodDescriptionIntHashBag.toImmutable()
SynchronizedIntBag.toImmutable()
UnmodifiableIntBag.toImmutable()
-
Uses of ImmutableIntBag in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable that return ImmutableIntBagModifier and TypeMethodDescriptionAbstractImmutableBiMap.collectInt
(IntFunction<? super V> intFunction) -
Uses of ImmutableIntBag in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable that return ImmutableIntBagModifier and TypeMethodDescriptionAbstractImmutableMap.collectInt
(IntFunction<? super V> intFunction) -
Uses of ImmutableIntBag in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableIntBagModifier and TypeMethodDescriptionImmutableByteObjectEmptyMap.collectInt
(IntFunction<? super V> intFunction) ImmutableByteObjectHashMap.collectInt
(IntFunction<? super V> intFunction) ImmutableByteObjectSingletonMap.collectInt
(IntFunction<? super V> intFunction) ImmutableCharObjectEmptyMap.collectInt
(IntFunction<? super V> intFunction) ImmutableCharObjectHashMap.collectInt
(IntFunction<? super V> intFunction) ImmutableCharObjectSingletonMap.collectInt
(IntFunction<? super V> intFunction) ImmutableDoubleObjectEmptyMap.collectInt
(IntFunction<? super V> intFunction) ImmutableDoubleObjectHashMap.collectInt
(IntFunction<? super V> intFunction) ImmutableDoubleObjectSingletonMap.collectInt
(IntFunction<? super V> intFunction) ImmutableFloatObjectEmptyMap.collectInt
(IntFunction<? super V> intFunction) ImmutableFloatObjectHashMap.collectInt
(IntFunction<? super V> intFunction) ImmutableFloatObjectSingletonMap.collectInt
(IntFunction<? super V> intFunction) ImmutableIntObjectEmptyMap.collectInt
(IntFunction<? super V> intFunction) ImmutableIntObjectHashMap.collectInt
(IntFunction<? super V> intFunction) ImmutableIntObjectSingletonMap.collectInt
(IntFunction<? super V> intFunction) ImmutableLongObjectEmptyMap.collectInt
(IntFunction<? super V> intFunction) ImmutableLongObjectHashMap.collectInt
(IntFunction<? super V> intFunction) ImmutableLongObjectSingletonMap.collectInt
(IntFunction<? super V> intFunction) ImmutableShortObjectEmptyMap.collectInt
(IntFunction<? super V> intFunction) ImmutableShortObjectHashMap.collectInt
(IntFunction<? super V> intFunction) ImmutableShortObjectSingletonMap.collectInt
(IntFunction<? super V> intFunction) ImmutableByteIntEmptyMap.reject
(IntPredicate predicate) ImmutableByteIntHashMap.reject
(IntPredicate predicate) ImmutableByteIntSingletonMap.reject
(IntPredicate predicate) ImmutableCharIntEmptyMap.reject
(IntPredicate predicate) ImmutableCharIntHashMap.reject
(IntPredicate predicate) ImmutableCharIntSingletonMap.reject
(IntPredicate predicate) ImmutableDoubleIntEmptyMap.reject
(IntPredicate predicate) ImmutableDoubleIntHashMap.reject
(IntPredicate predicate) ImmutableDoubleIntSingletonMap.reject
(IntPredicate predicate) ImmutableFloatIntEmptyMap.reject
(IntPredicate predicate) ImmutableFloatIntHashMap.reject
(IntPredicate predicate) ImmutableFloatIntSingletonMap.reject
(IntPredicate predicate) ImmutableIntIntEmptyMap.reject
(IntPredicate predicate) ImmutableIntIntHashMap.reject
(IntPredicate predicate) ImmutableIntIntSingletonMap.reject
(IntPredicate predicate) ImmutableLongIntEmptyMap.reject
(IntPredicate predicate) ImmutableLongIntHashMap.reject
(IntPredicate predicate) ImmutableLongIntSingletonMap.reject
(IntPredicate predicate) ImmutableShortIntEmptyMap.reject
(IntPredicate predicate) ImmutableShortIntHashMap.reject
(IntPredicate predicate) ImmutableShortIntSingletonMap.reject
(IntPredicate predicate) ImmutableByteIntEmptyMap.select
(IntPredicate predicate) ImmutableByteIntHashMap.select
(IntPredicate predicate) ImmutableByteIntSingletonMap.select
(IntPredicate predicate) ImmutableCharIntEmptyMap.select
(IntPredicate predicate) ImmutableCharIntHashMap.select
(IntPredicate predicate) ImmutableCharIntSingletonMap.select
(IntPredicate predicate) ImmutableDoubleIntEmptyMap.select
(IntPredicate predicate) ImmutableDoubleIntHashMap.select
(IntPredicate predicate) ImmutableDoubleIntSingletonMap.select
(IntPredicate predicate) ImmutableFloatIntEmptyMap.select
(IntPredicate predicate) ImmutableFloatIntHashMap.select
(IntPredicate predicate) ImmutableFloatIntSingletonMap.select
(IntPredicate predicate) ImmutableIntIntEmptyMap.select
(IntPredicate predicate) ImmutableIntIntHashMap.select
(IntPredicate predicate) ImmutableIntIntSingletonMap.select
(IntPredicate predicate) ImmutableLongIntEmptyMap.select
(IntPredicate predicate) ImmutableLongIntHashMap.select
(IntPredicate predicate) ImmutableLongIntSingletonMap.select
(IntPredicate predicate) ImmutableShortIntEmptyMap.select
(IntPredicate predicate) ImmutableShortIntHashMap.select
(IntPredicate predicate) ImmutableShortIntSingletonMap.select
(IntPredicate predicate) -
Uses of ImmutableIntBag in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return ImmutableIntBag