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
MapThis 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.
-
Uses of Predicate2 in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanParallelIterable.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanRichIterable.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> booleanParallelIterable.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanRichIterable.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> intParallelIterable.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> intRichIterable.countWith(Predicate2<? super T, ? super P> predicate, P parameter) Returns the total number of elements that evaluate to true for the specified predicate.<P> TParallelIterable.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TRichIterable.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> TParallelIterable.detectWithIfNone(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) <P> TRichIterable.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> booleanParallelIterable.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanRichIterable.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> booleanFixedSizeCollection.removeIfWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanMutableCollection.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) booleanFixedSizeMap.removeIf(Predicate2<? super K, ? super V> predicate) default booleanMutableMapIterable.removeIf(Predicate2<? super K, ? super V> predicate) Remove an entry from the map if thepredicateevaluates 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> booleanOrderedIterable.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) Returns true if both OrderedIterables have the same length andpredicatereturns true for all corresponding elements e1 of thisOrderedIterableand 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)
RichIterable.partitionWith(Predicate2, Object)instead.