Uses of Interface
org.eclipse.collections.api.bag.primitive.MutableIntBag
-
Packages that use MutableIntBag 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.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.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBag
interface.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMap
interface.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.primitive This package contains implementations of the primitive list interfaces.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 This package contains implementations of theMutableMap
interface.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.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stack.primitive org.eclipse.collections.impl.stream org.eclipse.collections.impl.string.immutable -
-
Uses of MutableIntBag in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableIntBag Modifier and Type Method Description MutableIntBag
IntIterable. toBag()
Converts the IntIterable to a new MutableIntBag. -
Uses of MutableIntBag in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return MutableIntBag Modifier and Type Method Description default MutableIntBag
MutableBag. collectInt(IntFunction<? super T> intFunction)
-
Uses of MutableIntBag in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return MutableIntBag Modifier and Type Method Description MutableIntBag
MutableIntBag. asSynchronized()
MutableIntBag
MutableIntBag. asUnmodifiable()
default MutableIntBag
MutableIntBag. newEmpty()
Creates a new empty mutable version of the same Bag type.MutableIntBag
MutableIntBag. reject(IntPredicate predicate)
MutableIntBag
MutableIntBag. select(IntPredicate predicate)
MutableIntBag
MutableIntBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.default MutableIntBag
MutableIntBag. selectDuplicates()
Returns all elements of the bag that have more than one occurrence.default MutableIntBag
MutableIntBag. tap(IntProcedure procedure)
MutableIntBag
MutableIntBag. with(int element)
MutableIntBag
MutableIntBag. withAll(IntIterable elements)
MutableIntBag
MutableIntBag. without(int element)
MutableIntBag
MutableIntBag. withoutAll(IntIterable elements)
-
Uses of MutableIntBag in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive that return MutableIntBag Modifier and Type Method Description MutableIntBag
MutableIntBagFactory. empty()
MutableIntBag
MutableIntBagFactory. of()
Same asMutableIntBagFactory.empty()
.MutableIntBag
MutableIntBagFactory. of(int... items)
Same asMutableIntBagFactory.with(int[])
.MutableIntBag
MutableIntBagFactory. ofAll(java.lang.Iterable<java.lang.Integer> iterable)
MutableIntBag
MutableIntBagFactory. ofAll(java.util.stream.IntStream items)
MutableIntBag
MutableIntBagFactory. ofAll(IntIterable items)
MutableIntBag
MutableIntBagFactory. with()
Same asMutableIntBagFactory.empty()
.MutableIntBag
MutableIntBagFactory. with(int... items)
MutableIntBag
MutableIntBagFactory. withAll(java.lang.Iterable<java.lang.Integer> iterable)
MutableIntBag
MutableIntBagFactory. withAll(java.util.stream.IntStream items)
MutableIntBag
MutableIntBagFactory. withAll(IntIterable items)
-
Uses of MutableIntBag in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableIntBag Modifier and Type Method Description MutableIntBag
MutableMap. collectInt(IntFunction<? super V> intFunction)
-
Uses of MutableIntBag in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableIntBag Modifier and Type Method Description MutableIntBag
MutablePrimitiveObjectMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
MutableIntValuesMap. reject(IntPredicate predicate)
MutableIntBag
MutableIntValuesMap. select(IntPredicate predicate)
-
Uses of MutableIntBag in org.eclipse.collections.impl.bag.immutable.primitive
Fields in org.eclipse.collections.impl.bag.immutable.primitive declared as MutableIntBag Modifier and Type Field Description private MutableIntBag
ImmutableIntHashBag. delegate
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return MutableIntBag Modifier and Type Method Description MutableIntBag
ImmutableIntEmptyBag. toBag()
MutableIntBag
ImmutableIntHashBag. toBag()
MutableIntBag
ImmutableIntSingletonBag. toBag()
-
Uses of MutableIntBag in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable that return MutableIntBag Modifier and Type Method Description MutableIntBag
MultiReaderHashBag. collectInt(IntFunction<? super T> intFunction)
MutableIntBag
MultiReaderHashBag.UntouchableMutableBag. collectInt(IntFunction<? super T> intFunction)
MutableIntBag
SynchronizedBag. collectInt(IntFunction<? super T> intFunction)
MutableIntBag
UnmodifiableBag. collectInt(IntFunction<? super T> intFunction)
-
Uses of MutableIntBag in org.eclipse.collections.impl.bag.mutable.primitive
Classes in org.eclipse.collections.impl.bag.mutable.primitive that implement MutableIntBag Modifier and Type Class Description class
IntHashBag
IntHashBag is similar toHashBag
, and is memory-optimized for int primitives.class
SynchronizedIntBag
A synchronized view of aMutableIntBag
.class
UnmodifiableIntBag
This file was automatically generated from template file unmodifiablePrimitiveBag.stg.Methods in org.eclipse.collections.impl.bag.mutable.primitive that return MutableIntBag Modifier and Type Method Description MutableIntBag
IntHashBag. asSynchronized()
MutableIntBag
SynchronizedIntBag. asSynchronized()
MutableIntBag
UnmodifiableIntBag. asSynchronized()
MutableIntBag
IntHashBag. asUnmodifiable()
MutableIntBag
SynchronizedIntBag. asUnmodifiable()
MutableIntBag
UnmodifiableIntBag. asUnmodifiable()
MutableIntBag
MutableIntBagFactoryImpl. empty()
private MutableIntBag
SynchronizedIntBag. getMutableIntBag()
private MutableIntBag
UnmodifiableIntBag. getMutableIntBag()
MutableIntBag
SynchronizedIntBag. newEmpty()
MutableIntBag
UnmodifiableIntBag. newEmpty()
MutableIntBag
MutableIntBagFactoryImpl. of()
MutableIntBag
MutableIntBagFactoryImpl. of(int... items)
MutableIntBag
MutableIntBagFactoryImpl. ofAll(java.lang.Iterable<java.lang.Integer> iterable)
MutableIntBag
MutableIntBagFactoryImpl. ofAll(java.util.stream.IntStream items)
MutableIntBag
MutableIntBagFactoryImpl. ofAll(IntIterable items)
MutableIntBag
SynchronizedIntBag. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableIntBag. reject(IntPredicate predicate)
MutableIntBag
SynchronizedIntBag. select(IntPredicate predicate)
MutableIntBag
UnmodifiableIntBag. select(IntPredicate predicate)
MutableIntBag
SynchronizedIntBag. selectByOccurrences(IntPredicate predicate)
MutableIntBag
UnmodifiableIntBag. selectByOccurrences(IntPredicate predicate)
MutableIntBag
MutableIntBagFactoryImpl. with()
MutableIntBag
MutableIntBagFactoryImpl. with(int... items)
MutableIntBag
MutableIntBagFactoryImpl. withAll(java.lang.Iterable<java.lang.Integer> iterable)
MutableIntBag
MutableIntBagFactoryImpl. withAll(java.util.stream.IntStream items)
MutableIntBag
MutableIntBagFactoryImpl. withAll(IntIterable items)
Constructors in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type MutableIntBag Constructor Description SynchronizedIntBag(MutableIntBag bag)
SynchronizedIntBag(MutableIntBag bag, java.lang.Object newLock)
UnmodifiableIntBag(MutableIntBag bag)
-
Uses of MutableIntBag in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable that return MutableIntBag Modifier and Type Method Description MutableIntBag
AbstractMutableBiMap. collectInt(IntFunction<? super V> intFunction)
-
Uses of MutableIntBag in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableIntBag Modifier and Type Method Description MutableIntBag
AbstractSynchronizedIntCollection. toBag()
MutableIntBag
AbstractUnmodifiableIntCollection. toBag()
-
Uses of MutableIntBag in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableIntBag Modifier and Type Method Description MutableIntBag
AbstractLazyIntIterable. toBag()
MutableIntBag
CollectIntIterable. toBag()
MutableIntBag
LazyIntIterableAdapter. toBag()
MutableIntBag
ReverseIntIterable. toBag()
MutableIntBag
SelectIntIterable. toBag()
-
Uses of MutableIntBag in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableIntBag Modifier and Type Method Description MutableIntBag
ImmutableIntArrayList. toBag()
MutableIntBag
ImmutableIntEmptyList. toBag()
MutableIntBag
ImmutableIntSingletonList. toBag()
-
Uses of MutableIntBag in org.eclipse.collections.impl.list.primitive
Methods in org.eclipse.collections.impl.list.primitive that return MutableIntBag Modifier and Type Method Description MutableIntBag
IntInterval. toBag()
-
Uses of MutableIntBag in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableIntBag Modifier and Type Method Description MutableIntBag
ImmutableByteIntEmptyMap. toBag()
MutableIntBag
ImmutableByteIntHashMap. toBag()
MutableIntBag
ImmutableByteIntSingletonMap. toBag()
MutableIntBag
ImmutableCharIntEmptyMap. toBag()
MutableIntBag
ImmutableCharIntHashMap. toBag()
MutableIntBag
ImmutableCharIntSingletonMap. toBag()
MutableIntBag
ImmutableDoubleIntEmptyMap. toBag()
MutableIntBag
ImmutableDoubleIntHashMap. toBag()
MutableIntBag
ImmutableDoubleIntSingletonMap. toBag()
MutableIntBag
ImmutableFloatIntEmptyMap. toBag()
MutableIntBag
ImmutableFloatIntHashMap. toBag()
MutableIntBag
ImmutableFloatIntSingletonMap. toBag()
MutableIntBag
ImmutableIntIntEmptyMap. toBag()
MutableIntBag
ImmutableIntIntHashMap. toBag()
MutableIntBag
ImmutableIntIntSingletonMap. toBag()
MutableIntBag
ImmutableLongIntEmptyMap. toBag()
MutableIntBag
ImmutableLongIntHashMap. toBag()
MutableIntBag
ImmutableLongIntSingletonMap. toBag()
MutableIntBag
ImmutableObjectIntEmptyMap. toBag()
MutableIntBag
ImmutableObjectIntHashMap. toBag()
MutableIntBag
ImmutableObjectIntSingletonMap. toBag()
MutableIntBag
ImmutableShortIntEmptyMap. toBag()
MutableIntBag
ImmutableShortIntHashMap. toBag()
MutableIntBag
ImmutableShortIntSingletonMap. toBag()
-
Uses of MutableIntBag in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable that return MutableIntBag Modifier and Type Method Description MutableIntBag
AbstractMutableMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
SynchronizedMutableMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
UnmodifiableMutableMap. collectInt(IntFunction<? super V> intFunction)
-
Uses of MutableIntBag in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableIntBag Modifier and Type Method Description MutableIntBag
ByteObjectHashMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
CharObjectHashMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
DoubleObjectHashMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
FloatObjectHashMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
IntObjectHashMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
LongObjectHashMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
ShortObjectHashMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
SynchronizedByteObjectMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
SynchronizedCharObjectMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
SynchronizedDoubleObjectMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
SynchronizedFloatObjectMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
SynchronizedIntObjectMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
SynchronizedLongObjectMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
SynchronizedShortObjectMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
UnmodifiableByteObjectMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
UnmodifiableCharObjectMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
UnmodifiableDoubleObjectMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
UnmodifiableFloatObjectMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
UnmodifiableIntObjectMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
UnmodifiableLongObjectMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
UnmodifiableShortObjectMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
AbstractMutableIntValuesMap. reject(IntPredicate predicate)
MutableIntBag
SynchronizedByteIntMap. reject(IntPredicate predicate)
MutableIntBag
SynchronizedCharIntMap. reject(IntPredicate predicate)
MutableIntBag
SynchronizedDoubleIntMap. reject(IntPredicate predicate)
MutableIntBag
SynchronizedFloatIntMap. reject(IntPredicate predicate)
MutableIntBag
SynchronizedIntIntMap. reject(IntPredicate predicate)
MutableIntBag
SynchronizedLongIntMap. reject(IntPredicate predicate)
MutableIntBag
SynchronizedShortIntMap. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableByteIntMap. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableCharIntMap. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableDoubleIntMap. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableFloatIntMap. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableIntIntMap. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableLongIntMap. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableShortIntMap. reject(IntPredicate predicate)
MutableIntBag
AbstractMutableIntValuesMap. select(IntPredicate predicate)
MutableIntBag
SynchronizedByteIntMap. select(IntPredicate predicate)
MutableIntBag
SynchronizedCharIntMap. select(IntPredicate predicate)
MutableIntBag
SynchronizedDoubleIntMap. select(IntPredicate predicate)
MutableIntBag
SynchronizedFloatIntMap. select(IntPredicate predicate)
MutableIntBag
SynchronizedIntIntMap. select(IntPredicate predicate)
MutableIntBag
SynchronizedLongIntMap. select(IntPredicate predicate)
MutableIntBag
SynchronizedShortIntMap. select(IntPredicate predicate)
MutableIntBag
UnmodifiableByteIntMap. select(IntPredicate predicate)
MutableIntBag
UnmodifiableCharIntMap. select(IntPredicate predicate)
MutableIntBag
UnmodifiableDoubleIntMap. select(IntPredicate predicate)
MutableIntBag
UnmodifiableFloatIntMap. select(IntPredicate predicate)
MutableIntBag
UnmodifiableIntIntMap. select(IntPredicate predicate)
MutableIntBag
UnmodifiableLongIntMap. select(IntPredicate predicate)
MutableIntBag
UnmodifiableShortIntMap. select(IntPredicate predicate)
MutableIntBag
AbstractMutableIntKeySet. toBag()
MutableIntBag
AbstractMutableIntValuesMap.AbstractIntValuesCollection. toBag()
MutableIntBag
IntBooleanHashMap.KeysView. toBag()
MutableIntBag
ObjectIntHashMap. toBag()
MutableIntBag
ObjectIntHashMap.ValuesCollection. toBag()
MutableIntBag
ObjectIntHashMapWithHashingStrategy. toBag()
MutableIntBag
ObjectIntHashMapWithHashingStrategy.ValuesCollection. toBag()
MutableIntBag
SynchronizedByteIntMap. toBag()
MutableIntBag
SynchronizedCharIntMap. toBag()
MutableIntBag
SynchronizedDoubleIntMap. toBag()
MutableIntBag
SynchronizedFloatIntMap. toBag()
MutableIntBag
SynchronizedIntIntMap. toBag()
MutableIntBag
SynchronizedLongIntMap. toBag()
MutableIntBag
SynchronizedObjectIntMap. toBag()
MutableIntBag
SynchronizedShortIntMap. toBag()
MutableIntBag
UnmodifiableByteIntMap. toBag()
MutableIntBag
UnmodifiableCharIntMap. toBag()
MutableIntBag
UnmodifiableDoubleIntMap. toBag()
MutableIntBag
UnmodifiableFloatIntMap. toBag()
MutableIntBag
UnmodifiableIntIntMap. toBag()
MutableIntBag
UnmodifiableLongIntMap. toBag()
MutableIntBag
UnmodifiableObjectIntMap. toBag()
MutableIntBag
UnmodifiableShortIntMap. toBag()
-
Uses of MutableIntBag in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableIntBag Modifier and Type Method Description MutableIntBag
AbstractIntIterable. toBag()
MutableIntBag
SynchronizedIntIterable. toBag()
-
Uses of MutableIntBag in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableIntBag Modifier and Type Method Description MutableIntBag
ImmutableIntEmptySet. toBag()
MutableIntBag
ImmutableIntSingletonSet. toBag()
-
Uses of MutableIntBag in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return MutableIntBag Modifier and Type Method Description MutableIntBag
ImmutableIntEmptyStack. toBag()
MutableIntBag
ImmutableIntSingletonStack. toBag()
-
Uses of MutableIntBag in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableIntBag Modifier and Type Method Description MutableIntBag
SynchronizedIntStack. toBag()
MutableIntBag
UnmodifiableIntStack. toBag()
-
Uses of MutableIntBag in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableIntBag Modifier and Type Method Description MutableIntBag
AbstractIntStack. toBag()
-
Uses of MutableIntBag in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return MutableIntBag Modifier and Type Method Description static MutableIntBag
PrimitiveStreams. mIntBag(java.util.stream.IntStream stream)
-
Uses of MutableIntBag in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable that return MutableIntBag Modifier and Type Method Description MutableIntBag
CodePointAdapter. toBag()
MutableIntBag
CodePointList. toBag()
-