Uses of Interface
org.eclipse.collections.api.block.predicate.Predicate2
-
Packages that use Predicate2 Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.bimap This package contains interfaces for BiMap API.org.eclipse.collections.api.collection org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMaporg.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.multimap This package contains interfaces forMultimap.org.eclipse.collections.api.multimap.bag This package contains interfaces forBagMultimap.org.eclipse.collections.api.multimap.list This package contains interfaces forListMultimap.org.eclipse.collections.api.multimap.ordered org.eclipse.collections.api.multimap.set This package contains interfaces forSetMultimap.org.eclipse.collections.api.multimap.sortedbag This package contains interfaces forSortedBagMultimap.org.eclipse.collections.api.multimap.sortedset This package contains interfaces forSortedSetMultimap.org.eclipse.collections.api.ordered org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.api.stack This package contains interfaces for stack API. -
-
Uses of Predicate2 in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type Predicate2 Modifier and Type Method Description <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.<P> Optional<T>RichIterable. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)Returns the first element that evaluates to true for the specified predicate2 and parameter as an Optional.<P> 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 Predicate2 Modifier and Type Method Description <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)<P> PartitionImmutableBagIterable<T>ImmutableBagIterable. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableBag<T>MutableBag. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableBagIterable<T>MutableBagIterable. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> Bag<T>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)<P> Bag<T>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 Predicate2 Modifier and Type Method Description <P> PartitionImmutableSortedBag<T>ImmutableSortedBag. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableSortedBag<T>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)<P> SortedBag<T>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)<P> SortedBag<T>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 Predicate2 Modifier and Type Method Description <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<K,V>BiMap. reject(Predicate2<? super K,? super V> predicate)ImmutableBiMap<K,V>ImmutableBiMap. reject(Predicate2<? super K,? super V> predicate)MutableBiMap<K,V>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<K,V>BiMap. select(Predicate2<? super K,? super V> predicate)ImmutableBiMap<K,V>ImmutableBiMap. select(Predicate2<? super K,? super V> predicate)MutableBiMap<K,V>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 Predicate2 Modifier and Type Method Description <P> PartitionImmutableCollection<T>ImmutableCollection. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableCollection<T>MutableCollection. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)Filters a collection into a PartitionIterable based on the evaluation of the predicate.<P> 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.since 6.0 useRichIterable.partitionWith(Predicate2, Object)instead.<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 Predicate2 Modifier and Type Method Description <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 Predicate2 Modifier and Type Method Description Pair<K,V>MapIterable. detect(Predicate2<? super K,? super V> predicate)Return the first key and value of the map for which the predicate evaluates to true when they are given as arguments.Optional<Pair<K,V>>MapIterable. detectOptional(Predicate2<? super K,? super V> predicate)Return the first key and value of the map as an Optional for which the predicate evaluates to true when they are given as arguments.<P> 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<K,V>ImmutableMap. reject(Predicate2<? super K,? super V> predicate)ImmutableMapIterable<K,V>ImmutableMapIterable. reject(Predicate2<? super K,? super V> predicate)ImmutableOrderedMap<K,V>ImmutableOrderedMap. reject(Predicate2<? super K,? super V> predicate)MapIterable<K,V>MapIterable. reject(Predicate2<? super K,? super V> predicate)For each key and value of the map the predicate is evaluated, if the result of the evaluation is false, that key and value are returned in a new map.MutableMap<K,V>MutableMap. reject(Predicate2<? super K,? super V> predicate)MutableMapIterable<K,V>MutableMapIterable. reject(Predicate2<? super K,? super V> predicate)MutableOrderedMap<K,V>MutableOrderedMap. reject(Predicate2<? super K,? super V> predicate)OrderedMap<K,V>OrderedMap. reject(Predicate2<? super K,? super V> predicate)UnsortedMapIterable<K,V>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)<P> Bag<V>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<K,V>ImmutableMap. select(Predicate2<? super K,? super V> predicate)ImmutableMapIterable<K,V>ImmutableMapIterable. select(Predicate2<? super K,? super V> predicate)ImmutableOrderedMap<K,V>ImmutableOrderedMap. select(Predicate2<? super K,? super V> predicate)MapIterable<K,V>MapIterable. select(Predicate2<? super K,? super V> predicate)For each key and value of the map the predicate is evaluated, if the result of the evaluation is true, that key and value are returned in a new map.MutableMap<K,V>MutableMap. select(Predicate2<? super K,? super V> predicate)MutableMapIterable<K,V>MutableMapIterable. select(Predicate2<? super K,? super V> predicate)MutableOrderedMap<K,V>MutableOrderedMap. select(Predicate2<? super K,? super V> predicate)OrderedMap<K,V>OrderedMap. select(Predicate2<? super K,? super V> predicate)UnsortedMapIterable<K,V>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)<P> Bag<V>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 Predicate2 Modifier and Type Method Description <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)<P> Bag<V>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)<P> Bag<V>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 Predicate2 Modifier and Type Method Description <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<K,V>ImmutableSortedMap. reject(Predicate2<? super K,? super V> predicate)MutableSortedMap<K,V>MutableSortedMap. reject(Predicate2<? super K,? super V> predicate)SortedMapIterable<K,V>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<K,V>ImmutableSortedMap. select(Predicate2<? super K,? super V> predicate)MutableSortedMap<K,V>MutableSortedMap. select(Predicate2<? super K,? super V> predicate)SortedMapIterable<K,V>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 Predicate2 Modifier and Type Method Description ImmutableMultimap<K,V>ImmutableMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)Multimap<K,V>Multimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)Returns all elements of the source multimap that don't satisfy the predicate.<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<K,V>MutableMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableMultimap<K,V>ImmutableMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)Multimap<K,V>Multimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)Returns all elements of the source multimap that don't satisfy the predicate.<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<K,V>MutableMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableMultimap<K,V>ImmutableMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)Multimap<K,V>Multimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)Returns all elements of the source multimap that satisfies the predicate.<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<K,V>MutableMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableMultimap<K,V>ImmutableMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)Multimap<K,V>Multimap. selectKeysValues(Predicate2<? super K,? super V> predicate)Returns all elements of the source multimap that satisfies the predicate.<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<K,V>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 Predicate2 Modifier and Type Method Description BagMultimap<K,V>BagMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableBagIterableMultimap<K,V>ImmutableBagIterableMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableBagMultimap<K,V>ImmutableBagMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableBagIterableMultimap<K,V>MutableBagIterableMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableBagMultimap<K,V>MutableBagMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)UnsortedBagMultimap<K,V>UnsortedBagMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)BagMultimap<K,V>BagMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableBagIterableMultimap<K,V>ImmutableBagIterableMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableBagMultimap<K,V>ImmutableBagMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)MutableBagIterableMultimap<K,V>MutableBagIterableMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)MutableBagMultimap<K,V>MutableBagMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)UnsortedBagMultimap<K,V>UnsortedBagMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)BagMultimap<K,V>BagMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableBagIterableMultimap<K,V>ImmutableBagIterableMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableBagMultimap<K,V>ImmutableBagMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableBagIterableMultimap<K,V>MutableBagIterableMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableBagMultimap<K,V>MutableBagMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)UnsortedBagMultimap<K,V>UnsortedBagMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)BagMultimap<K,V>BagMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableBagIterableMultimap<K,V>ImmutableBagIterableMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableBagMultimap<K,V>ImmutableBagMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)MutableBagIterableMultimap<K,V>MutableBagIterableMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)MutableBagMultimap<K,V>MutableBagMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)UnsortedBagMultimap<K,V>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 Predicate2 Modifier and Type Method Description ImmutableListMultimap<K,V>ImmutableListMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ListMultimap<K,V>ListMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableListMultimap<K,V>MutableListMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableListMultimap<K,V>ImmutableListMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)ListMultimap<K,V>ListMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)MutableListMultimap<K,V>MutableListMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableListMultimap<K,V>ImmutableListMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ListMultimap<K,V>ListMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableListMultimap<K,V>MutableListMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableListMultimap<K,V>ImmutableListMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)ListMultimap<K,V>ListMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)MutableListMultimap<K,V>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 Predicate2 Modifier and Type Method Description OrderedIterableMultimap<K,V>OrderedIterableMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ReversibleIterableMultimap<K,V>ReversibleIterableMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)SortedIterableMultimap<K,V>SortedIterableMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)OrderedIterableMultimap<K,V>OrderedIterableMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)ReversibleIterableMultimap<K,V>ReversibleIterableMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)SortedIterableMultimap<K,V>SortedIterableMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)OrderedIterableMultimap<K,V>OrderedIterableMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ReversibleIterableMultimap<K,V>ReversibleIterableMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)SortedIterableMultimap<K,V>SortedIterableMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)OrderedIterableMultimap<K,V>OrderedIterableMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)ReversibleIterableMultimap<K,V>ReversibleIterableMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)SortedIterableMultimap<K,V>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 Predicate2 Modifier and Type Method Description ImmutableSetIterableMultimap<K,V>ImmutableSetIterableMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableSetMultimap<K,V>ImmutableSetMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableSetIterableMultimap<K,V>MutableSetIterableMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableSetMultimap<K,V>MutableSetMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)SetMultimap<K,V>SetMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)UnsortedSetMultimap<K,V>UnsortedSetMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableSetIterableMultimap<K,V>ImmutableSetIterableMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableSetMultimap<K,V>ImmutableSetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)MutableSetIterableMultimap<K,V>MutableSetIterableMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)MutableSetMultimap<K,V>MutableSetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)SetMultimap<K,V>SetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)UnsortedSetMultimap<K,V>UnsortedSetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableSetIterableMultimap<K,V>ImmutableSetIterableMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableSetMultimap<K,V>ImmutableSetMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableSetIterableMultimap<K,V>MutableSetIterableMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableSetMultimap<K,V>MutableSetMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)SetMultimap<K,V>SetMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)UnsortedSetMultimap<K,V>UnsortedSetMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableSetIterableMultimap<K,V>ImmutableSetIterableMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableSetMultimap<K,V>ImmutableSetMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)MutableSetIterableMultimap<K,V>MutableSetIterableMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)MutableSetMultimap<K,V>MutableSetMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)SetMultimap<K,V>SetMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)UnsortedSetMultimap<K,V>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 Predicate2 Modifier and Type Method Description ImmutableSortedBagMultimap<K,V>ImmutableSortedBagMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableSortedBagMultimap<K,V>MutableSortedBagMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)SortedBagMultimap<K,V>SortedBagMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableSortedBagMultimap<K,V>ImmutableSortedBagMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)MutableSortedBagMultimap<K,V>MutableSortedBagMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)SortedBagMultimap<K,V>SortedBagMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableSortedBagMultimap<K,V>ImmutableSortedBagMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableSortedBagMultimap<K,V>MutableSortedBagMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)SortedBagMultimap<K,V>SortedBagMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableSortedBagMultimap<K,V>ImmutableSortedBagMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)MutableSortedBagMultimap<K,V>MutableSortedBagMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)SortedBagMultimap<K,V>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 Predicate2 Modifier and Type Method Description ImmutableSortedSetMultimap<K,V>ImmutableSortedSetMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableSortedSetMultimap<K,V>MutableSortedSetMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)SortedSetMultimap<K,V>SortedSetMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableSortedSetMultimap<K,V>ImmutableSortedSetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)MutableSortedSetMultimap<K,V>MutableSortedSetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)SortedSetMultimap<K,V>SortedSetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableSortedSetMultimap<K,V>ImmutableSortedSetMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableSortedSetMultimap<K,V>MutableSortedSetMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)SortedSetMultimap<K,V>SortedSetMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableSortedSetMultimap<K,V>ImmutableSortedSetMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)MutableSortedSetMultimap<K,V>MutableSortedSetMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)SortedSetMultimap<K,V>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 Predicate2 Modifier and Type Method Description <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.<P> PartitionOrderedIterable<T>OrderedIterable. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionReversibleIterable<T>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 Predicate2 Modifier and Type Method Description <P> PartitionImmutableSet<T>ImmutableSet. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionImmutableSetIterable<T>ImmutableSetIterable. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableSet<T>MutableSet. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableSetIterable<T>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)<P> ParallelUnsortedSetIterable<T>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)<P> ParallelUnsortedSetIterable<T>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 Predicate2 Modifier and Type Method Description <P> PartitionImmutableSortedSet<T>ImmutableSortedSet. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableSortedSet<T>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)<P> ParallelSortedSetIterable<T>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)<P> ParallelSortedSetIterable<T>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 Predicate2 Modifier and Type Method Description <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)
-