| 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 |
ShortIterable.allSatisfy(ShortPredicate predicate)
Returns true if all of the elements in the ShortIterable return true for the
specified predicate, otherwise returns false.
|
boolean |
ShortIterable.anySatisfy(ShortPredicate predicate)
Returns true if any of the elements in the ShortIterable return true for the
specified predicate, otherwise returns false.
|
int |
ShortIterable.count(ShortPredicate predicate)
Returns a count of the number of elements in the ShortIterable that return true for the
specified predicate.
|
short |
ShortIterable.detectIfNone(ShortPredicate predicate,
short ifNone) |
default boolean |
ShortIterable.noneSatisfy(ShortPredicate predicate)
Returns true if none of the elements in the ShortIterable return true for the
specified predicate, otherwise returns false.
|
ShortIterable |
ShortIterable.reject(ShortPredicate predicate)
Returns a new ShortIterable with all of the elements in the ShortIterable that
return false for the specified predicate.
|
LazyShortIterable |
LazyShortIterable.reject(ShortPredicate predicate) |
default <R extends MutableShortCollection> |
ShortIterable.reject(ShortPredicate predicate,
R target)
Same as
ShortIterable.reject(ShortPredicate) , only the results are added to the target MutableShortCollection. |
ShortIterable |
ShortIterable.select(ShortPredicate predicate)
Returns a new ShortIterable with all of the elements in the ShortIterable that
return true for the specified predicate.
|
LazyShortIterable |
LazyShortIterable.select(ShortPredicate predicate) |
default <R extends MutableShortCollection> |
ShortIterable.select(ShortPredicate predicate,
R target)
Same as
ShortIterable.select(ShortPredicate) , only the results are added to the target MutableShortCollection. |
| Modifier and Type | Method and Description |
|---|---|
ShortBag |
ShortBag.reject(ShortPredicate predicate) |
MutableShortBag |
MutableShortBag.reject(ShortPredicate predicate) |
ImmutableShortBag |
ImmutableShortBag.reject(ShortPredicate predicate) |
ShortBag |
ShortBag.select(ShortPredicate predicate) |
MutableShortBag |
MutableShortBag.select(ShortPredicate predicate) |
ImmutableShortBag |
ImmutableShortBag.select(ShortPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
MutableShortCollection |
MutableShortCollection.reject(ShortPredicate predicate) |
ImmutableShortCollection |
ImmutableShortCollection.reject(ShortPredicate predicate) |
default boolean |
MutableShortCollection.removeIf(ShortPredicate predicate) |
MutableShortCollection |
MutableShortCollection.select(ShortPredicate predicate) |
ImmutableShortCollection |
ImmutableShortCollection.select(ShortPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
ShortList |
ShortList.reject(ShortPredicate predicate) |
MutableShortList |
MutableShortList.reject(ShortPredicate predicate) |
ImmutableShortList |
ImmutableShortList.reject(ShortPredicate predicate) |
ShortList |
ShortList.select(ShortPredicate predicate) |
MutableShortList |
MutableShortList.select(ShortPredicate predicate) |
ImmutableShortList |
ImmutableShortList.select(ShortPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
ReversibleShortIterable |
ReversibleShortIterable.reject(ShortPredicate predicate) |
OrderedShortIterable |
OrderedShortIterable.reject(ShortPredicate predicate) |
ReversibleShortIterable |
ReversibleShortIterable.select(ShortPredicate predicate) |
OrderedShortIterable |
OrderedShortIterable.select(ShortPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
ShortSet |
ShortSet.reject(ShortPredicate predicate) |
MutableShortSet |
MutableShortSet.reject(ShortPredicate predicate) |
ImmutableShortSet |
ImmutableShortSet.reject(ShortPredicate predicate) |
ShortSet |
ShortSet.select(ShortPredicate predicate) |
MutableShortSet |
MutableShortSet.select(ShortPredicate predicate) |
ImmutableShortSet |
ImmutableShortSet.select(ShortPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
ShortStack |
ShortStack.reject(ShortPredicate predicate) |
MutableShortStack |
MutableShortStack.reject(ShortPredicate predicate) |
ImmutableShortStack |
ImmutableShortStack.reject(ShortPredicate predicate) |
ShortStack |
ShortStack.select(ShortPredicate predicate) |
MutableShortStack |
MutableShortStack.select(ShortPredicate predicate) |
ImmutableShortStack |
ImmutableShortStack.select(ShortPredicate predicate) |
Copyright © 2004–2022. All rights reserved.