| 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.collection.primitive |
This package contains mutable and immutable primitive collection API.
|
| org.eclipse.collections.api.list.primitive |
This package contains mutable and immutable primitive list API.
|
| 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.ordered.primitive | |
| org.eclipse.collections.api.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
| org.eclipse.collections.api.stack.primitive |
This package contains mutable and immutable primitive stack API.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
ByteIterable.allSatisfy(BytePredicate predicate)
Returns true if all of the elements in the ByteIterable return true for the
specified predicate, otherwise returns false.
|
boolean |
ByteIterable.anySatisfy(BytePredicate predicate)
Returns true if any of the elements in the ByteIterable return true for the
specified predicate, otherwise returns false.
|
int |
ByteIterable.count(BytePredicate predicate)
Returns a count of the number of elements in the ByteIterable that return true for the
specified predicate.
|
byte |
ByteIterable.detectIfNone(BytePredicate predicate,
byte ifNone) |
boolean |
ByteIterable.noneSatisfy(BytePredicate predicate)
Returns true if none of the elements in the ByteIterable return true for the
specified predicate, otherwise returns false.
|
ByteIterable |
ByteIterable.reject(BytePredicate predicate)
Returns a new ByteIterable with all of the elements in the ByteIterable that
return false for the specified predicate.
|
LazyByteIterable |
LazyByteIterable.reject(BytePredicate predicate) |
default <R extends MutableByteCollection> |
ByteIterable.reject(BytePredicate predicate,
R target)
Same as
ByteIterable.reject(BytePredicate) , only the results are added to the target MutableByteCollection. |
ByteIterable |
ByteIterable.select(BytePredicate predicate)
Returns a new ByteIterable with all of the elements in the ByteIterable that
return true for the specified predicate.
|
LazyByteIterable |
LazyByteIterable.select(BytePredicate predicate) |
default <R extends MutableByteCollection> |
ByteIterable.select(BytePredicate predicate,
R target)
Same as
ByteIterable.select(BytePredicate) , only the results are added to the target MutableByteCollection. |
| Modifier and Type | Method and Description |
|---|---|
ByteBag |
ByteBag.reject(BytePredicate predicate) |
MutableByteBag |
MutableByteBag.reject(BytePredicate predicate) |
ImmutableByteBag |
ImmutableByteBag.reject(BytePredicate predicate) |
ByteBag |
ByteBag.select(BytePredicate predicate) |
MutableByteBag |
MutableByteBag.select(BytePredicate predicate) |
ImmutableByteBag |
ImmutableByteBag.select(BytePredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
MutableByteCollection |
MutableByteCollection.reject(BytePredicate predicate) |
ImmutableByteCollection |
ImmutableByteCollection.reject(BytePredicate predicate) |
default boolean |
MutableByteCollection.removeIf(BytePredicate predicate) |
MutableByteCollection |
MutableByteCollection.select(BytePredicate predicate) |
ImmutableByteCollection |
ImmutableByteCollection.select(BytePredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
ByteList |
ByteList.reject(BytePredicate predicate) |
MutableByteList |
MutableByteList.reject(BytePredicate predicate) |
ImmutableByteList |
ImmutableByteList.reject(BytePredicate predicate) |
ByteList |
ByteList.select(BytePredicate predicate) |
MutableByteList |
MutableByteList.select(BytePredicate predicate) |
ImmutableByteList |
ImmutableByteList.select(BytePredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
ByteBag |
ByteValuesMap.reject(BytePredicate predicate) |
MutableByteBag |
MutableByteValuesMap.reject(BytePredicate predicate) |
MutableByteCollection |
MutableObjectByteMap.reject(BytePredicate predicate) |
ImmutableByteBag |
ImmutableCharByteMap.reject(BytePredicate predicate) |
ImmutableByteBag |
ImmutableByteByteMap.reject(BytePredicate predicate) |
ImmutableByteBag |
ImmutableShortByteMap.reject(BytePredicate predicate) |
ImmutableByteBag |
ImmutableLongByteMap.reject(BytePredicate predicate) |
ImmutableByteBag |
ImmutableDoubleByteMap.reject(BytePredicate predicate) |
ImmutableByteBag |
ImmutableFloatByteMap.reject(BytePredicate predicate) |
ImmutableByteBag |
ImmutableIntByteMap.reject(BytePredicate predicate) |
ImmutableByteCollection |
ImmutableObjectByteMap.reject(BytePredicate predicate) |
ByteBag |
ByteValuesMap.select(BytePredicate predicate) |
MutableByteBag |
MutableByteValuesMap.select(BytePredicate predicate) |
MutableByteCollection |
MutableObjectByteMap.select(BytePredicate predicate) |
ImmutableByteBag |
ImmutableCharByteMap.select(BytePredicate predicate) |
ImmutableByteBag |
ImmutableByteByteMap.select(BytePredicate predicate) |
ImmutableByteBag |
ImmutableShortByteMap.select(BytePredicate predicate) |
ImmutableByteBag |
ImmutableLongByteMap.select(BytePredicate predicate) |
ImmutableByteBag |
ImmutableDoubleByteMap.select(BytePredicate predicate) |
ImmutableByteBag |
ImmutableFloatByteMap.select(BytePredicate predicate) |
ImmutableByteBag |
ImmutableIntByteMap.select(BytePredicate predicate) |
ImmutableByteCollection |
ImmutableObjectByteMap.select(BytePredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
ReversibleByteIterable |
ReversibleByteIterable.reject(BytePredicate predicate) |
OrderedByteIterable |
OrderedByteIterable.reject(BytePredicate predicate) |
ReversibleByteIterable |
ReversibleByteIterable.select(BytePredicate predicate) |
OrderedByteIterable |
OrderedByteIterable.select(BytePredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
ByteSet |
ByteSet.reject(BytePredicate predicate) |
MutableByteSet |
MutableByteSet.reject(BytePredicate predicate) |
ImmutableByteSet |
ImmutableByteSet.reject(BytePredicate predicate) |
ByteSet |
ByteSet.select(BytePredicate predicate) |
MutableByteSet |
MutableByteSet.select(BytePredicate predicate) |
ImmutableByteSet |
ImmutableByteSet.select(BytePredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
ByteStack |
ByteStack.reject(BytePredicate predicate) |
MutableByteStack |
MutableByteStack.reject(BytePredicate predicate) |
ImmutableByteStack |
ImmutableByteStack.reject(BytePredicate predicate) |
ByteStack |
ByteStack.select(BytePredicate predicate) |
MutableByteStack |
MutableByteStack.select(BytePredicate predicate) |
ImmutableByteStack |
ImmutableByteStack.select(BytePredicate predicate) |
Copyright © 2004–2021. All rights reserved.