| 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.sorted |
This package contains interfaces for SortedBag API.
|
| org.eclipse.collections.api.bimap |
This package contains interfaces for BiMap API.
|
| org.eclipse.collections.api.collection | |
| org.eclipse.collections.api.list |
This package contains interfaces for list API which enhance the performance and functionality of
List. |
| 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.
|
| org.eclipse.collections.api.map.sorted |
This package contains mutable and immutable sorted map interfaces.
|
| org.eclipse.collections.api.multimap |
This package contains interfaces for
Multimap. |
| org.eclipse.collections.api.multimap.bag |
This package contains interfaces for
BagMultimap. |
| org.eclipse.collections.api.multimap.list |
This package contains interfaces for
ListMultimap. |
| org.eclipse.collections.api.multimap.ordered | |
| org.eclipse.collections.api.multimap.set |
This package contains interfaces for
SetMultimap. |
| org.eclipse.collections.api.multimap.sortedbag |
This package contains interfaces for
SortedBagMultimap. |
| org.eclipse.collections.api.multimap.sortedset |
This package contains interfaces for
SortedSetMultimap. |
| org.eclipse.collections.api.ordered | |
| 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.sorted |
This package contains interfaces for sorted set API.
|
| org.eclipse.collections.api.stack |
This package contains interfaces for stack API.
|
| Modifier and Type | Method and Description |
|---|---|
<P> boolean |
RichIterable.allSatisfyWith(Predicate2<? super T,? super P> predicate,
P parameter)
Returns true if the predicate evaluates to true for every element of the collection, or returns false.
|
<P> boolean |
ParallelIterable.allSatisfyWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> boolean |
RichIterable.anySatisfyWith(Predicate2<? super T,? super P> predicate,
P parameter)
Returns true if the predicate evaluates to true for any element of the collection, or return false.
|
<P> boolean |
ParallelIterable.anySatisfyWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> int |
RichIterable.countWith(Predicate2<? super T,? super P> predicate,
P parameter)
Returns the total number of elements that evaluate to true for the specified predicate.
|
<P> int |
ParallelIterable.countWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> T |
RichIterable.detectWith(Predicate2<? super T,? super P> predicate,
P parameter)
Returns the first element that evaluates to true for the specified predicate2 and parameter, or null if none
evaluate to true.
|
<P> T |
ParallelIterable.detectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> T |
RichIterable.detectWithIfNone(Predicate2<? super T,? super P> predicate,
P parameter,
Function0<? extends T> function)
Returns the first element of the iterable that evaluates to true for the specified predicate2 and parameter, or
returns the value of evaluating the specified function.
|
<P> T |
ParallelIterable.detectWithIfNone(Predicate2<? super T,? super P> predicate,
P parameter,
Function0<? extends T> function) |
<P> Optional<T> |
RichIterable.detectWithOptional(Predicate2<? super T,? super P> predicate,
P parameter)
Returns the first element that evaluates to true for the specified predicate2 and parameter as an Optional.
|
<P> boolean |
RichIterable.noneSatisfyWith(Predicate2<? super T,? super P> predicate,
P parameter)
Returns true if the predicate evaluates to false for every element of the collection, or return false.
|
<P> boolean |
ParallelIterable.noneSatisfyWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> PartitionIterable<T> |
RichIterable.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter)
Filters a collection into a PartitionIterable based on the evaluation of the predicate.
|
<P> RichIterable<T> |
RichIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter)
Similar to
RichIterable.reject(Predicate), except with an evaluation parameter for the second generic argument in Predicate2. |
<P> ParallelIterable<T> |
ParallelIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> LazyIterable<T> |
LazyIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P,R extends Collection<T>> |
RichIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter,
R targetCollection)
Similar to
RichIterable.reject(Predicate, Collection), except with an evaluation parameter for the second generic argument in Predicate2. |
<P> RichIterable<T> |
RichIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter)
Similar to
RichIterable.select(Predicate), except with an evaluation parameter for the second generic argument in Predicate2. |
<P> ParallelIterable<T> |
ParallelIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> LazyIterable<T> |
LazyIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P,R extends Collection<T>> |
RichIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter,
R targetCollection)
Similar to
RichIterable.select(Predicate, Collection), except with an evaluation parameter for the second generic argument in Predicate2. |
| Modifier and Type | Method and Description |
|---|---|
<P> PartitionMutableBagIterable<T> |
MutableBagIterable.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> PartitionMutableBag<T> |
MutableBag.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> PartitionImmutableBagIterable<T> |
ImmutableBagIterable.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> PartitionImmutableBag<T> |
ImmutableBag.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> PartitionBag<T> |
Bag.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> UnsortedBag<T> |
UnsortedBag.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ParallelUnsortedBag<T> |
ParallelUnsortedBag.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ParallelBag<T> |
ParallelBag.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> MutableBagIterable<T> |
MutableBagIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> MutableBag<T> |
MutableBag.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ImmutableBagIterable<T> |
ImmutableBagIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ImmutableBag<T> |
ImmutableBag.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> Bag<T> |
Bag.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> UnsortedBag<T> |
UnsortedBag.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ParallelUnsortedBag<T> |
ParallelUnsortedBag.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ParallelBag<T> |
ParallelBag.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> MutableBagIterable<T> |
MutableBagIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> MutableBag<T> |
MutableBag.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ImmutableBagIterable<T> |
ImmutableBagIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ImmutableBag<T> |
ImmutableBag.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> Bag<T> |
Bag.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
| Modifier and Type | Method and Description |
|---|---|
<P> PartitionSortedBag<T> |
SortedBag.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> PartitionMutableSortedBag<T> |
MutableSortedBag.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> PartitionImmutableSortedBag<T> |
ImmutableSortedBag.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> SortedBag<T> |
SortedBag.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ParallelSortedBag<T> |
ParallelSortedBag.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> MutableSortedBag<T> |
MutableSortedBag.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ImmutableSortedBag<T> |
ImmutableSortedBag.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> SortedBag<T> |
SortedBag.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ParallelSortedBag<T> |
ParallelSortedBag.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> MutableSortedBag<T> |
MutableSortedBag.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ImmutableSortedBag<T> |
ImmutableSortedBag.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
| Modifier and Type | Method and Description |
|---|---|
<P> PartitionMutableSet<V> |
MutableBiMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionImmutableSet<V> |
ImmutableBiMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionUnsortedSet<V> |
BiMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
MutableBiMap<K,V> |
MutableBiMap.reject(Predicate2<? super K,? super V> predicate) |
ImmutableBiMap<K,V> |
ImmutableBiMap.reject(Predicate2<? super K,? super V> predicate) |
BiMap<K,V> |
BiMap.reject(Predicate2<? super K,? super V> predicate) |
<P> MutableSet<V> |
MutableBiMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> ImmutableSet<V> |
ImmutableBiMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> SetIterable<V> |
BiMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
MutableBiMap<K,V> |
MutableBiMap.select(Predicate2<? super K,? super V> predicate) |
ImmutableBiMap<K,V> |
ImmutableBiMap.select(Predicate2<? super K,? super V> predicate) |
BiMap<K,V> |
BiMap.select(Predicate2<? super K,? super V> predicate) |
<P> MutableSet<V> |
MutableBiMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> ImmutableSet<V> |
ImmutableBiMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> SetIterable<V> |
BiMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
| Modifier and Type | Method and Description |
|---|---|
<P> PartitionMutableCollection<T> |
MutableCollection.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter)
Filters a collection into a PartitionIterable based on the evaluation of the predicate.
|
<P> PartitionImmutableCollection<T> |
ImmutableCollection.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> MutableCollection<T> |
MutableCollection.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter)
Returns a MutableCollection with all elements that evaluate to false for the specified predicate2 and parameter.
|
<P> ImmutableCollection<T> |
ImmutableCollection.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> boolean |
MutableCollection.removeIfWith(Predicate2<? super T,? super P> predicate,
P parameter)
Removes all elements in the collection that evaluate to true for the specified predicate2 and parameter.
|
<P> boolean |
FixedSizeCollection.removeIfWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> Twin<MutableList<T>> |
MutableCollection.selectAndRejectWith(Predicate2<? super T,? super P> predicate,
P parameter)
Deprecated.
since 6.0 use
RichIterable.partitionWith(Predicate2, Object) instead. |
<P> MutableCollection<T> |
MutableCollection.selectWith(Predicate2<? super T,? super P> predicate,
P parameter)
Returns a MutableCollection with all elements that evaluate to true for the specified predicate2 and parameter.
|
<P> ImmutableCollection<T> |
ImmutableCollection.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
| Modifier and Type | Method and Description |
|---|---|
<P> PartitionMutableList<T> |
MutableList.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> PartitionList<T> |
ListIterable.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> PartitionImmutableList<T> |
ImmutableList.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ParallelListIterable<T> |
ParallelListIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
default <P> MutableList<T> |
MutableList.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ListIterable<T> |
ListIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ImmutableList<T> |
ImmutableList.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ParallelListIterable<T> |
ParallelListIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
default <P> MutableList<T> |
MutableList.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ListIterable<T> |
ListIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ImmutableList<T> |
ImmutableList.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
| Modifier and Type | Method and Description |
|---|---|
Pair<K,V> |
MapIterable.detect(Predicate2<? super K,? super V> predicate)
Return the first key and value of the map for which the predicate evaluates to true when they are given
as arguments.
|
Optional<Pair<K,V>> |
MapIterable.detectOptional(Predicate2<? super K,? super V> predicate)
Return the first key and value of the map as an Optional for which the predicate evaluates to true when
they are given as arguments.
|
<P> PartitionBag<V> |
UnsortedMapIterable.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionList<V> |
OrderedMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionMutableList<V> |
MutableOrderedMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionMutableBag<V> |
MutableMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionImmutableList<V> |
ImmutableOrderedMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionImmutableBag<V> |
ImmutableMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
UnsortedMapIterable<K,V> |
UnsortedMapIterable.reject(Predicate2<? super K,? super V> predicate) |
OrderedMap<K,V> |
OrderedMap.reject(Predicate2<? super K,? super V> predicate) |
MutableOrderedMap<K,V> |
MutableOrderedMap.reject(Predicate2<? super K,? super V> predicate) |
MutableMapIterable<K,V> |
MutableMapIterable.reject(Predicate2<? super K,? super V> predicate) |
MutableMap<K,V> |
MutableMap.reject(Predicate2<? super K,? super V> predicate) |
MapIterable<K,V> |
MapIterable.reject(Predicate2<? super K,? super V> predicate)
For each key and value of the map the predicate is evaluated, if the result of the evaluation is false,
that key and value are returned in a new map.
|
ImmutableOrderedMap<K,V> |
ImmutableOrderedMap.reject(Predicate2<? super K,? super V> predicate) |
ImmutableMapIterable<K,V> |
ImmutableMapIterable.reject(Predicate2<? super K,? super V> predicate) |
ImmutableMap<K,V> |
ImmutableMap.reject(Predicate2<? super K,? super V> predicate) |
<P> Bag<V> |
UnsortedMapIterable.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> ListIterable<V> |
OrderedMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableList<V> |
MutableOrderedMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
MutableMapIterable.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableBag<V> |
MutableMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> ImmutableList<V> |
ImmutableOrderedMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> ImmutableCollection<V> |
ImmutableMapIterable.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> ImmutableBag<V> |
ImmutableMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
default boolean |
MutableMapIterable.removeIf(Predicate2<? super K,? super V> predicate)
Remove an entry from the map if the
predicate evaluates to true. |
boolean |
FixedSizeMap.removeIf(Predicate2<? super K,? super V> predicate) |
UnsortedMapIterable<K,V> |
UnsortedMapIterable.select(Predicate2<? super K,? super V> predicate) |
OrderedMap<K,V> |
OrderedMap.select(Predicate2<? super K,? super V> predicate) |
MutableOrderedMap<K,V> |
MutableOrderedMap.select(Predicate2<? super K,? super V> predicate) |
MutableMapIterable<K,V> |
MutableMapIterable.select(Predicate2<? super K,? super V> predicate) |
MutableMap<K,V> |
MutableMap.select(Predicate2<? super K,? super V> predicate) |
MapIterable<K,V> |
MapIterable.select(Predicate2<? super K,? super V> predicate)
For each key and value of the map the predicate is evaluated, if the result of the evaluation is true,
that key and value are returned in a new map.
|
ImmutableOrderedMap<K,V> |
ImmutableOrderedMap.select(Predicate2<? super K,? super V> predicate) |
ImmutableMapIterable<K,V> |
ImmutableMapIterable.select(Predicate2<? super K,? super V> predicate) |
ImmutableMap<K,V> |
ImmutableMap.select(Predicate2<? super K,? super V> predicate) |
<P> Bag<V> |
UnsortedMapIterable.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> ListIterable<V> |
OrderedMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableList<V> |
MutableOrderedMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
MutableMapIterable.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableBag<V> |
MutableMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> ImmutableList<V> |
ImmutableOrderedMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> ImmutableCollection<V> |
ImmutableMapIterable.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> ImmutableBag<V> |
ImmutableMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
| Modifier and Type | Method and Description |
|---|---|
<P> PartitionBag<V> |
PrimitiveObjectMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionMutableBag<V> |
MutablePrimitiveObjectMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionImmutableBag<V> |
ImmutablePrimitiveObjectMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> Bag<V> |
PrimitiveObjectMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableBag<V> |
MutablePrimitiveObjectMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> ImmutableBag<V> |
ImmutablePrimitiveObjectMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> Bag<V> |
PrimitiveObjectMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableBag<V> |
MutablePrimitiveObjectMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> ImmutableBag<V> |
ImmutablePrimitiveObjectMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
| Modifier and Type | Method and Description |
|---|---|
<P> PartitionList<V> |
SortedMapIterable.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionMutableList<V> |
MutableSortedMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionImmutableList<V> |
ImmutableSortedMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
SortedMapIterable<K,V> |
SortedMapIterable.reject(Predicate2<? super K,? super V> predicate) |
MutableSortedMap<K,V> |
MutableSortedMap.reject(Predicate2<? super K,? super V> predicate) |
ImmutableSortedMap<K,V> |
ImmutableSortedMap.reject(Predicate2<? super K,? super V> predicate) |
<P> ListIterable<V> |
SortedMapIterable.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableList<V> |
MutableSortedMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> ImmutableList<V> |
ImmutableSortedMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
SortedMapIterable<K,V> |
SortedMapIterable.select(Predicate2<? super K,? super V> predicate) |
MutableSortedMap<K,V> |
MutableSortedMap.select(Predicate2<? super K,? super V> predicate) |
ImmutableSortedMap<K,V> |
ImmutableSortedMap.select(Predicate2<? super K,? super V> predicate) |
<P> ListIterable<V> |
SortedMapIterable.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableList<V> |
MutableSortedMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> ImmutableList<V> |
ImmutableSortedMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
| Modifier and Type | Method and Description |
|---|---|
MutableMultimap<K,V> |
MutableMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
Multimap<K,V> |
Multimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
Returns all elements of the source multimap that don't satisfy the predicate.
|
ImmutableMultimap<K,V> |
ImmutableMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
<R extends MutableMultimap<K,V>> |
Multimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate,
R target)
Same as the reject method but uses the specified target multimap for the results.
|
MutableMultimap<K,V> |
MutableMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
Multimap<K,V> |
Multimap.rejectKeysValues(Predicate2<? super K,? super V> predicate)
Returns all elements of the source multimap that don't satisfy the predicate.
|
ImmutableMultimap<K,V> |
ImmutableMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
<R extends MutableMultimap<K,V>> |
Multimap.rejectKeysValues(Predicate2<? super K,? super V> predicate,
R target)
Same as the reject method but uses the specified target multimap for the results.
|
MutableMultimap<K,V> |
MutableMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
Multimap<K,V> |
Multimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
Returns all elements of the source multimap that satisfies the predicate.
|
ImmutableMultimap<K,V> |
ImmutableMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
<R extends MutableMultimap<K,V>> |
Multimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate,
R target)
Same as the select method but uses the specified target multimap for the results.
|
MutableMultimap<K,V> |
MutableMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
Multimap<K,V> |
Multimap.selectKeysValues(Predicate2<? super K,? super V> predicate)
Returns all elements of the source multimap that satisfies the predicate.
|
ImmutableMultimap<K,V> |
ImmutableMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
<R extends MutableMultimap<K,V>> |
Multimap.selectKeysValues(Predicate2<? super K,? super V> predicate,
R target)
Same as the select method but uses the specified target multimap for the results.
|
| Modifier and Type | Method and Description |
|---|---|
UnsortedBagMultimap<K,V> |
UnsortedBagMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
MutableBagMultimap<K,V> |
MutableBagMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
MutableBagIterableMultimap<K,V> |
MutableBagIterableMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
ImmutableBagMultimap<K,V> |
ImmutableBagMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
ImmutableBagIterableMultimap<K,V> |
ImmutableBagIterableMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
BagMultimap<K,V> |
BagMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
UnsortedBagMultimap<K,V> |
UnsortedBagMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
MutableBagMultimap<K,V> |
MutableBagMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
MutableBagIterableMultimap<K,V> |
MutableBagIterableMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
ImmutableBagMultimap<K,V> |
ImmutableBagMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
ImmutableBagIterableMultimap<K,V> |
ImmutableBagIterableMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
BagMultimap<K,V> |
BagMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
UnsortedBagMultimap<K,V> |
UnsortedBagMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
MutableBagMultimap<K,V> |
MutableBagMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
MutableBagIterableMultimap<K,V> |
MutableBagIterableMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
ImmutableBagMultimap<K,V> |
ImmutableBagMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
ImmutableBagIterableMultimap<K,V> |
ImmutableBagIterableMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
BagMultimap<K,V> |
BagMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
UnsortedBagMultimap<K,V> |
UnsortedBagMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
MutableBagMultimap<K,V> |
MutableBagMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
MutableBagIterableMultimap<K,V> |
MutableBagIterableMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
ImmutableBagMultimap<K,V> |
ImmutableBagMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
ImmutableBagIterableMultimap<K,V> |
ImmutableBagIterableMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
BagMultimap<K,V> |
BagMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
| Modifier and Type | Method and Description |
|---|---|
MutableListMultimap<K,V> |
MutableListMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
ListMultimap<K,V> |
ListMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
ImmutableListMultimap<K,V> |
ImmutableListMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
MutableListMultimap<K,V> |
MutableListMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
ListMultimap<K,V> |
ListMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
ImmutableListMultimap<K,V> |
ImmutableListMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
MutableListMultimap<K,V> |
MutableListMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
ListMultimap<K,V> |
ListMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
ImmutableListMultimap<K,V> |
ImmutableListMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
MutableListMultimap<K,V> |
MutableListMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
ListMultimap<K,V> |
ListMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
ImmutableListMultimap<K,V> |
ImmutableListMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
| Modifier and Type | Method and Description |
|---|---|
SortedIterableMultimap<K,V> |
SortedIterableMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
ReversibleIterableMultimap<K,V> |
ReversibleIterableMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
OrderedIterableMultimap<K,V> |
OrderedIterableMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
SortedIterableMultimap<K,V> |
SortedIterableMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
ReversibleIterableMultimap<K,V> |
ReversibleIterableMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
OrderedIterableMultimap<K,V> |
OrderedIterableMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
SortedIterableMultimap<K,V> |
SortedIterableMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
ReversibleIterableMultimap<K,V> |
ReversibleIterableMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
OrderedIterableMultimap<K,V> |
OrderedIterableMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
SortedIterableMultimap<K,V> |
SortedIterableMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
ReversibleIterableMultimap<K,V> |
ReversibleIterableMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
OrderedIterableMultimap<K,V> |
OrderedIterableMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
| Modifier and Type | Method and Description |
|---|---|
UnsortedSetMultimap<K,V> |
UnsortedSetMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
SetMultimap<K,V> |
SetMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
MutableSetMultimap<K,V> |
MutableSetMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
MutableSetIterableMultimap<K,V> |
MutableSetIterableMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
ImmutableSetIterableMultimap<K,V> |
ImmutableSetIterableMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
UnsortedSetMultimap<K,V> |
UnsortedSetMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
SetMultimap<K,V> |
SetMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
MutableSetMultimap<K,V> |
MutableSetMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
MutableSetIterableMultimap<K,V> |
MutableSetIterableMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
ImmutableSetIterableMultimap<K,V> |
ImmutableSetIterableMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
UnsortedSetMultimap<K,V> |
UnsortedSetMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
SetMultimap<K,V> |
SetMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
MutableSetMultimap<K,V> |
MutableSetMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
MutableSetIterableMultimap<K,V> |
MutableSetIterableMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
ImmutableSetIterableMultimap<K,V> |
ImmutableSetIterableMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
UnsortedSetMultimap<K,V> |
UnsortedSetMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
SetMultimap<K,V> |
SetMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
MutableSetMultimap<K,V> |
MutableSetMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
MutableSetIterableMultimap<K,V> |
MutableSetIterableMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
ImmutableSetIterableMultimap<K,V> |
ImmutableSetIterableMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
| Modifier and Type | Method and Description |
|---|---|
SortedBagMultimap<K,V> |
SortedBagMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
MutableSortedBagMultimap<K,V> |
MutableSortedBagMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
ImmutableSortedBagMultimap<K,V> |
ImmutableSortedBagMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
SortedBagMultimap<K,V> |
SortedBagMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
MutableSortedBagMultimap<K,V> |
MutableSortedBagMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
ImmutableSortedBagMultimap<K,V> |
ImmutableSortedBagMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
SortedBagMultimap<K,V> |
SortedBagMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
MutableSortedBagMultimap<K,V> |
MutableSortedBagMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
ImmutableSortedBagMultimap<K,V> |
ImmutableSortedBagMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
SortedBagMultimap<K,V> |
SortedBagMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
MutableSortedBagMultimap<K,V> |
MutableSortedBagMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
ImmutableSortedBagMultimap<K,V> |
ImmutableSortedBagMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
| Modifier and Type | Method and Description |
|---|---|
SortedSetMultimap<K,V> |
SortedSetMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
MutableSortedSetMultimap<K,V> |
MutableSortedSetMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
ImmutableSortedSetMultimap<K,V> |
ImmutableSortedSetMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
SortedSetMultimap<K,V> |
SortedSetMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
MutableSortedSetMultimap<K,V> |
MutableSortedSetMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
ImmutableSortedSetMultimap<K,V> |
ImmutableSortedSetMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
SortedSetMultimap<K,V> |
SortedSetMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
MutableSortedSetMultimap<K,V> |
MutableSortedSetMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
ImmutableSortedSetMultimap<K,V> |
ImmutableSortedSetMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
SortedSetMultimap<K,V> |
SortedSetMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
MutableSortedSetMultimap<K,V> |
MutableSortedSetMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
ImmutableSortedSetMultimap<K,V> |
ImmutableSortedSetMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
| Modifier and Type | Method and Description |
|---|---|
<S> boolean |
OrderedIterable.corresponds(OrderedIterable<S> other,
Predicate2<? super T,? super S> predicate)
Returns true if both OrderedIterables have the same length
and
predicate returns true for all corresponding elements e1 of
this OrderedIterable and e2 of other. |
<P> PartitionReversibleIterable<T> |
ReversibleIterable.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> PartitionOrderedIterable<T> |
OrderedIterable.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> SortedIterable<T> |
SortedIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ReversibleIterable<T> |
ReversibleIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> OrderedIterable<T> |
OrderedIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> SortedIterable<T> |
SortedIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ReversibleIterable<T> |
ReversibleIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> OrderedIterable<T> |
OrderedIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
| Modifier and Type | Method and Description |
|---|---|
<P> PartitionSet<T> |
SetIterable.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> PartitionMutableSetIterable<T> |
MutableSetIterable.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> PartitionMutableSet<T> |
MutableSet.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> PartitionImmutableSetIterable<T> |
ImmutableSetIterable.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> PartitionImmutableSet<T> |
ImmutableSet.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> UnsortedSetIterable<T> |
UnsortedSetIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> SetIterable<T> |
SetIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ParallelUnsortedSetIterable<T> |
ParallelUnsortedSetIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ParallelSetIterable<T> |
ParallelSetIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> MutableSetIterable<T> |
MutableSetIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> MutableSet<T> |
MutableSet.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ImmutableSetIterable<T> |
ImmutableSetIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ImmutableSet<T> |
ImmutableSet.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> UnsortedSetIterable<T> |
UnsortedSetIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> SetIterable<T> |
SetIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ParallelUnsortedSetIterable<T> |
ParallelUnsortedSetIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ParallelSetIterable<T> |
ParallelSetIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> MutableSetIterable<T> |
MutableSetIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> MutableSet<T> |
MutableSet.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ImmutableSetIterable<T> |
ImmutableSetIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ImmutableSet<T> |
ImmutableSet.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
| Modifier and Type | Method and Description |
|---|---|
<P> PartitionSortedSet<T> |
SortedSetIterable.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> PartitionMutableSortedSet<T> |
MutableSortedSet.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> PartitionImmutableSortedSet<T> |
ImmutableSortedSet.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> SortedSetIterable<T> |
SortedSetIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ParallelSortedSetIterable<T> |
ParallelSortedSetIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> MutableSortedSet<T> |
MutableSortedSet.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ImmutableSortedSet<T> |
ImmutableSortedSet.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> SortedSetIterable<T> |
SortedSetIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ParallelSortedSetIterable<T> |
ParallelSortedSetIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> MutableSortedSet<T> |
MutableSortedSet.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ImmutableSortedSet<T> |
ImmutableSortedSet.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
| Modifier and Type | Method and Description |
|---|---|
<P> PartitionStack<T> |
StackIterable.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> PartitionMutableStack<T> |
MutableStack.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> PartitionImmutableStack<T> |
ImmutableStack.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> StackIterable<T> |
StackIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> MutableStack<T> |
MutableStack.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ImmutableStack<T> |
ImmutableStack.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> StackIterable<T> |
StackIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> MutableStack<T> |
MutableStack.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> ImmutableStack<T> |
ImmutableStack.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
Copyright © 2004–2022. All rights reserved.