| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| org.eclipse.collections.api.bag.primitive |
This package contains API for Primitive Bags with Mutable and Immutable variants.
|
| org.eclipse.collections.api.factory.set.primitive | |
| 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.api.set |
This package contains interfaces for set API which enhance the performance and functionality of
Set. |
| org.eclipse.collections.api.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
| Modifier and Type | Method and Description |
|---|---|
MutableByteSet |
ByteIterable.toSet()
Converts the ByteIterable to a new MutableByteSet.
|
| Modifier and Type | Method and Description |
|---|---|
MutableByteSet |
MutableByteBag.selectUnique()
Returns all elements of the bag that have exactly one occurrence.
|
| Modifier and Type | Method and Description |
|---|---|
MutableByteSet |
MutableByteSetFactory.empty() |
MutableByteSet |
MutableByteSetFactory.of()
Same as
MutableByteSetFactory.empty(). |
MutableByteSet |
MutableByteSetFactory.of(byte... items)
Same as
MutableByteSetFactory.with(byte[]). |
MutableByteSet |
MutableByteSetFactory.ofAll(ByteIterable items)
|
MutableByteSet |
MutableByteSetFactory.ofAll(Iterable<Byte> iterable)
|
MutableByteSet |
MutableByteSetFactory.with()
Same as
MutableByteSetFactory.empty(). |
MutableByteSet |
MutableByteSetFactory.with(byte... items) |
MutableByteSet |
MutableByteSetFactory.withAll(ByteIterable items) |
MutableByteSet |
MutableByteSetFactory.withAll(Iterable<Byte> iterable) |
| Modifier and Type | Method and Description |
|---|---|
MutableByteSet |
ByteBooleanMap.keySet()
Returns a set containing all the keys in this map.
|
MutableByteSet |
ByteCharMap.keySet()
Returns a set containing all the keys in this map.
|
MutableByteSet |
ByteByteMap.keySet()
Returns a set containing all the keys in this map.
|
MutableByteSet |
ByteShortMap.keySet()
Returns a set containing all the keys in this map.
|
MutableByteSet |
ByteLongMap.keySet()
Returns a set containing all the keys in this map.
|
MutableByteSet |
ByteDoubleMap.keySet()
Returns a set containing all the keys in this map.
|
MutableByteSet |
ByteFloatMap.keySet()
Returns a set containing all the keys in this map.
|
MutableByteSet |
ByteIntMap.keySet()
Returns a set containing all the keys in this map.
|
MutableByteSet |
ByteObjectMap.keySet()
Returns a set containing all the keys in this map.
|
| Modifier and Type | Method and Description |
|---|---|
MutableByteSet |
MutableSet.collectByte(ByteFunction<? super T> byteFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableByteSet |
MutableByteSet.asSynchronized() |
MutableByteSet |
MutableByteSet.asUnmodifiable() |
default MutableByteSet |
MutableByteSet.intersect(ByteSet set)
Returns the set of all objects that are members of both
this and set. |
default MutableByteSet |
MutableByteSet.newEmpty()
Creates a new empty mutable version of the same Set type.
|
MutableByteSet |
MutableByteSet.reject(BytePredicate predicate) |
MutableByteSet |
MutableByteSet.select(BytePredicate predicate) |
default MutableByteSet |
MutableByteSet.tap(ByteProcedure procedure) |
default MutableByteSet |
MutableByteSet.union(ByteSet set) |
MutableByteSet |
MutableByteSet.with(byte element) |
MutableByteSet |
MutableByteSet.withAll(ByteIterable elements) |
MutableByteSet |
MutableByteSet.without(byte element) |
MutableByteSet |
MutableByteSet.withoutAll(ByteIterable elements) |
Copyright © 2004–2020. All rights reserved.