| 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 of
Map |
| 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.
|
| Modifier and Type | Method and Description |
|---|---|
MutableByteBag |
ByteIterable.toBag()
Converts the ByteIterable to a new MutableByteBag.
|
| Modifier and Type | Method and Description |
|---|---|
MutableByteBag |
MutableBag.collectByte(ByteFunction<? super T> byteFunction) |
| Modifier and Type | Method and 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) |
| Modifier and Type | Method and Description |
|---|---|
MutableByteBag |
MutableByteBagFactory.empty() |
MutableByteBag |
MutableByteBagFactory.of()
Same as
MutableByteBagFactory.empty(). |
MutableByteBag |
MutableByteBagFactory.of(byte... items)
Same as
MutableByteBagFactory.with(byte[]). |
MutableByteBag |
MutableByteBagFactory.ofAll(ByteIterable items)
|
MutableByteBag |
MutableByteBagFactory.ofAll(Iterable<Byte> iterable)
|
MutableByteBag |
MutableByteBagFactory.with()
Same as
MutableByteBagFactory.empty(). |
MutableByteBag |
MutableByteBagFactory.with(byte... items) |
MutableByteBag |
MutableByteBagFactory.withAll(ByteIterable items) |
MutableByteBag |
MutableByteBagFactory.withAll(Iterable<Byte> iterable) |
| Modifier and Type | Method and Description |
|---|---|
MutableByteBag |
MutableMap.collectByte(ByteFunction<? super V> byteFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableByteBag |
MutablePrimitiveObjectMap.collectByte(ByteFunction<? super V> byteFunction) |
MutableByteBag |
MutableByteValuesMap.reject(BytePredicate predicate) |
MutableByteBag |
MutableByteValuesMap.select(BytePredicate predicate) |
Copyright © 2004–2020. All rights reserved.