Uses of Interface
org.eclipse.collections.api.bag.primitive.MutableByteBag
-
Packages that use MutableByteBag 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.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.set.mutable.primitive This package contains implementations of the mutable 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 -
-
Uses of MutableByteBag in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableByteBag Modifier and Type Method Description MutableByteBag
ByteIterable. toBag()
Converts the ByteIterable to a new MutableByteBag. -
Uses of MutableByteBag in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return MutableByteBag Modifier and Type Method Description default MutableByteBag
MutableBag. collectByte(ByteFunction<? super T> byteFunction)
-
Uses of MutableByteBag in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return MutableByteBag Modifier and Type Method Description MutableByteBag
MutableByteBag. asSynchronized()
MutableByteBag
MutableByteBag. asUnmodifiable()
default MutableByteBag
MutableByteBag. newEmpty()
Creates a new empty mutable version of the same Bag type.MutableByteBag
MutableByteBag. reject(BytePredicate predicate)
MutableByteBag
MutableByteBag. select(BytePredicate predicate)
MutableByteBag
MutableByteBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.default MutableByteBag
MutableByteBag. selectDuplicates()
Returns all elements of the bag that have more than one occurrence.default MutableByteBag
MutableByteBag. tap(ByteProcedure procedure)
MutableByteBag
MutableByteBag. with(byte element)
MutableByteBag
MutableByteBag. withAll(ByteIterable elements)
MutableByteBag
MutableByteBag. without(byte element)
MutableByteBag
MutableByteBag. withoutAll(ByteIterable elements)
-
Uses of MutableByteBag in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive that return MutableByteBag Modifier and Type Method Description MutableByteBag
MutableByteBagFactory. empty()
MutableByteBag
MutableByteBagFactory. of()
Same asMutableByteBagFactory.empty()
.MutableByteBag
MutableByteBagFactory. of(byte... items)
Same asMutableByteBagFactory.with(byte[])
.MutableByteBag
MutableByteBagFactory. ofAll(java.lang.Iterable<java.lang.Byte> iterable)
MutableByteBag
MutableByteBagFactory. ofAll(ByteIterable items)
MutableByteBag
MutableByteBagFactory. with()
Same asMutableByteBagFactory.empty()
.MutableByteBag
MutableByteBagFactory. with(byte... items)
MutableByteBag
MutableByteBagFactory. withAll(java.lang.Iterable<java.lang.Byte> iterable)
MutableByteBag
MutableByteBagFactory. withAll(ByteIterable items)
-
Uses of MutableByteBag in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableByteBag Modifier and Type Method Description MutableByteBag
MutableMap. collectByte(ByteFunction<? super V> byteFunction)
-
Uses of MutableByteBag in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableByteBag Modifier and Type Method Description MutableByteBag
MutablePrimitiveObjectMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
MutableByteValuesMap. reject(BytePredicate predicate)
MutableByteBag
MutableByteValuesMap. select(BytePredicate predicate)
-
Uses of MutableByteBag in org.eclipse.collections.impl.bag.immutable.primitive
Fields in org.eclipse.collections.impl.bag.immutable.primitive declared as MutableByteBag Modifier and Type Field Description private MutableByteBag
ImmutableByteHashBag. delegate
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return MutableByteBag Modifier and Type Method Description MutableByteBag
ImmutableByteEmptyBag. toBag()
MutableByteBag
ImmutableByteHashBag. toBag()
MutableByteBag
ImmutableByteSingletonBag. toBag()
-
Uses of MutableByteBag in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable that return MutableByteBag Modifier and Type Method Description MutableByteBag
MultiReaderHashBag. collectByte(ByteFunction<? super T> byteFunction)
MutableByteBag
MultiReaderHashBag.UntouchableMutableBag. collectByte(ByteFunction<? super T> byteFunction)
MutableByteBag
SynchronizedBag. collectByte(ByteFunction<? super T> byteFunction)
MutableByteBag
UnmodifiableBag. collectByte(ByteFunction<? super T> byteFunction)
-
Uses of MutableByteBag in org.eclipse.collections.impl.bag.mutable.primitive
Classes in org.eclipse.collections.impl.bag.mutable.primitive that implement MutableByteBag Modifier and Type Class Description class
ByteHashBag
ByteHashBag is similar toHashBag
, and is memory-optimized for byte primitives.class
SynchronizedByteBag
A synchronized view of aMutableByteBag
.class
UnmodifiableByteBag
This file was automatically generated from template file unmodifiablePrimitiveBag.stg.Methods in org.eclipse.collections.impl.bag.mutable.primitive that return MutableByteBag Modifier and Type Method Description MutableByteBag
ByteHashBag. asSynchronized()
MutableByteBag
SynchronizedByteBag. asSynchronized()
MutableByteBag
UnmodifiableByteBag. asSynchronized()
MutableByteBag
ByteHashBag. asUnmodifiable()
MutableByteBag
SynchronizedByteBag. asUnmodifiable()
MutableByteBag
UnmodifiableByteBag. asUnmodifiable()
MutableByteBag
MutableByteBagFactoryImpl. empty()
private MutableByteBag
SynchronizedByteBag. getMutableByteBag()
private MutableByteBag
UnmodifiableByteBag. getMutableByteBag()
MutableByteBag
SynchronizedByteBag. newEmpty()
MutableByteBag
UnmodifiableByteBag. newEmpty()
MutableByteBag
MutableByteBagFactoryImpl. of()
MutableByteBag
MutableByteBagFactoryImpl. of(byte... items)
MutableByteBag
MutableByteBagFactoryImpl. ofAll(java.lang.Iterable<java.lang.Byte> iterable)
MutableByteBag
MutableByteBagFactoryImpl. ofAll(ByteIterable items)
MutableByteBag
SynchronizedByteBag. reject(BytePredicate predicate)
MutableByteBag
UnmodifiableByteBag. reject(BytePredicate predicate)
MutableByteBag
SynchronizedByteBag. select(BytePredicate predicate)
MutableByteBag
UnmodifiableByteBag. select(BytePredicate predicate)
MutableByteBag
SynchronizedByteBag. selectByOccurrences(IntPredicate predicate)
MutableByteBag
UnmodifiableByteBag. selectByOccurrences(IntPredicate predicate)
MutableByteBag
MutableByteBagFactoryImpl. with()
MutableByteBag
MutableByteBagFactoryImpl. with(byte... items)
MutableByteBag
MutableByteBagFactoryImpl. withAll(java.lang.Iterable<java.lang.Byte> iterable)
MutableByteBag
MutableByteBagFactoryImpl. withAll(ByteIterable items)
Constructors in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type MutableByteBag Constructor Description SynchronizedByteBag(MutableByteBag bag)
SynchronizedByteBag(MutableByteBag bag, java.lang.Object newLock)
UnmodifiableByteBag(MutableByteBag bag)
-
Uses of MutableByteBag in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable that return MutableByteBag Modifier and Type Method Description MutableByteBag
AbstractMutableBiMap. collectByte(ByteFunction<? super V> byteFunction)
-
Uses of MutableByteBag in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableByteBag Modifier and Type Method Description MutableByteBag
AbstractSynchronizedByteCollection. toBag()
MutableByteBag
AbstractUnmodifiableByteCollection. toBag()
-
Uses of MutableByteBag in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableByteBag Modifier and Type Method Description MutableByteBag
AbstractLazyByteIterable. toBag()
MutableByteBag
CollectByteIterable. toBag()
MutableByteBag
LazyByteIterableAdapter. toBag()
MutableByteBag
ReverseByteIterable. toBag()
MutableByteBag
SelectByteIterable. toBag()
-
Uses of MutableByteBag in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableByteBag Modifier and Type Method Description MutableByteBag
ImmutableByteArrayList. toBag()
MutableByteBag
ImmutableByteEmptyList. toBag()
MutableByteBag
ImmutableByteSingletonList. toBag()
-
Uses of MutableByteBag in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableByteBag Modifier and Type Method Description MutableByteBag
ImmutableByteByteEmptyMap. toBag()
MutableByteBag
ImmutableByteByteHashMap. toBag()
MutableByteBag
ImmutableByteByteSingletonMap. toBag()
MutableByteBag
ImmutableCharByteEmptyMap. toBag()
MutableByteBag
ImmutableCharByteHashMap. toBag()
MutableByteBag
ImmutableCharByteSingletonMap. toBag()
MutableByteBag
ImmutableDoubleByteEmptyMap. toBag()
MutableByteBag
ImmutableDoubleByteHashMap. toBag()
MutableByteBag
ImmutableDoubleByteSingletonMap. toBag()
MutableByteBag
ImmutableFloatByteEmptyMap. toBag()
MutableByteBag
ImmutableFloatByteHashMap. toBag()
MutableByteBag
ImmutableFloatByteSingletonMap. toBag()
MutableByteBag
ImmutableIntByteEmptyMap. toBag()
MutableByteBag
ImmutableIntByteHashMap. toBag()
MutableByteBag
ImmutableIntByteSingletonMap. toBag()
MutableByteBag
ImmutableLongByteEmptyMap. toBag()
MutableByteBag
ImmutableLongByteHashMap. toBag()
MutableByteBag
ImmutableLongByteSingletonMap. toBag()
MutableByteBag
ImmutableObjectByteEmptyMap. toBag()
MutableByteBag
ImmutableObjectByteHashMap. toBag()
MutableByteBag
ImmutableObjectByteSingletonMap. toBag()
MutableByteBag
ImmutableShortByteEmptyMap. toBag()
MutableByteBag
ImmutableShortByteHashMap. toBag()
MutableByteBag
ImmutableShortByteSingletonMap. toBag()
-
Uses of MutableByteBag in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable that return MutableByteBag Modifier and Type Method Description MutableByteBag
AbstractMutableMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
SynchronizedMutableMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
UnmodifiableMutableMap. collectByte(ByteFunction<? super V> byteFunction)
-
Uses of MutableByteBag in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableByteBag Modifier and Type Method Description MutableByteBag
ByteObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
CharObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
DoubleObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
FloatObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
IntObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
LongObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
ShortObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
SynchronizedByteObjectMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
SynchronizedCharObjectMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
SynchronizedDoubleObjectMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
SynchronizedFloatObjectMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
SynchronizedIntObjectMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
SynchronizedLongObjectMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
SynchronizedShortObjectMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
UnmodifiableByteObjectMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
UnmodifiableCharObjectMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
UnmodifiableDoubleObjectMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
UnmodifiableFloatObjectMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
UnmodifiableIntObjectMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
UnmodifiableLongObjectMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
UnmodifiableShortObjectMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
AbstractMutableByteValuesMap. reject(BytePredicate predicate)
MutableByteBag
SynchronizedByteByteMap. reject(BytePredicate predicate)
MutableByteBag
SynchronizedCharByteMap. reject(BytePredicate predicate)
MutableByteBag
SynchronizedDoubleByteMap. reject(BytePredicate predicate)
MutableByteBag
SynchronizedFloatByteMap. reject(BytePredicate predicate)
MutableByteBag
SynchronizedIntByteMap. reject(BytePredicate predicate)
MutableByteBag
SynchronizedLongByteMap. reject(BytePredicate predicate)
MutableByteBag
SynchronizedShortByteMap. reject(BytePredicate predicate)
MutableByteBag
UnmodifiableByteByteMap. reject(BytePredicate predicate)
MutableByteBag
UnmodifiableCharByteMap. reject(BytePredicate predicate)
MutableByteBag
UnmodifiableDoubleByteMap. reject(BytePredicate predicate)
MutableByteBag
UnmodifiableFloatByteMap. reject(BytePredicate predicate)
MutableByteBag
UnmodifiableIntByteMap. reject(BytePredicate predicate)
MutableByteBag
UnmodifiableLongByteMap. reject(BytePredicate predicate)
MutableByteBag
UnmodifiableShortByteMap. reject(BytePredicate predicate)
MutableByteBag
AbstractMutableByteValuesMap. select(BytePredicate predicate)
MutableByteBag
SynchronizedByteByteMap. select(BytePredicate predicate)
MutableByteBag
SynchronizedCharByteMap. select(BytePredicate predicate)
MutableByteBag
SynchronizedDoubleByteMap. select(BytePredicate predicate)
MutableByteBag
SynchronizedFloatByteMap. select(BytePredicate predicate)
MutableByteBag
SynchronizedIntByteMap. select(BytePredicate predicate)
MutableByteBag
SynchronizedLongByteMap. select(BytePredicate predicate)
MutableByteBag
SynchronizedShortByteMap. select(BytePredicate predicate)
MutableByteBag
UnmodifiableByteByteMap. select(BytePredicate predicate)
MutableByteBag
UnmodifiableCharByteMap. select(BytePredicate predicate)
MutableByteBag
UnmodifiableDoubleByteMap. select(BytePredicate predicate)
MutableByteBag
UnmodifiableFloatByteMap. select(BytePredicate predicate)
MutableByteBag
UnmodifiableIntByteMap. select(BytePredicate predicate)
MutableByteBag
UnmodifiableLongByteMap. select(BytePredicate predicate)
MutableByteBag
UnmodifiableShortByteMap. select(BytePredicate predicate)
MutableByteBag
AbstractMutableByteKeySet. toBag()
MutableByteBag
AbstractMutableByteValuesMap.AbstractByteValuesCollection. toBag()
MutableByteBag
ByteBooleanHashMap.KeysView. toBag()
MutableByteBag
ObjectByteHashMap. toBag()
MutableByteBag
ObjectByteHashMap.ValuesCollection. toBag()
MutableByteBag
ObjectByteHashMapWithHashingStrategy. toBag()
MutableByteBag
ObjectByteHashMapWithHashingStrategy.ValuesCollection. toBag()
MutableByteBag
SynchronizedByteByteMap. toBag()
MutableByteBag
SynchronizedCharByteMap. toBag()
MutableByteBag
SynchronizedDoubleByteMap. toBag()
MutableByteBag
SynchronizedFloatByteMap. toBag()
MutableByteBag
SynchronizedIntByteMap. toBag()
MutableByteBag
SynchronizedLongByteMap. toBag()
MutableByteBag
SynchronizedObjectByteMap. toBag()
MutableByteBag
SynchronizedShortByteMap. toBag()
MutableByteBag
UnmodifiableByteByteMap. toBag()
MutableByteBag
UnmodifiableCharByteMap. toBag()
MutableByteBag
UnmodifiableDoubleByteMap. toBag()
MutableByteBag
UnmodifiableFloatByteMap. toBag()
MutableByteBag
UnmodifiableIntByteMap. toBag()
MutableByteBag
UnmodifiableLongByteMap. toBag()
MutableByteBag
UnmodifiableObjectByteMap. toBag()
MutableByteBag
UnmodifiableShortByteMap. toBag()
-
Uses of MutableByteBag in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableByteBag Modifier and Type Method Description MutableByteBag
AbstractByteIterable. toBag()
MutableByteBag
SynchronizedByteIterable. toBag()
-
Uses of MutableByteBag in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableByteBag Modifier and Type Method Description MutableByteBag
ImmutableByteEmptySet. toBag()
MutableByteBag
ImmutableByteSingletonSet. toBag()
-
Uses of MutableByteBag in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive that return MutableByteBag Modifier and Type Method Description MutableByteBag
ByteHashSet.ImmutableByteHashSet. toBag()
MutableByteBag
ByteHashSet. toBag()
-
Uses of MutableByteBag in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return MutableByteBag Modifier and Type Method Description MutableByteBag
ImmutableByteEmptyStack. toBag()
MutableByteBag
ImmutableByteSingletonStack. toBag()
-
Uses of MutableByteBag in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableByteBag Modifier and Type Method Description MutableByteBag
SynchronizedByteStack. toBag()
MutableByteBag
UnmodifiableByteStack. toBag()
-
Uses of MutableByteBag in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableByteBag Modifier and Type Method Description MutableByteBag
AbstractByteStack. toBag()
-