Uses of Interface
org.eclipse.collections.api.bag.primitive.ImmutableIntBag
-
Packages that use ImmutableIntBag Package Description org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.factory.bag.primitive 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.impl.bag.immutable This package contains implementations of theImmutableBag
interface.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.bimap.immutable 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.stream -
-
Uses of ImmutableIntBag in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return ImmutableIntBag Modifier and Type Method Description ImmutableIntBag
ImmutableBag. collectInt(IntFunction<? super T> intFunction)
-
Uses of ImmutableIntBag in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableIntBag Modifier and Type Method Description ImmutableIntBag
ImmutableIntBag. newWith(int element)
ImmutableIntBag
ImmutableIntBag. newWithAll(IntIterable elements)
ImmutableIntBag
ImmutableIntBag. newWithout(int element)
ImmutableIntBag
ImmutableIntBag. newWithoutAll(IntIterable elements)
ImmutableIntBag
ImmutableIntBag. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableIntBag. select(IntPredicate predicate)
ImmutableIntBag
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)
ImmutableIntBag
IntBag. toImmutable()
Returns an immutable copy of this bag.ImmutableIntBag
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 ImmutableIntBag Modifier and Type Method Description ImmutableIntBag
ImmutableIntBagFactory. empty()
ImmutableIntBag
ImmutableIntBagFactory. of()
Same asImmutableIntBagFactory.empty()
.ImmutableIntBag
ImmutableIntBagFactory. of(int one)
Same asImmutableIntBagFactory.with(int)
.ImmutableIntBag
ImmutableIntBagFactory. of(int... items)
Same asImmutableIntBagFactory.with(int[])
.ImmutableIntBag
ImmutableIntBagFactory. ofAll(java.lang.Iterable<java.lang.Integer> iterable)
ImmutableIntBag
ImmutableIntBagFactory. ofAll(java.util.stream.IntStream items)
ImmutableIntBag
ImmutableIntBagFactory. ofAll(IntIterable items)
ImmutableIntBag
ImmutableIntBagFactory. with()
Same asImmutableIntBagFactory.empty()
.ImmutableIntBag
ImmutableIntBagFactory. with(int one)
ImmutableIntBag
ImmutableIntBagFactory. with(int... items)
ImmutableIntBag
ImmutableIntBagFactory. withAll(java.lang.Iterable<java.lang.Integer> iterable)
ImmutableIntBag
ImmutableIntBagFactory. withAll(java.util.stream.IntStream items)
ImmutableIntBag
ImmutableIntBagFactory. withAll(IntIterable items)
-
Uses of ImmutableIntBag in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableIntBag Modifier and Type Method Description ImmutableIntBag
ImmutableMap. collectInt(IntFunction<? super V> intFunction)
-
Uses of ImmutableIntBag in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableIntBag Modifier and Type Method Description ImmutableIntBag
ImmutablePrimitiveObjectMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableByteIntMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableCharIntMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableDoubleIntMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableFloatIntMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableIntIntMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableLongIntMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableShortIntMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableByteIntMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableCharIntMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableDoubleIntMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableFloatIntMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableIntIntMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableLongIntMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableShortIntMap. select(IntPredicate predicate)
-
Uses of ImmutableIntBag in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable that return ImmutableIntBag Modifier and Type Method Description ImmutableIntBag
AbstractImmutableBag. collectInt(IntFunction<? super T> intFunction)
ImmutableIntBag
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 ImmutableIntBag Modifier and Type Class Description (package private) class
ImmutableIntEmptyBag
ImmutableIntEmptyBag is an optimization forImmutableIntBag
of size 0.(package private) class
ImmutableIntHashBag
ImmutableIntHashBag is the non-modifiable equivalent ofIntHashBag
.(package private) class
ImmutableIntSingletonBag
ImmutableIntSingletonBag is an optimization forImmutableIntBag
of size 1.Fields in org.eclipse.collections.impl.bag.immutable.primitive declared as ImmutableIntBag Modifier and Type Field Description (package private) static ImmutableIntBag
ImmutableIntEmptyBag. INSTANCE
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return ImmutableIntBag Modifier and Type Method Description ImmutableIntBag
ImmutableIntBagFactoryImpl. empty()
ImmutableIntBag
ImmutableIntEmptyBag. newWith(int element)
ImmutableIntBag
ImmutableIntHashBag. newWith(int element)
ImmutableIntBag
ImmutableIntSingletonBag. newWith(int element)
ImmutableIntBag
ImmutableIntEmptyBag. newWithAll(IntIterable elements)
ImmutableIntBag
ImmutableIntHashBag. newWithAll(IntIterable elements)
ImmutableIntBag
ImmutableIntSingletonBag. newWithAll(IntIterable elements)
ImmutableIntBag
ImmutableIntEmptyBag. newWithout(int element)
ImmutableIntBag
ImmutableIntHashBag. newWithout(int element)
ImmutableIntBag
ImmutableIntSingletonBag. newWithout(int element)
ImmutableIntBag
ImmutableIntEmptyBag. newWithoutAll(IntIterable elements)
ImmutableIntBag
ImmutableIntHashBag. newWithoutAll(IntIterable elements)
ImmutableIntBag
ImmutableIntSingletonBag. newWithoutAll(IntIterable elements)
ImmutableIntBag
ImmutableIntBagFactoryImpl. of()
ImmutableIntBag
ImmutableIntBagFactoryImpl. of(int one)
ImmutableIntBag
ImmutableIntBagFactoryImpl. of(int... items)
ImmutableIntBag
ImmutableIntBagFactoryImpl. ofAll(java.lang.Iterable<java.lang.Integer> iterable)
ImmutableIntBag
ImmutableIntBagFactoryImpl. ofAll(java.util.stream.IntStream items)
ImmutableIntBag
ImmutableIntBagFactoryImpl. ofAll(IntIterable items)
ImmutableIntBag
ImmutableIntEmptyBag. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableIntHashBag. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableIntSingletonBag. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableIntEmptyBag. select(IntPredicate predicate)
ImmutableIntBag
ImmutableIntHashBag. select(IntPredicate predicate)
ImmutableIntBag
ImmutableIntSingletonBag. select(IntPredicate predicate)
ImmutableIntBag
ImmutableIntEmptyBag. selectByOccurrences(IntPredicate predicate)
ImmutableIntBag
ImmutableIntHashBag. selectByOccurrences(IntPredicate predicate)
ImmutableIntBag
ImmutableIntSingletonBag. selectByOccurrences(IntPredicate predicate)
ImmutableIntBag
ImmutableIntEmptyBag. toImmutable()
ImmutableIntBag
ImmutableIntHashBag. toImmutable()
ImmutableIntBag
ImmutableIntSingletonBag. toImmutable()
ImmutableIntBag
ImmutableIntBagFactoryImpl. with()
ImmutableIntBag
ImmutableIntBagFactoryImpl. with(int one)
ImmutableIntBag
ImmutableIntBagFactoryImpl. with(int... items)
ImmutableIntBag
ImmutableIntBagFactoryImpl. withAll(java.lang.Iterable<java.lang.Integer> iterable)
ImmutableIntBag
ImmutableIntBagFactoryImpl. withAll(java.util.stream.IntStream items)
ImmutableIntBag
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 ImmutableIntBag Modifier and Type Method Description ImmutableIntBag
IntHashBag. toImmutable()
ImmutableIntBag
SynchronizedIntBag. toImmutable()
ImmutableIntBag
UnmodifiableIntBag. toImmutable()
-
Uses of ImmutableIntBag in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable that return ImmutableIntBag Modifier and Type Method Description ImmutableIntBag
AbstractImmutableBiMap. 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 ImmutableIntBag Modifier and Type Method Description ImmutableIntBag
AbstractImmutableMap. 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 ImmutableIntBag Modifier and Type Method Description ImmutableIntBag
ImmutableByteObjectEmptyMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableByteObjectHashMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableByteObjectSingletonMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableCharObjectEmptyMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableCharObjectHashMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableCharObjectSingletonMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableDoubleObjectEmptyMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableDoubleObjectHashMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableDoubleObjectSingletonMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableFloatObjectEmptyMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableFloatObjectHashMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableFloatObjectSingletonMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableIntObjectEmptyMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableIntObjectHashMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableIntObjectSingletonMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableLongObjectEmptyMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableLongObjectHashMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableLongObjectSingletonMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableShortObjectEmptyMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableShortObjectHashMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableShortObjectSingletonMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntBag
ImmutableByteIntEmptyMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableByteIntHashMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableByteIntSingletonMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableCharIntEmptyMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableCharIntHashMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableCharIntSingletonMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableDoubleIntEmptyMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableDoubleIntHashMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableDoubleIntSingletonMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableFloatIntEmptyMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableFloatIntHashMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableFloatIntSingletonMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableIntIntEmptyMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableIntIntHashMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableIntIntSingletonMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableLongIntEmptyMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableLongIntHashMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableLongIntSingletonMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableShortIntEmptyMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableShortIntHashMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableShortIntSingletonMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableByteIntEmptyMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableByteIntHashMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableByteIntSingletonMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableCharIntEmptyMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableCharIntHashMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableCharIntSingletonMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableDoubleIntEmptyMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableDoubleIntHashMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableDoubleIntSingletonMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableFloatIntEmptyMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableFloatIntHashMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableFloatIntSingletonMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableIntIntEmptyMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableIntIntHashMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableIntIntSingletonMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableLongIntEmptyMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableLongIntHashMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableLongIntSingletonMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableShortIntEmptyMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableShortIntHashMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableShortIntSingletonMap. select(IntPredicate predicate)
-
Uses of ImmutableIntBag in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return ImmutableIntBag Modifier and Type Method Description static ImmutableIntBag
PrimitiveStreams. iIntBag(java.util.stream.IntStream stream)
-