Uses of Interface
org.eclipse.collections.api.block.predicate.Predicate2
Packages that use Predicate2
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for Bag API.
This package contains interfaces for SortedBag API.
This package contains interfaces for BiMap API.
This package contains interfaces for list API which enhance the performance and functionality of
List
.This package contains interfaces for map API which enhance the performance and functionality of
Map
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains mutable and immutable sorted map interfaces.
This package contains interfaces for
Multimap
.This package contains interfaces for
BagMultimap
.This package contains interfaces for
ListMultimap
.This package contains interfaces for
SetMultimap
.This package contains interfaces for
SortedBagMultimap
.This package contains interfaces for
SortedSetMultimap
.This package contains interfaces for set API which enhance the performance and functionality of
Set
.This package contains interfaces for sorted set API.
This package contains interfaces for stack API.
This package contains implementations for Eclipse Collections API.
This package contains implementations of the
ImmutableBag
interface.This package contains implementations of the
MutableBag
interface.This package contains implementations of
MutableSortedBag
.This package contains implementations of the
MutableBiMap
interface.This package contains factory implementations for
Function
, Predicate
, SerializableComparator
and Procedure
.This package contains implementations of
Predicate
and Predicate2
.This package contains abstract implementations of
Predicate
and Predicate2
.This package contains implementations of
Procedure
and Procedure2
.This package contains implementations of the
MutableCollection
interface.This package contains implementations of the
LazyIterable
interface.This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of the
FixedSizeList
interface.This package contains implementations of the
MutableList
interface.This package contains implementations of the
MapIterable
interface.This package contains implementations of the
ImmutableMap
interface.This package contains implementations of the
MutableMap
interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap
interface.This package contains implementations of the
MutableSortedMap
interface.This package contains immutable map implementations backed by hashtables that rely on
HashingStrategy
s provided by
the developer to compute the hashCode and equals for the objects stored in the map.This package contains implementations of the
Multimap
interface.This package contains implementations of the
BagMultimap
interface.This package contains implementations of the
ListMultimap
interface.This package contains implementations of the
SetMultimap
interface.This package contains implementations of the
SortedSetMultimap
interface.This package contains implementations of the
SetMultimap
interface which use a set with user-defined HashingStrategy
as their underlying store for the multiple values of a given key.This package contains implementations of the
PartitionStack
interface.This package contains the implementations of
ImmutableSet
.This package contains implementations of
MutableSet
.This package contains implementations of
MutableSortedSet
.This package contains implementations of sets with user defined
HashingStrategy
s.This package contains implementations of the
MutableStack
interface.This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of Predicate2 in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type Predicate2Modifier and TypeMethodDescription<P> boolean
ParallelIterable.allSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <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.anySatisfyWith
(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> int
ParallelIterable.countWith
(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> T
ParallelIterable.detectWith
(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.detectWithIfNone
(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) <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.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
ParallelIterable.noneSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <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> 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> LazyIterable<T>
LazyIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelIterable<T>
ParallelIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> RichIterable<T>
RichIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) Similar toRichIterable.reject(Predicate)
, except with an evaluation parameter for the second generic argument inPredicate2
.<P,
R extends Collection<T>>
RRichIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) Similar toRichIterable.reject(Predicate, Collection)
, except with an evaluation parameter for the second generic argument inPredicate2
.<P> LazyIterable<T>
LazyIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelIterable<T>
ParallelIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> RichIterable<T>
RichIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) Similar toRichIterable.select(Predicate)
, except with an evaluation parameter for the second generic argument inPredicate2
.<P,
R extends Collection<T>>
RRichIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) Similar toRichIterable.select(Predicate, Collection)
, except with an evaluation parameter for the second generic argument inPredicate2
. -
Uses of Predicate2 in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type Predicate2Modifier and TypeMethodDescription<P> PartitionBag<T>
Bag.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionImmutableBag<T>
ImmutableBag.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) ImmutableBagIterable.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableBag<T>
MutableBag.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) MutableBagIterable.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) Bag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableBag<T>
ImmutableBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableBagIterable<T>
ImmutableBagIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T>
MutableBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBagIterable<T>
MutableBagIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelBag<T>
ParallelBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelUnsortedBag<T>
ParallelUnsortedBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> UnsortedBag<T>
UnsortedBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) Bag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableBag<T>
ImmutableBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableBagIterable<T>
ImmutableBagIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T>
MutableBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBagIterable<T>
MutableBagIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelBag<T>
ParallelBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelUnsortedBag<T>
ParallelUnsortedBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> UnsortedBag<T>
UnsortedBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted with parameters of type Predicate2Modifier and TypeMethodDescriptionImmutableSortedBag.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) MutableSortedBag.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionSortedBag<T>
SortedBag.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSortedBag<T>
ImmutableSortedBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedBag<T>
MutableSortedBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelSortedBag<T>
ParallelSortedBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) SortedBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSortedBag<T>
ImmutableSortedBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedBag<T>
MutableSortedBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelSortedBag<T>
ParallelSortedBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) SortedBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.api.bimap
Methods in org.eclipse.collections.api.bimap with parameters of type Predicate2Modifier and TypeMethodDescription<P> PartitionUnsortedSet<V>
BiMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableSet<V>
ImmutableBiMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableSet<V>
MutableBiMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) BiMap.reject
(Predicate2<? super K, ? super V> predicate) ImmutableBiMap.reject
(Predicate2<? super K, ? super V> predicate) MutableBiMap.reject
(Predicate2<? super K, ? super V> predicate) <P> SetIterable<V>
BiMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> ImmutableSet<V>
ImmutableBiMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableSet<V>
MutableBiMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) BiMap.select
(Predicate2<? super K, ? super V> predicate) ImmutableBiMap.select
(Predicate2<? super K, ? super V> predicate) MutableBiMap.select
(Predicate2<? super K, ? super V> predicate) <P> SetIterable<V>
BiMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> ImmutableSet<V>
ImmutableBiMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableSet<V>
MutableBiMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection with parameters of type Predicate2Modifier and TypeMethodDescriptionImmutableCollection.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) MutableCollection.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) Filters a collection into a PartitionIterable based on the evaluation of the predicate.<P> ImmutableCollection<T>
ImmutableCollection.rejectWith
(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> boolean
FixedSizeCollection.removeIfWith
(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> Twin<MutableList<T>>
MutableCollection.selectAndRejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) Deprecated.<P> ImmutableCollection<T>
ImmutableCollection.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <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. -
Uses of Predicate2 in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list with parameters of type Predicate2Modifier and TypeMethodDescription<P> PartitionImmutableList<T>
ImmutableList.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionList<T>
ListIterable.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableList<T>
MutableList.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableList<T>
ImmutableList.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ListIterable<T>
ListIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) default <P> MutableList<T>
MutableList.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelListIterable<T>
ParallelListIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableList<T>
ImmutableList.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ListIterable<T>
ListIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) default <P> MutableList<T>
MutableList.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelListIterable<T>
ParallelListIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map with parameters of type Predicate2Modifier and TypeMethodDescriptionMapIterable.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.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> PartitionImmutableBag<V>
ImmutableMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableList<V>
ImmutableOrderedMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
MutableMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableList<V>
MutableOrderedMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionList<V>
OrderedMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionBag<V>
UnsortedMapIterable.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableMap.reject
(Predicate2<? super K, ? super V> predicate) ImmutableMapIterable.reject
(Predicate2<? super K, ? super V> predicate) ImmutableOrderedMap.reject
(Predicate2<? super K, ? super V> predicate) 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.MutableMap<K,
V> MutableMap.reject
(Predicate2<? super K, ? super V> predicate) MutableMapIterable.reject
(Predicate2<? super K, ? super V> predicate) MutableOrderedMap.reject
(Predicate2<? super K, ? super V> predicate) OrderedMap<K,
V> OrderedMap.reject
(Predicate2<? super K, ? super V> predicate) UnsortedMapIterable.reject
(Predicate2<? super K, ? super V> predicate) <P> ImmutableBag<V>
ImmutableMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> ImmutableCollection<V>
ImmutableMapIterable.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> ImmutableList<V>
ImmutableOrderedMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableBag<V>
MutableMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableCollection<V>
MutableMapIterable.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V>
MutableOrderedMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> ListIterable<V>
OrderedMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) UnsortedMapIterable.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) boolean
FixedSizeMap.removeIf
(Predicate2<? super K, ? super V> predicate) default boolean
MutableMapIterable.removeIf
(Predicate2<? super K, ? super V> predicate) Remove an entry from the map if thepredicate
evaluates to true.ImmutableMap.select
(Predicate2<? super K, ? super V> predicate) ImmutableMapIterable.select
(Predicate2<? super K, ? super V> predicate) ImmutableOrderedMap.select
(Predicate2<? super K, ? super V> predicate) 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.MutableMap<K,
V> MutableMap.select
(Predicate2<? super K, ? super V> predicate) MutableMapIterable.select
(Predicate2<? super K, ? super V> predicate) MutableOrderedMap.select
(Predicate2<? super K, ? super V> predicate) OrderedMap<K,
V> OrderedMap.select
(Predicate2<? super K, ? super V> predicate) UnsortedMapIterable.select
(Predicate2<? super K, ? super V> predicate) <P> ImmutableBag<V>
ImmutableMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> ImmutableCollection<V>
ImmutableMapIterable.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> ImmutableList<V>
ImmutableOrderedMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableBag<V>
MutableMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableCollection<V>
MutableMapIterable.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V>
MutableOrderedMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> ListIterable<V>
OrderedMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) UnsortedMapIterable.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type Predicate2Modifier and TypeMethodDescription<P> PartitionImmutableBag<V>
ImmutablePrimitiveObjectMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
MutablePrimitiveObjectMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionBag<V>
PrimitiveObjectMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> ImmutableBag<V>
ImmutablePrimitiveObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableBag<V>
MutablePrimitiveObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) PrimitiveObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> ImmutableBag<V>
ImmutablePrimitiveObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableBag<V>
MutablePrimitiveObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) PrimitiveObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted with parameters of type Predicate2Modifier and TypeMethodDescription<P> PartitionImmutableList<V>
ImmutableSortedMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableList<V>
MutableSortedMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionList<V>
SortedMapIterable.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableSortedMap.reject
(Predicate2<? super K, ? super V> predicate) MutableSortedMap.reject
(Predicate2<? super K, ? super V> predicate) SortedMapIterable.reject
(Predicate2<? super K, ? super V> predicate) <P> ImmutableList<V>
ImmutableSortedMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V>
MutableSortedMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> ListIterable<V>
SortedMapIterable.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableSortedMap.select
(Predicate2<? super K, ? super V> predicate) MutableSortedMap.select
(Predicate2<? super K, ? super V> predicate) SortedMapIterable.select
(Predicate2<? super K, ? super V> predicate) <P> ImmutableList<V>
ImmutableSortedMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V>
MutableSortedMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> ListIterable<V>
SortedMapIterable.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.api.multimap
Methods in org.eclipse.collections.api.multimap with parameters of type Predicate2Modifier and TypeMethodDescriptionImmutableMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) Multimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) Returns all elements of the source multimap that don't satisfy the predicate.<R extends MutableMultimap<K,
V>>
RMultimap.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.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) Multimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) Returns all elements of the source multimap that don't satisfy the predicate.<R extends MutableMultimap<K,
V>>
RMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate, R target) Same as the reject method but uses the specified target multimap for the results.MutableMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) ImmutableMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) Multimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) Returns all elements of the source multimap that satisfies the predicate.<R extends MutableMultimap<K,
V>>
RMultimap.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.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) Multimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) Returns all elements of the source multimap that satisfies the predicate.<R extends MutableMultimap<K,
V>>
RMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate, R target) Same as the select method but uses the specified target multimap for the results.MutableMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.api.multimap.bag
Methods in org.eclipse.collections.api.multimap.bag with parameters of type Predicate2Modifier and TypeMethodDescriptionBagMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableBagIterableMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableBagMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableBagIterableMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableBagMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) UnsortedBagMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) BagMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) ImmutableBagIterableMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) ImmutableBagMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) MutableBagIterableMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) MutableBagMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) UnsortedBagMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) BagMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableBagIterableMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableBagMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableBagIterableMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableBagMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) UnsortedBagMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) BagMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) ImmutableBagIterableMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) ImmutableBagMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) MutableBagIterableMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) MutableBagMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) UnsortedBagMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.api.multimap.list
Methods in org.eclipse.collections.api.multimap.list with parameters of type Predicate2Modifier and TypeMethodDescriptionImmutableListMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) ListMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableListMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableListMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) ListMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) MutableListMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) ImmutableListMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) ListMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableListMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableListMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) ListMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) MutableListMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.api.multimap.ordered
Methods in org.eclipse.collections.api.multimap.ordered with parameters of type Predicate2Modifier and TypeMethodDescriptionOrderedIterableMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) ReversibleIterableMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) SortedIterableMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) OrderedIterableMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) ReversibleIterableMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) SortedIterableMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) OrderedIterableMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) ReversibleIterableMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) SortedIterableMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) OrderedIterableMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) ReversibleIterableMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) SortedIterableMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.api.multimap.set
Methods in org.eclipse.collections.api.multimap.set with parameters of type Predicate2Modifier and TypeMethodDescriptionImmutableSetIterableMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSetMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSetIterableMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSetMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) SetMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) UnsortedSetMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSetIterableMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) ImmutableSetMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) MutableSetIterableMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) MutableSetMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) SetMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) UnsortedSetMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) ImmutableSetIterableMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSetMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSetIterableMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSetMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) SetMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) UnsortedSetMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSetIterableMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) ImmutableSetMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) MutableSetIterableMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) MutableSetMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) SetMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) UnsortedSetMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.api.multimap.sortedbag
Methods in org.eclipse.collections.api.multimap.sortedbag with parameters of type Predicate2Modifier and TypeMethodDescriptionImmutableSortedBagMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSortedBagMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) SortedBagMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSortedBagMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) MutableSortedBagMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) SortedBagMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) ImmutableSortedBagMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSortedBagMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) SortedBagMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSortedBagMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) MutableSortedBagMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) SortedBagMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.api.multimap.sortedset
Methods in org.eclipse.collections.api.multimap.sortedset with parameters of type Predicate2Modifier and TypeMethodDescriptionImmutableSortedSetMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSortedSetMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) SortedSetMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSortedSetMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) MutableSortedSetMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) SortedSetMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) ImmutableSortedSetMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSortedSetMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) SortedSetMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSortedSetMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) MutableSortedSetMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) SortedSetMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type Predicate2Modifier and TypeMethodDescription<S> boolean
OrderedIterable.corresponds
(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) Returns true if both OrderedIterables have the same length andpredicate
returns true for all corresponding elements e1 of thisOrderedIterable
and e2 ofother
.OrderedIterable.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) ReversibleIterable.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> OrderedIterable<T>
OrderedIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ReversibleIterable<T>
ReversibleIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> SortedIterable<T>
SortedIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> OrderedIterable<T>
OrderedIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ReversibleIterable<T>
ReversibleIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> SortedIterable<T>
SortedIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set with parameters of type Predicate2Modifier and TypeMethodDescription<P> PartitionImmutableSet<T>
ImmutableSet.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) ImmutableSetIterable.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableSet<T>
MutableSet.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) MutableSetIterable.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionSet<T>
SetIterable.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSet<T>
ImmutableSet.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSetIterable<T>
ImmutableSetIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T>
MutableSet.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSetIterable<T>
MutableSetIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelSetIterable<T>
ParallelSetIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) ParallelUnsortedSetIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> SetIterable<T>
SetIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> UnsortedSetIterable<T>
UnsortedSetIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSet<T>
ImmutableSet.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSetIterable<T>
ImmutableSetIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T>
MutableSet.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSetIterable<T>
MutableSetIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelSetIterable<T>
ParallelSetIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) ParallelUnsortedSetIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> SetIterable<T>
SetIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> UnsortedSetIterable<T>
UnsortedSetIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted with parameters of type Predicate2Modifier and TypeMethodDescriptionImmutableSortedSet.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) MutableSortedSet.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionSortedSet<T>
SortedSetIterable.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSortedSet<T>
ImmutableSortedSet.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedSet<T>
MutableSortedSet.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) ParallelSortedSetIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> SortedSetIterable<T>
SortedSetIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSortedSet<T>
ImmutableSortedSet.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedSet<T>
MutableSortedSet.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) ParallelSortedSetIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> SortedSetIterable<T>
SortedSetIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack with parameters of type Predicate2Modifier and TypeMethodDescription<P> PartitionImmutableStack<T>
ImmutableStack.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableStack<T>
MutableStack.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionStack<T>
StackIterable.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableStack<T>
ImmutableStack.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableStack<T>
MutableStack.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> StackIterable<T>
StackIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableStack<T>
ImmutableStack.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableStack<T>
MutableStack.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> StackIterable<T>
StackIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with parameters of type Predicate2Modifier and TypeMethodDescription<P> boolean
AbstractRichIterable.allSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
UnmodifiableRichIterable.allSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractRichIterable.anySatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
UnmodifiableRichIterable.anySatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> int
AbstractRichIterable.countWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> int
UnmodifiableRichIterable.countWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
AbstractRichIterable.detectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
UnmodifiableRichIterable.detectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
AbstractRichIterable.detectWithIfNone
(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) <P> T
UnmodifiableRichIterable.detectWithIfNone
(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) AbstractRichIterable.detectWithOptional
(Predicate2<? super T, ? super P> predicate, P parameter) UnmodifiableRichIterable.detectWithOptional
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractRichIterable.noneSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
UnmodifiableRichIterable.noneSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionIterable<T>
UnmodifiableRichIterable.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P,
R extends Collection<T>>
RAbstractRichIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P> RichIterable<T>
UnmodifiableRichIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P,
R extends Collection<T>>
RUnmodifiableRichIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) <P,
R extends Collection<T>>
RAbstractRichIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P> RichIterable<T>
UnmodifiableRichIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P,
R extends Collection<T>>
RUnmodifiableRichIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag with parameters of type Predicate2Modifier and TypeMethodDescription<P,
R extends Collection<T>>
RAbstractBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P,
R extends Collection<T>>
RAbstractBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R target) -
Uses of Predicate2 in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> boolean
ImmutableArrayBag.allSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
ImmutableHashBag.allSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
ImmutableArrayBag.anySatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
ImmutableHashBag.anySatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
ImmutableArrayBag.detectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
ImmutableHashBag.detectWith
(Predicate2<? super T, ? super P> predicate, P parameter) ImmutableArrayBag.detectWithOptional
(Predicate2<? super T, ? super P> predicate, P parameter) ImmutableHashBag.detectWithOptional
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
ImmutableArrayBag.noneSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
ImmutableHashBag.noneSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionImmutableBag<T>
AbstractImmutableBag.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableBag<T>
AbstractImmutableBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableBag<T>
AbstractImmutableBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> boolean
AbstractMutableBagIterable.allSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractMutableBagIterable.anySatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
AbstractMutableBagIterable.detectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
AbstractMutableBagIterable.detectWithIfNone
(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) AbstractMutableBagIterable.detectWithOptional
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractMutableBagIterable.noneSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableBag<T>
AbstractMutableBag.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableBag<T>
MultiReaderHashBag.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableBag<T>
SynchronizedBag.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableBag<T>
UnmodifiableBag.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T>
AbstractMutableBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T>
MultiReaderHashBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T>
SynchronizedBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T>
UnmodifiableBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractHashBag.removeIfWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>>
AbstractMutableBagIterable.selectAndRejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T>
AbstractMutableBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T>
MultiReaderHashBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T>
SynchronizedBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T>
UnmodifiableBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable with parameters of type Predicate2Modifier and TypeMethodDescription<S> boolean
SynchronizedSortedBag.corresponds
(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> boolean
TreeBag.corresponds
(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> boolean
UnmodifiableSortedBag.corresponds
(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) AbstractMutableSortedBag.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) SynchronizedSortedBag.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) UnmodifiableSortedBag.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedBag<T>
AbstractMutableSortedBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedBag<T>
SynchronizedSortedBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedBag<T>
UnmodifiableSortedBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
TreeBag.removeIfWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedBag<T>
AbstractMutableSortedBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedBag<T>
SynchronizedSortedBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedBag<T>
UnmodifiableSortedBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with parameters of type Predicate2Modifier and TypeMethodDescription<P> boolean
AbstractBiMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
AbstractBiMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
AbstractBiMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) AbstractBiMap.detect
(Predicate2<? super K, ? super V> predicate) AbstractBiMap.detectOptional
(Predicate2<? super K, ? super V> predicate) <P> V
AbstractBiMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
AbstractBiMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) AbstractBiMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
AbstractBiMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RAbstractBiMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P,
R extends Collection<V>>
RAbstractBiMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> PartitionImmutableSet<V>
AbstractImmutableBiMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) AbstractImmutableBiMap.reject
(Predicate2<? super K, ? super V> predicate) <P> ImmutableSet<V>
AbstractImmutableBiMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) AbstractImmutableBiMap.select
(Predicate2<? super K, ? super V> predicate) <P> ImmutableSet<V>
AbstractImmutableBiMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> boolean
UnmodifiableBiMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableBiMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
UnmodifiableBiMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableBiMap.detect
(Predicate2<? super K, ? super V> predicate) UnmodifiableBiMap.detectOptional
(Predicate2<? super K, ? super V> predicate) <P> V
UnmodifiableBiMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
UnmodifiableBiMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) UnmodifiableBiMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableBiMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableSet<V>
SynchronizedBiMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableSet<V>
UnmodifiableBiMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) SynchronizedBiMap.reject
(Predicate2<? super K, ? super V> predicate) UnmodifiableBiMap.reject
(Predicate2<? super K, ? super V> predicate) <P> MutableSet<V>
SynchronizedBiMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableSet<V>
UnmodifiableBiMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RUnmodifiableBiMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) boolean
UnmodifiableBiMap.removeIf
(Predicate2<? super K, ? super V> predicate) SynchronizedBiMap.select
(Predicate2<? super K, ? super V> predicate) UnmodifiableBiMap.select
(Predicate2<? super K, ? super V> predicate) <P> MutableSet<V>
SynchronizedBiMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableSet<V>
UnmodifiableBiMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RUnmodifiableBiMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.block.factory
Classes in org.eclipse.collections.impl.block.factory that implement Predicate2Modifier and TypeClassDescriptionclass
Predicates2<T,
P> Predicates2 is a static version of Predicates.Methods in org.eclipse.collections.impl.block.factory that return Predicate2Modifier and TypeMethodDescriptionstatic <T,
P> Predicate2<T, P> Predicates2.throwing
(ThrowingPredicate2<T, P> throwingPredicate2) Allows a lambda or anonymous inner class that needs to throw a checked exception to be safely wrapped as a Predicate2 that will throw a RuntimeException, wrapping the checked exception that is the cause.static <T1,
T2> Predicate2<T1, T2> Predicates2.throwing
(ThrowingPredicate2<T1, T2> throwingPredicate2, Function3<T1, T2, ? super Throwable, ? extends RuntimeException> rethrow) Allows a lambda or anonymous inner class that needs to throw a checked exception to be safely wrapped as a Procedure2 that will throw a user specified RuntimeException based on the provided function.Methods in org.eclipse.collections.impl.block.factory with parameters of type Predicate2Modifier and TypeMethodDescriptionPredicates2.and
(Predicate2<? super T, ? super P> op) static <T,
P> Predicates2<T, P> Predicates2.and
(Predicate2<? super T, ? super P> left, Predicate2<? super T, ? super P> right) static <P,
T> Predicate<T> Predicates.bind
(Predicate2<? super T, ? super P> predicate, P parameter) static <T,
P> Predicates2<T, P> Predicates2.not
(Predicate2<T, P> predicate) Predicates2.or
(Predicate2<? super T, ? super P> op) static <T,
P> Predicates2<T, P> Predicates2.or
(Predicate2<? super T, ? super P> left, Predicate2<? super T, ? super P> right) -
Uses of Predicate2 in org.eclipse.collections.impl.block.predicate
Classes in org.eclipse.collections.impl.block.predicate that implement Predicate2 -
Uses of Predicate2 in org.eclipse.collections.impl.block.predicate.checked
Classes in org.eclipse.collections.impl.block.predicate.checked that implement Predicate2 -
Uses of Predicate2 in org.eclipse.collections.impl.block.procedure
Constructors in org.eclipse.collections.impl.block.procedure with parameters of type Predicate2ModifierConstructorDescriptionPartitionPredicate2Procedure
(Predicate2<? super T, ? super P> predicate, P parameter, PartitionMutableCollection<T> partitionMutableCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with parameters of type Predicate2Modifier and TypeMethodDescription<P> boolean
AbstractSynchronizedRichIterable.allSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractSynchronizedRichIterable.anySatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> int
AbstractSynchronizedRichIterable.countWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
AbstractSynchronizedRichIterable.detectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
AbstractSynchronizedRichIterable.detectWithIfNone
(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) AbstractSynchronizedRichIterable.detectWithOptional
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractSynchronizedRichIterable.noneSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionIterable<T>
AbstractSynchronizedRichIterable.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> RichIterable<T>
AbstractSynchronizedRichIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P,
R extends Collection<T>>
RAbstractSynchronizedRichIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) <P> RichIterable<T>
AbstractSynchronizedRichIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P,
R extends Collection<T>>
RAbstractSynchronizedRichIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> boolean
AbstractCollectionAdapter.allSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractMultiReaderMutableCollection.allSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractUnmodifiableMutableCollection.allSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractCollectionAdapter.anySatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractMultiReaderMutableCollection.anySatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractUnmodifiableMutableCollection.anySatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> int
AbstractCollectionAdapter.countWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> int
AbstractMultiReaderMutableCollection.countWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> int
AbstractUnmodifiableMutableCollection.countWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
AbstractCollectionAdapter.detectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
AbstractMultiReaderMutableCollection.detectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
AbstractUnmodifiableMutableCollection.detectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
AbstractCollectionAdapter.detectWithIfNone
(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) <P> T
AbstractMultiReaderMutableCollection.detectWithIfNone
(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) <P> T
AbstractUnmodifiableMutableCollection.detectWithIfNone
(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) AbstractCollectionAdapter.detectWithOptional
(Predicate2<? super T, ? super P> predicate, P parameter) AbstractMultiReaderMutableCollection.detectWithOptional
(Predicate2<? super T, ? super P> predicate, P parameter) AbstractUnmodifiableMutableCollection.detectWithOptional
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractCollectionAdapter.noneSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractMultiReaderMutableCollection.noneSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractUnmodifiableMutableCollection.noneSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) AbstractCollectionAdapter.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) AbstractSynchronizedMutableCollection.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) AbstractUnmodifiableMutableCollection.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableCollection<T>
AbstractCollectionAdapter.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P,
R extends Collection<T>>
RAbstractCollectionAdapter.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) <P,
R extends Collection<T>>
RAbstractMultiReaderMutableCollection.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) <P> MutableCollection<T>
AbstractSynchronizedMutableCollection.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableCollection<T>
AbstractUnmodifiableMutableCollection.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P,
R extends Collection<T>>
RAbstractUnmodifiableMutableCollection.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) <P> boolean
AbstractCollectionAdapter.removeIfWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractMultiReaderMutableCollection.removeIfWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractMutableCollection.removeIfWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractSynchronizedMutableCollection.removeIfWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractUnmodifiableMutableCollection.removeIfWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>>
AbstractCollectionAdapter.selectAndRejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>>
AbstractMultiReaderMutableCollection.selectAndRejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>>
AbstractMutableCollection.selectAndRejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>>
AbstractSynchronizedMutableCollection.selectAndRejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>>
AbstractUnmodifiableMutableCollection.selectAndRejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableCollection<T>
AbstractCollectionAdapter.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P,
R extends Collection<T>>
RAbstractCollectionAdapter.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) <P,
R extends Collection<T>>
RAbstractMultiReaderMutableCollection.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) <P> MutableCollection<T>
AbstractSynchronizedMutableCollection.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableCollection<T>
AbstractUnmodifiableMutableCollection.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P,
R extends Collection<T>>
RAbstractUnmodifiableMutableCollection.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with parameters of type Predicate2Modifier and TypeMethodDescriptionstatic <T,
P, R extends PartitionMutableCollection<T>>
Collector<T,?, R> Collectors2.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter, Supplier<R> supplier) Returns all elements of the stream split into a PartitionMutableCollection after evaluating the predicate.static <T,
P, R extends Collection<T>>
Collector<T,?, R> Collectors2.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter, Supplier<R> supplier) Returns all elements of the stream that return false when evaluating the predicate with the parameter.static <T,
P, R extends Collection<T>>
Collector<T,?, R> Collectors2.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter, Supplier<R> supplier) Returns all elements of the stream that return true when evaluating the predicate with the parameter. -
Uses of Predicate2 in org.eclipse.collections.impl.lazy
Methods in org.eclipse.collections.impl.lazy with parameters of type Predicate2Modifier and TypeMethodDescription<P> boolean
FlatCollectIterable.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
LazyIterableAdapter.allSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
FlatCollectIterable.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
LazyIterableAdapter.anySatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
LazyIterableAdapter.detectWith
(Predicate2<? super T, ? super P> predicate, P parameter) LazyIterableAdapter.detectWithOptional
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
FlatCollectIterable.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
LazyIterableAdapter.noneSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableList<T>
AbstractLazyIterable.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> LazyIterable<T>
AbstractLazyIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> LazyIterable<T>
AbstractLazyIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.lazy.parallel
Methods in org.eclipse.collections.impl.lazy.parallel with parameters of type Predicate2Modifier and TypeMethodDescription<P> boolean
AbstractMultiReaderParallelIterable.allSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractParallelIterable.allSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractSynchronizedParallelIterable.allSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
NonParallelIterable.allSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractMultiReaderParallelIterable.anySatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractParallelIterable.anySatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractSynchronizedParallelIterable.anySatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
NonParallelIterable.anySatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> int
AbstractMultiReaderParallelIterable.countWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> int
AbstractParallelIterable.countWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> int
AbstractSynchronizedParallelIterable.countWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> int
NonParallelIterable.countWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
AbstractMultiReaderParallelIterable.detectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
AbstractParallelIterable.detectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
AbstractSynchronizedParallelIterable.detectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
NonParallelIterable.detectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
AbstractMultiReaderParallelIterable.detectWithIfNone
(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) <P> T
AbstractParallelIterable.detectWithIfNone
(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) <P> T
AbstractSynchronizedParallelIterable.detectWithIfNone
(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) <P> T
NonParallelIterable.detectWithIfNone
(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) <P> boolean
AbstractMultiReaderParallelIterable.noneSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractParallelIterable.noneSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractSynchronizedParallelIterable.noneSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
NonParallelIterable.noneSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelIterable<T>
AbstractParallelIterableImpl.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelIterable<T>
MultiReaderParallelIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelIterable<T>
SynchronizedParallelIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelIterable<T>
AbstractParallelIterableImpl.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelIterable<T>
MultiReaderParallelIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelIterable<T>
SynchronizedParallelIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.lazy.parallel.bag
Methods in org.eclipse.collections.impl.lazy.parallel.bag with parameters of type Predicate2Modifier and TypeMethodDescription<P> ParallelUnsortedBag<T>
AbstractParallelUnsortedBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelUnsortedBag<T>
NonParallelUnsortedBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelUnsortedBag<T>
AbstractParallelUnsortedBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelUnsortedBag<T>
NonParallelUnsortedBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.lazy.parallel.list
Methods in org.eclipse.collections.impl.lazy.parallel.list with parameters of type Predicate2Modifier and TypeMethodDescription<P> ParallelListIterable<T>
AbstractParallelListIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelListIterable<T>
MultiReaderParallelListIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelListIterable<T>
NonParallelListIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelListIterable<T>
SynchronizedParallelListIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelListIterable<T>
AbstractParallelListIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelListIterable<T>
MultiReaderParallelListIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelListIterable<T>
NonParallelListIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelListIterable<T>
SynchronizedParallelListIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.lazy.parallel.set
Methods in org.eclipse.collections.impl.lazy.parallel.set with parameters of type Predicate2Modifier and TypeMethodDescriptionAbstractParallelUnsortedSetIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) MultiReaderParallelUnsortedSetIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) NonParallelUnsortedSetIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) SynchronizedParallelUnsortedSetIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) AbstractParallelUnsortedSetIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) MultiReaderParallelUnsortedSetIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) NonParallelUnsortedSetIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) SynchronizedParallelUnsortedSetIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.lazy.parallel.set.sorted
Methods in org.eclipse.collections.impl.lazy.parallel.set.sorted with parameters of type Predicate2Modifier and TypeMethodDescriptionAbstractParallelSortedSetIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) NonParallelSortedSetIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) SynchronizedParallelSortedSetIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) AbstractParallelSortedSetIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) NonParallelSortedSetIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) SynchronizedParallelSortedSetIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type Predicate2Modifier and TypeMethodDescription<P> boolean
FlatCollectBooleanToObjectIterable.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectByteToObjectIterable.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectCharToObjectIterable.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectDoubleToObjectIterable.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectFloatToObjectIterable.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectIntToObjectIterable.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectLongToObjectIterable.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectShortToObjectIterable.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectBooleanToObjectIterable.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectByteToObjectIterable.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectCharToObjectIterable.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectDoubleToObjectIterable.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectFloatToObjectIterable.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectIntToObjectIterable.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectLongToObjectIterable.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectShortToObjectIterable.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectBooleanToObjectIterable.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectByteToObjectIterable.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectCharToObjectIterable.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectDoubleToObjectIterable.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectFloatToObjectIterable.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectIntToObjectIterable.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectLongToObjectIterable.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FlatCollectShortToObjectIterable.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.list.fixed
Methods in org.eclipse.collections.impl.list.fixed with parameters of type Predicate2Modifier and TypeMethodDescription<P> boolean
AbstractArrayAdapter.allSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractArrayAdapter.anySatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <S> boolean
AbstractArrayAdapter.corresponds
(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <P> int
AbstractArrayAdapter.countWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
AbstractArrayAdapter.detectWith
(Predicate2<? super T, ? super P> predicate, P parameter) AbstractArrayAdapter.detectWithOptional
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractArrayAdapter.noneSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P,
R extends Collection<T>>
RAbstractArrayAdapter.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P> boolean
AbstractArrayAdapter.removeIfWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractMemoryEfficientMutableList.removeIfWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>>
AbstractArrayAdapter.selectAndRejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P,
R extends Collection<T>>
RAbstractArrayAdapter.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R target) -
Uses of Predicate2 in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> boolean
AbstractMutableList.allSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
CompositeFastList.allSatisfyWith
(Predicate2<? super E, ? super P> predicate, P parameter) <P> boolean
FastList.allSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractMutableList.anySatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
CompositeFastList.anySatisfyWith
(Predicate2<? super E, ? super P> predicate, P parameter) <P> boolean
FastList.anySatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <S> boolean
AbstractMutableList.corresponds
(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> boolean
ArrayListAdapter.corresponds
(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> boolean
FastList.corresponds
(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> boolean
ListAdapter.corresponds
(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> boolean
MultiReaderFastList.corresponds
(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> boolean
RandomAccessListAdapter.corresponds
(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> boolean
SynchronizedMutableList.corresponds
(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> boolean
UnmodifiableMutableList.corresponds
(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <P> int
AbstractMutableList.countWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> int
CompositeFastList.countWith
(Predicate2<? super E, ? super P> predicate, P parameter) <P> int
FastList.countWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
AbstractMutableList.detectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> T
FastList.detectWith
(Predicate2<? super T, ? super P> predicate, P parameter) AbstractMutableList.detectWithOptional
(Predicate2<? super T, ? super P> predicate, P parameter) FastList.detectWithOptional
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractMutableList.noneSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
CompositeFastList.noneSatisfyWith
(Predicate2<? super E, ? super P> predicate, P parameter) <P> boolean
FastList.noneSatisfyWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableList<T>
AbstractListAdapter.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableList<T>
AbstractMutableList.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableList<T>
ArrayListAdapter.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionFastList<T>
FastList.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableList<T>
MultiReaderFastList.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableList<T>
RandomAccessListAdapter.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableList<T>
SynchronizedMutableList.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableList<T>
UnmodifiableMutableList.partitionWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T>
AbstractListAdapter.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P,
R extends Collection<T>>
RAbstractMutableList.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P> ArrayListAdapter<T>
ArrayListAdapter.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P,
R extends Collection<E>>
RCompositeFastList.rejectWith
(Predicate2<? super E, ? super P> predicate, P parameter, R target) FastList.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P,
R extends Collection<T>>
RFastList.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P> MutableList<T>
MultiReaderFastList.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T>
RandomAccessListAdapter.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T>
SynchronizedMutableList.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T>
UnmodifiableMutableList.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
AbstractMutableList.removeIfWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> boolean
FastList.removeIfWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>>
AbstractMutableList.selectAndRejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>>
FastList.selectAndRejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T>
AbstractListAdapter.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P,
R extends Collection<T>>
RAbstractMutableList.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P> ArrayListAdapter<T>
ArrayListAdapter.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P,
R extends Collection<E>>
RCompositeFastList.selectWith
(Predicate2<? super E, ? super P> predicate, P parameter, R target) FastList.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P,
R extends Collection<T>>
RFastList.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P> MutableList<T>
MultiReaderFastList.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T>
RandomAccessListAdapter.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T>
SynchronizedMutableList.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T>
UnmodifiableMutableList.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.map
Methods in org.eclipse.collections.impl.map with parameters of type Predicate2Modifier and TypeMethodDescription<P> boolean
AbstractMapIterable.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
AbstractMapIterable.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) AbstractSynchronizedMapIterable.detect
(Predicate2<? super K, ? super V> predicate) AbstractSynchronizedMapIterable.detectOptional
(Predicate2<? super K, ? super V> predicate) <P> V
AbstractMapIterable.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
AbstractMapIterable.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) AbstractMapIterable.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
AbstractMapIterable.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableCollection<V>
AbstractSynchronizedMapIterable.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) boolean
AbstractSynchronizedMapIterable.removeIf
(Predicate2<? super K, ? super V> predicate) <P> MutableCollection<V>
AbstractSynchronizedMapIterable.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable with parameters of type Predicate2Modifier and TypeMethodDescriptionAbstractImmutableMap.detect
(Predicate2<? super K, ? super V> predicate) AbstractImmutableMap.detectOptional
(Predicate2<? super K, ? super V> predicate) <P> PartitionImmutableBag<V>
AbstractImmutableMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) AbstractImmutableMap.reject
(Predicate2<? super K, ? super V> predicate) <P> ImmutableBag<V>
AbstractImmutableMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) AbstractImmutableMap.select
(Predicate2<? super K, ? super V> predicate) <P> ImmutableBag<V>
AbstractImmutableMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> boolean
UnifiedMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableMutableMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnifiedMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableMutableMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
UnmodifiableMutableMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) AbstractMutableMapIterable.detect
(Predicate2<? super K, ? super V> predicate) UnifiedMap.detect
(Predicate2<? super K, ? super V> predicate) UnmodifiableMutableMap.detect
(Predicate2<? super K, ? super V> predicate) AbstractMutableMapIterable.detectOptional
(Predicate2<? super K, ? super V> predicate) UnifiedMap.detectOptional
(Predicate2<? super K, ? super V> predicate) UnmodifiableMutableMap.detectOptional
(Predicate2<? super K, ? super V> predicate) <P> V
UnifiedMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
UnmodifiableMutableMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
UnifiedMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> V
UnmodifiableMutableMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) UnifiedMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableMutableMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnifiedMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableMutableMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
AbstractMutableMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
SynchronizedMutableMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
UnmodifiableMutableMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) MutableMap<K,
V> AbstractMutableMap.reject
(Predicate2<? super K, ? super V> predicate) MutableMap<K,
V> SynchronizedMutableMap.reject
(Predicate2<? super K, ? super V> predicate) MutableMap<K,
V> UnmodifiableMutableMap.reject
(Predicate2<? super K, ? super V> predicate) <P> MutableBag<V>
AbstractMutableMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableBag<V>
SynchronizedMutableMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableBag<V>
UnmodifiableMutableMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RUnmodifiableMutableMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) boolean
UnifiedMap.removeIf
(Predicate2<? super K, ? super V> predicate) boolean
UnmodifiableMutableMap.removeIf
(Predicate2<? super K, ? super V> predicate) MutableMap<K,
V> AbstractMutableMap.select
(Predicate2<? super K, ? super V> predicate) MutableMap<K,
V> SynchronizedMutableMap.select
(Predicate2<? super K, ? super V> predicate) MutableMap<K,
V> UnmodifiableMutableMap.select
(Predicate2<? super K, ? super V> predicate) <P> MutableBag<V>
AbstractMutableMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableBag<V>
SynchronizedMutableMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableBag<V>
UnmodifiableMutableMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RUnmodifiableMutableMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type Predicate2Modifier and TypeMethodDescription<P> boolean
ByteObjectHashMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
CharObjectHashMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
DoubleObjectHashMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FloatObjectHashMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
IntObjectHashMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
LongObjectHashMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
ShortObjectHashMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
SynchronizedByteObjectMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
SynchronizedCharObjectMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
SynchronizedDoubleObjectMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
SynchronizedFloatObjectMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
SynchronizedIntObjectMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
SynchronizedLongObjectMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
SynchronizedShortObjectMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableByteObjectMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableCharObjectMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableDoubleObjectMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableFloatObjectMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableIntObjectMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableLongObjectMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableShortObjectMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
ByteObjectHashMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
CharObjectHashMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
DoubleObjectHashMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FloatObjectHashMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
IntObjectHashMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
LongObjectHashMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
ShortObjectHashMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
SynchronizedByteObjectMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
SynchronizedCharObjectMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
SynchronizedDoubleObjectMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
SynchronizedFloatObjectMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
SynchronizedIntObjectMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
SynchronizedLongObjectMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
SynchronizedShortObjectMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableByteObjectMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableCharObjectMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableDoubleObjectMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableFloatObjectMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableIntObjectMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableLongObjectMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableShortObjectMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
ByteObjectHashMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
CharObjectHashMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
DoubleObjectHashMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
FloatObjectHashMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
IntObjectHashMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
LongObjectHashMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
ShortObjectHashMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
SynchronizedByteObjectMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
SynchronizedCharObjectMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
SynchronizedDoubleObjectMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
SynchronizedFloatObjectMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
SynchronizedIntObjectMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
SynchronizedLongObjectMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
SynchronizedShortObjectMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
UnmodifiableByteObjectMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
UnmodifiableCharObjectMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
UnmodifiableDoubleObjectMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
UnmodifiableFloatObjectMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
UnmodifiableIntObjectMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
UnmodifiableLongObjectMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> int
UnmodifiableShortObjectMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
ByteObjectHashMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
CharObjectHashMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
DoubleObjectHashMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
FloatObjectHashMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
IntObjectHashMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
LongObjectHashMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
ShortObjectHashMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
SynchronizedByteObjectMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
SynchronizedCharObjectMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
SynchronizedDoubleObjectMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
SynchronizedFloatObjectMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
SynchronizedIntObjectMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
SynchronizedLongObjectMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
SynchronizedShortObjectMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
UnmodifiableByteObjectMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
UnmodifiableCharObjectMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
UnmodifiableDoubleObjectMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
UnmodifiableFloatObjectMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
UnmodifiableIntObjectMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
UnmodifiableLongObjectMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
UnmodifiableShortObjectMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
ByteObjectHashMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> V
CharObjectHashMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> V
DoubleObjectHashMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> V
FloatObjectHashMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> V
IntObjectHashMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> V
LongObjectHashMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> V
ShortObjectHashMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> V
SynchronizedByteObjectMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> V
SynchronizedCharObjectMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> V
SynchronizedDoubleObjectMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> V
SynchronizedFloatObjectMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> V
SynchronizedIntObjectMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> V
SynchronizedLongObjectMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> V
SynchronizedShortObjectMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> V
UnmodifiableByteObjectMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> V
UnmodifiableCharObjectMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> V
UnmodifiableDoubleObjectMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> V
UnmodifiableFloatObjectMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> V
UnmodifiableIntObjectMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> V
UnmodifiableLongObjectMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> V
UnmodifiableShortObjectMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) ByteObjectHashMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) CharObjectHashMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) DoubleObjectHashMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) FloatObjectHashMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) IntObjectHashMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) LongObjectHashMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) ShortObjectHashMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) SynchronizedByteObjectMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) SynchronizedCharObjectMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) SynchronizedDoubleObjectMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) SynchronizedFloatObjectMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) SynchronizedIntObjectMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) SynchronizedLongObjectMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) SynchronizedShortObjectMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableByteObjectMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableCharObjectMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableDoubleObjectMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableFloatObjectMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableIntObjectMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableLongObjectMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableShortObjectMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
ByteObjectHashMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
CharObjectHashMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
DoubleObjectHashMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
FloatObjectHashMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
IntObjectHashMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
LongObjectHashMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
ShortObjectHashMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
SynchronizedByteObjectMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
SynchronizedCharObjectMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
SynchronizedDoubleObjectMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
SynchronizedFloatObjectMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
SynchronizedIntObjectMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
SynchronizedLongObjectMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
SynchronizedShortObjectMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableByteObjectMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableCharObjectMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableDoubleObjectMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableFloatObjectMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableIntObjectMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableLongObjectMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableShortObjectMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
ByteObjectHashMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
CharObjectHashMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
DoubleObjectHashMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
FloatObjectHashMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
IntObjectHashMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
LongObjectHashMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
ShortObjectHashMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
SynchronizedByteObjectMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
SynchronizedCharObjectMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
SynchronizedDoubleObjectMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
SynchronizedFloatObjectMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
SynchronizedIntObjectMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
SynchronizedLongObjectMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
SynchronizedShortObjectMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
UnmodifiableByteObjectMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
UnmodifiableCharObjectMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
UnmodifiableDoubleObjectMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
UnmodifiableFloatObjectMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
UnmodifiableIntObjectMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
UnmodifiableLongObjectMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V>
UnmodifiableShortObjectMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableBag<V>
ByteObjectHashMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RByteObjectHashMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
CharObjectHashMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RCharObjectHashMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
DoubleObjectHashMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RDoubleObjectHashMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
FloatObjectHashMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RFloatObjectHashMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
IntObjectHashMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RIntObjectHashMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
LongObjectHashMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RLongObjectHashMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
ShortObjectHashMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RShortObjectHashMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
SynchronizedByteObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RSynchronizedByteObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
SynchronizedCharObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RSynchronizedCharObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
SynchronizedDoubleObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RSynchronizedDoubleObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
SynchronizedFloatObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RSynchronizedFloatObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
SynchronizedIntObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RSynchronizedIntObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
SynchronizedLongObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RSynchronizedLongObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
SynchronizedShortObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RSynchronizedShortObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
UnmodifiableByteObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RUnmodifiableByteObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
UnmodifiableCharObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RUnmodifiableCharObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
UnmodifiableDoubleObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RUnmodifiableDoubleObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
UnmodifiableFloatObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RUnmodifiableFloatObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
UnmodifiableIntObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RUnmodifiableIntObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
UnmodifiableLongObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RUnmodifiableLongObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
UnmodifiableShortObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RUnmodifiableShortObjectMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
ByteObjectHashMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RByteObjectHashMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
CharObjectHashMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RCharObjectHashMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
DoubleObjectHashMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RDoubleObjectHashMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
FloatObjectHashMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RFloatObjectHashMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
IntObjectHashMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RIntObjectHashMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
LongObjectHashMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RLongObjectHashMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
ShortObjectHashMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RShortObjectHashMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
SynchronizedByteObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RSynchronizedByteObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
SynchronizedCharObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RSynchronizedCharObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
SynchronizedDoubleObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RSynchronizedDoubleObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
SynchronizedFloatObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RSynchronizedFloatObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
SynchronizedIntObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RSynchronizedIntObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
SynchronizedLongObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RSynchronizedLongObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
SynchronizedShortObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RSynchronizedShortObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
UnmodifiableByteObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RUnmodifiableByteObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
UnmodifiableCharObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RUnmodifiableCharObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
UnmodifiableDoubleObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RUnmodifiableDoubleObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
UnmodifiableFloatObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RUnmodifiableFloatObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
UnmodifiableIntObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RUnmodifiableIntObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
UnmodifiableLongObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RUnmodifiableLongObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V>
UnmodifiableShortObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RUnmodifiableShortObjectMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> boolean
UnmodifiableMutableOrderedMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableMutableOrderedMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <S> boolean
OrderedMapAdapter.corresponds
(OrderedIterable<S> other, Predicate2<? super V, ? super S> predicate) <S> boolean
UnmodifiableMutableOrderedMap.corresponds
(OrderedIterable<S> other, Predicate2<? super V, ? super S> predicate) <P> int
UnmodifiableMutableOrderedMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) OrderedMapAdapter.detect
(Predicate2<? super K, ? super V> predicate) UnmodifiableMutableOrderedMap.detect
(Predicate2<? super K, ? super V> predicate) OrderedMapAdapter.detectOptional
(Predicate2<? super K, ? super V> predicate) UnmodifiableMutableOrderedMap.detectOptional
(Predicate2<? super K, ? super V> predicate) <P> V
UnmodifiableMutableOrderedMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
UnmodifiableMutableOrderedMap.detectWithIfNone
(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) UnmodifiableMutableOrderedMap.detectWithOptional
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableMutableOrderedMap.noneSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableList<V>
OrderedMapAdapter.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableList<V>
UnmodifiableMutableOrderedMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) OrderedMapAdapter.reject
(Predicate2<? super K, ? super V> predicate) UnmodifiableMutableOrderedMap.reject
(Predicate2<? super K, ? super V> predicate) <P> MutableList<V>
OrderedMapAdapter.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V>
UnmodifiableMutableOrderedMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RUnmodifiableMutableOrderedMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) boolean
UnmodifiableMutableOrderedMap.removeIf
(Predicate2<? super K, ? super V> predicate) OrderedMapAdapter.select
(Predicate2<? super K, ? super V> predicate) UnmodifiableMutableOrderedMap.select
(Predicate2<? super K, ? super V> predicate) <P> MutableList<V>
OrderedMapAdapter.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V>
UnmodifiableMutableOrderedMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P,
R extends Collection<V>>
RUnmodifiableMutableOrderedMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable with parameters of type Predicate2Modifier and TypeMethodDescription<S> boolean
AbstractImmutableSortedMap.corresponds
(OrderedIterable<S> other, Predicate2<? super V, ? super S> predicate) AbstractImmutableSortedMap.detect
(Predicate2<? super K, ? super V> predicate) AbstractImmutableSortedMap.detectOptional
(Predicate2<? super K, ? super V> predicate) <P> PartitionImmutableList<V>
AbstractImmutableSortedMap.partitionWith
(Predicate2<? super V, ? super P> predicate, P parameter) AbstractImmutableSortedMap.reject
(Predicate2<? super K, ? super V> predicate) <P> ImmutableList<V>
AbstractImmutableSortedMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) AbstractImmutableSortedMap.select
(Predicate2<? super K, ? super V> predicate) <P> ImmutableList<V>
AbstractImmutableSortedMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> boolean
UnmodifiableTreeMap.allSatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> boolean
UnmodifiableTreeMap.anySatisfyWith
(Predicate2<? super V, ? super P> predicate, P parameter) <S> boolean
AbstractMutableSortedMap.corresponds
(OrderedIterable<S> other, Predicate2<? super V, ? super S> predicate) <S> boolean
SynchronizedSortedMap.corresponds
(OrderedIterable<S> other, Predicate2<? super V, ? super S> predicate) <S> boolean
UnmodifiableTreeMap.corresponds
(OrderedIterable<S> other, Predicate2<? super V, ? super S> predicate) <P> int
UnmodifiableTreeMap.countWith
(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableTreeMap.detect
(Predicate2<? super K, ? super V> predicate) UnmodifiableTreeMap.detectOptional
(Predicate2<? super K, ? super V> predicate) <P> V
UnmodifiableTreeMap.detectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <P> V
RichIterable.partitionWith(Predicate2, Object)
instead.