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.org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bag org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBaginterface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBaginterface.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.immutable org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMapinterface.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction,Predicate,SerializableComparatorandProcedure.org.eclipse.collections.impl.block.predicate This package contains implementations ofPredicateandPredicate2.org.eclipse.collections.impl.block.predicate.checked This package contains abstract implementations ofPredicateandPredicate2.org.eclipse.collections.impl.block.procedure This package contains implementations ofProcedureandProcedure2.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollectioninterface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterableinterface.org.eclipse.collections.impl.lazy.parallel org.eclipse.collections.impl.lazy.parallel.bag org.eclipse.collections.impl.lazy.parallel.list org.eclipse.collections.impl.lazy.parallel.set org.eclipse.collections.impl.lazy.parallel.set.sorted org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.fixed This package contains implementations of theFixedSizeListinterface.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableListinterface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableListinterface.org.eclipse.collections.impl.map This package contains implementations of theMapIterableinterface.org.eclipse.collections.impl.map.fixed This package contains implementations of theFixedSizeMapinterface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMapinterface.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMapinterface.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.immutable org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMapinterface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMapinterface.org.eclipse.collections.impl.map.strategy.immutable This package contains immutable map implementations backed by hashtables that rely onHashingStrategys provided by the developer to compute the hashCode and equals for the objects stored in the map.org.eclipse.collections.impl.map.strategy.mutable This package contains mutable map implementations backed by hashtables that rely onHashingStrategys provided by the developer to compute the hashCode and equals for the objects stored in the map.org.eclipse.collections.impl.multimap This package contains implementations of theMultimapinterface.org.eclipse.collections.impl.multimap.bag This package contains implementations of theBagMultimapinterface.org.eclipse.collections.impl.multimap.bag.sorted org.eclipse.collections.impl.multimap.bag.sorted.immutable org.eclipse.collections.impl.multimap.bag.sorted.mutable org.eclipse.collections.impl.multimap.bag.strategy org.eclipse.collections.impl.multimap.list This package contains implementations of theListMultimapinterface.org.eclipse.collections.impl.multimap.set This package contains implementations of theSetMultimapinterface.org.eclipse.collections.impl.multimap.set.sorted This package contains implementations of theSortedSetMultimapinterface.org.eclipse.collections.impl.multimap.set.strategy This package contains implementations of theSetMultimapinterface which use a set with user-definedHashingStrategyas their underlying store for the multiple values of a given key.org.eclipse.collections.impl.partition.stack This package contains implementations of thePartitionStackinterface.org.eclipse.collections.impl.set org.eclipse.collections.impl.set.fixed This package contains implementations ofFixedSizeSet.org.eclipse.collections.impl.set.immutable This package contains the implementations ofImmutableSet.org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet.org.eclipse.collections.impl.set.strategy.mutable This package contains implementations of sets with user definedHashingStrategys.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStackinterface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStackinterface.org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal 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 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> java.util.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 java.util.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 java.util.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.java.util.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) -
Uses of Predicate2 in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with parameters of type Predicate2 Modifier and Type Method Description <P> booleanAbstractRichIterable. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanUnmodifiableRichIterable. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractRichIterable. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanUnmodifiableRichIterable. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> intAbstractRichIterable. countWith(Predicate2<? super T,? super P> predicate, P parameter)<P> intUnmodifiableRichIterable. countWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TAbstractRichIterable. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TUnmodifiableRichIterable. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TAbstractRichIterable. detectWithIfNone(Predicate2<? super T,? super P> predicate, P parameter, Function0<? extends T> function)<P> TUnmodifiableRichIterable. detectWithIfNone(Predicate2<? super T,? super P> predicate, P parameter, Function0<? extends T> function)<P> java.util.Optional<T>AbstractRichIterable. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)<P> java.util.Optional<T>UnmodifiableRichIterable. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractRichIterable. noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanUnmodifiableRichIterable. 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 java.util.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 java.util.Collection<T>>
RUnmodifiableRichIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)<P,R extends java.util.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 java.util.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 Predicate2 Modifier and Type Method Description <P,R extends java.util.Collection<T>>
RAbstractBag. rejectWith(Predicate2<? super T,? super P> predicate, P parameter, R target)<P,R extends java.util.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 Predicate2 Modifier and Type Method Description <P> booleanImmutableArrayBag. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanImmutableEmptyBag. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanImmutableHashBag. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanImmutableArrayBag. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanImmutableEmptyBag. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanImmutableHashBag. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> intImmutableEmptyBag. countWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TImmutableArrayBag. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TImmutableEmptyBag. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TImmutableHashBag. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TImmutableEmptyBag. detectWithIfNone(Predicate2<? super T,? super P> predicate, P parameter, Function0<? extends T> function)<P> java.util.Optional<T>ImmutableArrayBag. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)<P> java.util.Optional<T>ImmutableEmptyBag. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)<P> java.util.Optional<T>ImmutableHashBag. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanImmutableArrayBag. noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanImmutableEmptyBag. noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanImmutableHashBag. noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionImmutableBag<T>AbstractImmutableBag. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionImmutableBag<T>ImmutableEmptyBag. 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>ImmutableEmptyBag. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P,R extends java.util.Collection<T>>
RImmutableSingletonBag. rejectWith(Predicate2<? super T,? super P> predicate, P parameter, R target)<P> ImmutableBag<T>AbstractImmutableBag. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ImmutableBag<T>ImmutableEmptyBag. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P,R extends java.util.Collection<T>>
RImmutableSingletonBag. selectWith(Predicate2<? super T,? super P> predicate, P parameter, R target) -
Uses of Predicate2 in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable with parameters of type Predicate2 Modifier and Type Method Description <P> booleanAbstractMutableBagIterable. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractMutableBagIterable. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TAbstractMutableBagIterable. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TAbstractMutableBagIterable. detectWithIfNone(Predicate2<? super T,? super P> predicate, P parameter, Function0<? extends T> function)<P> java.util.Optional<T>AbstractMutableBagIterable. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractMutableBagIterable. 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>MultiReaderHashBag.UntouchableMutableBag. 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>MultiReaderHashBag.UntouchableMutableBag. 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> booleanAbstractHashBag. 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>MultiReaderHashBag.UntouchableMutableBag. 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.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable with parameters of type Predicate2 Modifier and Type Method Description <P> booleanImmutableSortedBagImpl. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanImmutableSortedBagImpl. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<S> booleanImmutableEmptySortedBag. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<S> booleanImmutableSortedBagImpl. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<P> booleanImmutableSortedBagImpl. noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionImmutableSortedBag<T>AbstractImmutableSortedBag. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ImmutableSortedBag<T>AbstractImmutableSortedBag. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ImmutableSortedBag<T>ImmutableEmptySortedBag. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ImmutableSortedBag<T>AbstractImmutableSortedBag. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ImmutableSortedBag<T>ImmutableEmptySortedBag. 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 Predicate2 Modifier and Type Method Description <S> booleanSynchronizedSortedBag. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<S> booleanTreeBag. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<S> booleanUnmodifiableSortedBag. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<P> PartitionMutableSortedBag<T>AbstractMutableSortedBag. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableSortedBag<T>SynchronizedSortedBag. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableSortedBag<T>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> booleanTreeBag. 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 Predicate2 Modifier and Type Method Description <P> booleanAbstractBiMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanAbstractBiMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intAbstractBiMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)Pair<K,V>AbstractBiMap. detect(Predicate2<? super K,? super V> predicate)java.util.Optional<Pair<K,V>>AbstractBiMap. detectOptional(Predicate2<? super K,? super V> predicate)<P> VAbstractBiMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VAbstractBiMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> java.util.Optional<V>AbstractBiMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanAbstractBiMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RAbstractBiMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection)<P,R extends java.util.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 Predicate2 Modifier and Type Method Description <P> PartitionImmutableSet<V>AbstractImmutableBiMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)ImmutableBiMap<K,V>AbstractImmutableBiMap. reject(Predicate2<? super K,? super V> predicate)<P> ImmutableSet<V>AbstractImmutableBiMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)ImmutableBiMap<K,V>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 Predicate2 Modifier and Type Method Description <P> booleanUnmodifiableBiMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableBiMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intUnmodifiableBiMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)Pair<K,V>UnmodifiableBiMap. detect(Predicate2<? super K,? super V> predicate)java.util.Optional<Pair<K,V>>UnmodifiableBiMap. detectOptional(Predicate2<? super K,? super V> predicate)<P> VUnmodifiableBiMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VUnmodifiableBiMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> java.util.Optional<V>UnmodifiableBiMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableBiMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionMutableSet<V>AbstractMutableBiMap. partitionWith(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)HashBiMap<K,V>AbstractMutableBiMap. reject(Predicate2<? super K,? super V> predicate)MutableBiMap<K,V>SynchronizedBiMap. reject(Predicate2<? super K,? super V> predicate)MutableBiMap<K,V>UnmodifiableBiMap. reject(Predicate2<? super K,? super V> predicate)<P> MutableSet<V>AbstractMutableBiMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<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 java.util.Collection<V>>
RUnmodifiableBiMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection)booleanUnmodifiableBiMap. removeIf(Predicate2<? super K,? super V> predicate)HashBiMap<K,V>AbstractMutableBiMap. select(Predicate2<? super K,? super V> predicate)MutableBiMap<K,V>SynchronizedBiMap. select(Predicate2<? super K,? super V> predicate)MutableBiMap<K,V>UnmodifiableBiMap. select(Predicate2<? super K,? super V> predicate)<P> MutableSet<V>AbstractMutableBiMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<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 java.util.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 Predicate2 Modifier and Type Class Description classPredicates2<T,P>Predicates2 is a static version of Predicates.private static classPredicates2.AlwaysFalseprivate static classPredicates2.AlwaysTrueprivate static classPredicates2.And<T,P>private static classPredicates2.AttributePredicates2<T,P>private static classPredicates2.Equalprivate static classPredicates2.GreaterThan<T extends java.lang.Comparable<T>>private static classPredicates2.GreaterThanOrEqual<T extends java.lang.Comparable<T>>private static classPredicates2.Inprivate static classPredicates2.IsIdenticalprivate static classPredicates2.IsInstanceOfprivate static classPredicates2.IsNullprivate static classPredicates2.LessThan<T extends java.lang.Comparable<T>>private static classPredicates2.LessThanOrEqual<T extends java.lang.Comparable<T>>private static classPredicates2.Not<T,P>private static classPredicates2.NotEqualprivate static classPredicates2.NotIdentiticalprivate static classPredicates2.NotInprivate static classPredicates2.NotInstanceOfprivate static classPredicates2.NotNullprivate static classPredicates2.Or<T,P>private static classPredicates2.ThrowingPredicate2Adapter<T,P>private static classStringPredicates2.ContainsStringprivate static classStringPredicates2.EndsWithprivate static classStringPredicates2.EqualsIgnoreCaseprivate static classStringPredicates2.MatchesRegexprivate static classStringPredicates2.NotContainsStringprivate static classStringPredicates2.NotEndsWithprivate static classStringPredicates2.NotEqualsIgnoreCaseprivate static classStringPredicates2.NotStartsWithprivate static classStringPredicates2.StartsWithFields in org.eclipse.collections.impl.block.factory declared as Predicate2 Modifier and Type Field Description private Predicate2<? super T,? super P>Predicates2.And. leftprivate Predicate2<? super T,? super P>Predicates2.Or. leftprivate Predicate2<? super T,? super P>Predicates.BindPredicate2. predicateprivate Predicate2<? super P,? super P>Predicates2.AttributePredicates2. predicateprivate Predicate2<T,P>Predicates2.Not. predicateprivate Predicate2<? super T,? super P>Predicates2.And. rightprivate Predicate2<? super T,? super P>Predicates2.Or. rightMethods in org.eclipse.collections.impl.block.factory that return Predicate2 Modifier and Type Method Description static <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 java.lang.Throwable,? extends java.lang.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 Predicate2 Modifier and Type Method Description Predicates2<T,P>Predicates2. 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<T,P>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)Constructors in org.eclipse.collections.impl.block.factory with parameters of type Predicate2 Constructor Description And(Predicate2<? super T,? super P> one, Predicate2<? super T,? super P> two)AttributePredicates2(Function<? super T,? extends P> function, Predicate2<? super P,? super P> predicate)BindPredicate2(Predicate2<? super T,? super P> predicate, P parameter)Not(Predicate2<T,P> predicate)Or(Predicate2<? super T,? super P> one, Predicate2<? super T,? super P> two) -
Uses of Predicate2 in org.eclipse.collections.impl.block.predicate
Classes in org.eclipse.collections.impl.block.predicate that implement Predicate2 Modifier and Type Class Description classMapEntryPredicate<T1,T2>classPairPredicate<T1,T2> -
Uses of Predicate2 in org.eclipse.collections.impl.block.predicate.checked
Classes in org.eclipse.collections.impl.block.predicate.checked that implement Predicate2 Modifier and Type Class Description classCheckedPredicate2<T,P> -
Uses of Predicate2 in org.eclipse.collections.impl.block.procedure
Fields in org.eclipse.collections.impl.block.procedure declared as Predicate2 Modifier and Type Field Description private Predicate2<? super T,? super P>PartitionPredicate2Procedure. predicateConstructors in org.eclipse.collections.impl.block.procedure with parameters of type Predicate2 Constructor Description PartitionPredicate2Procedure(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 Predicate2 Modifier and Type Method Description <P> booleanAbstractSynchronizedRichIterable. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractSynchronizedRichIterable. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> intAbstractSynchronizedRichIterable. countWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TAbstractSynchronizedRichIterable. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TAbstractSynchronizedRichIterable. detectWithIfNone(Predicate2<? super T,? super P> predicate, P parameter, Function0<? extends T> function)<P> java.util.Optional<T>AbstractSynchronizedRichIterable. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractSynchronizedRichIterable. 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 java.util.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 java.util.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 Predicate2 Modifier and Type Method Description <P> booleanAbstractCollectionAdapter. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractMultiReaderMutableCollection. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractMultiReaderMutableCollection.UntouchableMutableCollection. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractUnmodifiableMutableCollection. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractCollectionAdapter. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractMultiReaderMutableCollection. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractMultiReaderMutableCollection.UntouchableMutableCollection. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractUnmodifiableMutableCollection. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> intAbstractCollectionAdapter. countWith(Predicate2<? super T,? super P> predicate, P parameter)<P> intAbstractMultiReaderMutableCollection. countWith(Predicate2<? super T,? super P> predicate, P parameter)<P> intAbstractMultiReaderMutableCollection.UntouchableMutableCollection. countWith(Predicate2<? super T,? super P> predicate, P parameter)<P> intAbstractUnmodifiableMutableCollection. countWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TAbstractCollectionAdapter. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TAbstractMultiReaderMutableCollection. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TAbstractMultiReaderMutableCollection.UntouchableMutableCollection. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TAbstractUnmodifiableMutableCollection. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TAbstractCollectionAdapter. detectWithIfNone(Predicate2<? super T,? super P> predicate, P parameter, Function0<? extends T> function)<P> TAbstractMultiReaderMutableCollection. detectWithIfNone(Predicate2<? super T,? super P> predicate, P parameter, Function0<? extends T> function)<P> TAbstractMultiReaderMutableCollection.UntouchableMutableCollection. detectWithIfNone(Predicate2<? super T,? super P> predicate, P parameter, Function0<? extends T> function)<P> TAbstractUnmodifiableMutableCollection. detectWithIfNone(Predicate2<? super T,? super P> predicate, P parameter, Function0<? extends T> function)<P> java.util.Optional<T>AbstractCollectionAdapter. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)<P> java.util.Optional<T>AbstractMultiReaderMutableCollection. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)<P> java.util.Optional<T>AbstractMultiReaderMutableCollection.UntouchableMutableCollection. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)<P> java.util.Optional<T>AbstractUnmodifiableMutableCollection. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractCollectionAdapter. noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractMultiReaderMutableCollection. noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractMultiReaderMutableCollection.UntouchableMutableCollection. noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractUnmodifiableMutableCollection. noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableCollection<T>AbstractCollectionAdapter. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableCollection<T>AbstractSynchronizedMutableCollection. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableCollection<T>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 java.util.Collection<T>>
RAbstractCollectionAdapter. rejectWith(Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)<P,R extends java.util.Collection<T>>
RAbstractMultiReaderMutableCollection. rejectWith(Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)<P,R extends java.util.Collection<T>>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. 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 java.util.Collection<T>>
RAbstractUnmodifiableMutableCollection. rejectWith(Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)<P> booleanAbstractCollectionAdapter. removeIfWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractMultiReaderMutableCollection. removeIfWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractMultiReaderMutableCollection.UntouchableMutableCollection. removeIfWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractMutableCollection. removeIfWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractSynchronizedMutableCollection. removeIfWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractUnmodifiableMutableCollection. 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>>AbstractMultiReaderMutableCollection.UntouchableMutableCollection. 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 java.util.Collection<T>>
RAbstractCollectionAdapter. selectWith(Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)<P,R extends java.util.Collection<T>>
RAbstractMultiReaderMutableCollection. selectWith(Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)<P,R extends java.util.Collection<T>>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. 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 java.util.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 Predicate2 Modifier and Type Method Description static <T,P,R extends PartitionMutableCollection<T>>
java.util.stream.Collector<T,?,R>Collectors2. partitionWith(Predicate2<? super T,? super P> predicate, P parameter, java.util.function.Supplier<R> supplier)Returns all elements of the stream split into a PartitionMutableCollection after evaluating the predicate.static <T,P,R extends java.util.Collection<T>>
java.util.stream.Collector<T,?,R>Collectors2. rejectWith(Predicate2<? super T,? super P> predicate, P parameter, java.util.function.Supplier<R> supplier)Returns all elements of the stream that return false when evaluating the predicate with the parameter.static <T,P,R extends java.util.Collection<T>>
java.util.stream.Collector<T,?,R>Collectors2. selectWith(Predicate2<? super T,? super P> predicate, P parameter, java.util.function.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 Predicate2 Modifier and Type Method Description <P> booleanFlatCollectIterable. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanLazyIterableAdapter. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanFlatCollectIterable. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanLazyIterableAdapter. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TLazyIterableAdapter. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> java.util.Optional<T>LazyIterableAdapter. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanFlatCollectIterable. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanLazyIterableAdapter. 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 Predicate2 Modifier and Type Method Description <P> booleanAbstractMultiReaderParallelIterable. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractParallelIterable. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractSynchronizedParallelIterable. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanNonParallelIterable. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractMultiReaderParallelIterable. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractParallelIterable. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractSynchronizedParallelIterable. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanNonParallelIterable. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> intAbstractMultiReaderParallelIterable. countWith(Predicate2<? super T,? super P> predicate, P parameter)<P> intAbstractParallelIterable. countWith(Predicate2<? super T,? super P> predicate, P parameter)<P> intAbstractSynchronizedParallelIterable. countWith(Predicate2<? super T,? super P> predicate, P parameter)<P> intNonParallelIterable. countWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TAbstractMultiReaderParallelIterable. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TAbstractParallelIterable. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TAbstractSynchronizedParallelIterable. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TNonParallelIterable. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TAbstractMultiReaderParallelIterable. detectWithIfNone(Predicate2<? super T,? super P> predicate, P parameter, Function0<? extends T> function)<P> TAbstractParallelIterable. detectWithIfNone(Predicate2<? super T,? super P> predicate, P parameter, Function0<? extends T> function)<P> TAbstractSynchronizedParallelIterable. detectWithIfNone(Predicate2<? super T,? super P> predicate, P parameter, Function0<? extends T> function)<P> TNonParallelIterable. detectWithIfNone(Predicate2<? super T,? super P> predicate, P parameter, Function0<? extends T> function)<P> booleanAbstractMultiReaderParallelIterable. noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractParallelIterable. noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractSynchronizedParallelIterable. noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanNonParallelIterable. 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 Predicate2 Modifier and Type Method Description <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 Predicate2 Modifier and Type Method Description <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 Predicate2 Modifier and Type Method Description <P> ParallelUnsortedSetIterable<T>AbstractParallelUnsortedSetIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ParallelUnsortedSetIterable<T>MultiReaderParallelUnsortedSetIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ParallelUnsortedSetIterable<T>NonParallelUnsortedSetIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ParallelUnsortedSetIterable<T>SynchronizedParallelUnsortedSetIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ParallelUnsortedSetIterable<T>AbstractParallelUnsortedSetIterable. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ParallelUnsortedSetIterable<T>MultiReaderParallelUnsortedSetIterable. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ParallelUnsortedSetIterable<T>NonParallelUnsortedSetIterable. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ParallelUnsortedSetIterable<T>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 Predicate2 Modifier and Type Method Description <P> ParallelSortedSetIterable<T>AbstractParallelSortedSetIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ParallelSortedSetIterable<T>NonParallelSortedSetIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ParallelSortedSetIterable<T>SynchronizedParallelSortedSetIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ParallelSortedSetIterable<T>AbstractParallelSortedSetIterable. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ParallelSortedSetIterable<T>NonParallelSortedSetIterable. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ParallelSortedSetIterable<T>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 Predicate2 Modifier and Type Method Description <P> booleanFlatCollectBooleanToObjectIterable. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectByteToObjectIterable. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectCharToObjectIterable. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectDoubleToObjectIterable. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectFloatToObjectIterable. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectIntToObjectIterable. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectLongToObjectIterable. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectShortToObjectIterable. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectBooleanToObjectIterable. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectByteToObjectIterable. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectCharToObjectIterable. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectDoubleToObjectIterable. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectFloatToObjectIterable. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectIntToObjectIterable. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectLongToObjectIterable. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectShortToObjectIterable. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectBooleanToObjectIterable. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectByteToObjectIterable. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectCharToObjectIterable. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectDoubleToObjectIterable. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectFloatToObjectIterable. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectIntToObjectIterable. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectLongToObjectIterable. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFlatCollectShortToObjectIterable. 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 Predicate2 Modifier and Type Method Description <P> booleanAbstractArrayAdapter. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractArrayAdapter. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<S> booleanAbstractArrayAdapter. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<P> intAbstractArrayAdapter. countWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TAbstractArrayAdapter. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> java.util.Optional<T>AbstractArrayAdapter. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractArrayAdapter. noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P,R extends java.util.Collection<T>>
RAbstractArrayAdapter. rejectWith(Predicate2<? super T,? super P> predicate, P parameter, R target)<P> booleanAbstractArrayAdapter. removeIfWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractMemoryEfficientMutableList. removeIfWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractMemoryEfficientMutableList.SubList. 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 java.util.Collection<T>>
RAbstractArrayAdapter. selectWith(Predicate2<? super T,? super P> predicate, P parameter, R target) -
Uses of Predicate2 in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable with parameters of type Predicate2 Modifier and Type Method Description <P> booleanImmutableEmptyList. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanImmutableEmptyList. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<S> booleanAbstractImmutableList. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<S> booleanImmutableArrayList. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<P> intImmutableEmptyList. countWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TImmutableArrayList. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> java.util.Optional<T>ImmutableArrayList. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanImmutableEmptyList. noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionImmutableList<T>AbstractImmutableList. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionImmutableList<T>ImmutableArrayList. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ImmutableList<T>AbstractImmutableList. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P,R extends java.util.Collection<T>>
RAbstractImmutableList. rejectWith(Predicate2<? super T,? super P> predicate, P parameter, R target)<P> ImmutableList<T>ImmutableArrayList. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P,R extends java.util.Collection<T>>
RImmutableArrayList. rejectWith(Predicate2<? super T,? super P> predicate, P parameter, R target)<P,R extends java.util.Collection<T>>
RImmutableEmptyList. rejectWith(Predicate2<? super T,? super P> predicate, P parameter, R target)<P> ImmutableList<T>AbstractImmutableList. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P,R extends java.util.Collection<T>>
RAbstractImmutableList. selectWith(Predicate2<? super T,? super P> predicate, P parameter, R target)<P> ImmutableList<T>ImmutableArrayList. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P,R extends java.util.Collection<T>>
RImmutableArrayList. selectWith(Predicate2<? super T,? super P> predicate, P parameter, R target)<P,R extends java.util.Collection<T>>
RImmutableEmptyList. selectWith(Predicate2<? super T,? super P> predicate, P parameter, R target) -
Uses of Predicate2 in org.eclipse.collections.impl.list.mutable
Fields in org.eclipse.collections.impl.list.mutable declared as Predicate2 Modifier and Type Field Description private static Predicate2<FastList<?>,java.lang.Object>CompositeFastList. REMOVE_PREDICATEMethods in org.eclipse.collections.impl.list.mutable with parameters of type Predicate2 Modifier and Type Method Description <P> booleanAbstractMutableList. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanCompositeFastList. allSatisfyWith(Predicate2<? super E,? super P> predicate, P parameter)<P> booleanFastList. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractMutableList. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanCompositeFastList. anySatisfyWith(Predicate2<? super E,? super P> predicate, P parameter)<P> booleanFastList. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<S> booleanAbstractMutableList. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<S> booleanArrayListAdapter. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<S> booleanFastList. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<S> booleanListAdapter. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<S> booleanMultiReaderFastList. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<S> booleanMultiReaderFastList.UntouchableMutableList. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<S> booleanRandomAccessListAdapter. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<S> booleanSynchronizedMutableList. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<S> booleanUnmodifiableMutableList. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<P> intAbstractMutableList. countWith(Predicate2<? super T,? super P> predicate, P parameter)<P> intCompositeFastList. countWith(Predicate2<? super E,? super P> predicate, P parameter)<P> intFastList. countWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TAbstractMutableList. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TFastList. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> java.util.Optional<T>AbstractMutableList. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)<P> java.util.Optional<T>FastList. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractMutableList. noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanCompositeFastList. noneSatisfyWith(Predicate2<? super E,? super P> predicate, P parameter)<P> booleanFastList. 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>MultiReaderFastList.UntouchableMutableList. 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 java.util.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 java.util.Collection<E>>
RCompositeFastList. rejectWith(Predicate2<? super E,? super P> predicate, P parameter, R target)<P> FastList<T>FastList. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P,R extends java.util.Collection<T>>
RFastList. rejectWith(Predicate2<? super T,? super P> predicate, P parameter, R target)<P> MutableList<T>MultiReaderFastList.UntouchableMutableList. 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> booleanAbstractMutableList. removeIfWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanFastList. 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 java.util.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 java.util.Collection<E>>
RCompositeFastList. selectWith(Predicate2<? super E,? super P> predicate, P parameter, R target)<P> FastList<T>FastList. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P,R extends java.util.Collection<T>>
RFastList. selectWith(Predicate2<? super T,? super P> predicate, P parameter, R target)<P> MutableList<T>MultiReaderFastList.UntouchableMutableList. 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 Predicate2 Modifier and Type Method Description <P> booleanAbstractMapIterable. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanAbstractMapIterable. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)Pair<K,V>AbstractSynchronizedMapIterable. detect(Predicate2<? super K,? super V> predicate)java.util.Optional<Pair<K,V>>AbstractSynchronizedMapIterable. detectOptional(Predicate2<? super K,? super V> predicate)<P> VAbstractMapIterable. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VAbstractMapIterable. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> java.util.Optional<V>AbstractMapIterable. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanAbstractMapIterable. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> MutableCollection<V>AbstractSynchronizedMapIterable. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)booleanAbstractSynchronizedMapIterable. 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.fixed
Methods in org.eclipse.collections.impl.map.fixed with parameters of type Predicate2 Modifier and Type Method Description Pair<K,V>DoubletonMap. detect(Predicate2<? super K,? super V> predicate)Pair<K,V>EmptyMap. detect(Predicate2<? super K,? super V> predicate)Pair<K,V>SingletonMap. detect(Predicate2<? super K,? super V> predicate)Pair<K,V>TripletonMap. detect(Predicate2<? super K,? super V> predicate)private FixedSizeMap<K,V>DoubletonMap. filter(Predicate2<? super K,? super V> predicate)private FixedSizeMap<K,V>TripletonMap. filter(Predicate2<? super K,? super V> predicate)abstract FixedSizeMap<K,V>AbstractMemoryEfficientMutableMap. reject(Predicate2<? super K,? super V> predicate)FixedSizeMap<K,V>DoubletonMap. reject(Predicate2<? super K,? super V> predicate)FixedSizeMap<K,V>EmptyMap. reject(Predicate2<? super K,? super V> predicate)FixedSizeMap<K,V>SingletonMap. reject(Predicate2<? super K,? super V> predicate)FixedSizeMap<K,V>TripletonMap. reject(Predicate2<? super K,? super V> predicate)booleanAbstractMemoryEfficientMutableMap. removeIf(Predicate2<? super K,? super V> predicate)abstract FixedSizeMap<K,V>AbstractMemoryEfficientMutableMap. select(Predicate2<? super K,? super V> predicate)FixedSizeMap<K,V>DoubletonMap. select(Predicate2<? super K,? super V> predicate)FixedSizeMap<K,V>EmptyMap. select(Predicate2<? super K,? super V> predicate)FixedSizeMap<K,V>SingletonMap. select(Predicate2<? super K,? super V> predicate)FixedSizeMap<K,V>TripletonMap. select(Predicate2<? super K,? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable with parameters of type Predicate2 Modifier and Type Method Description Pair<K,V>AbstractImmutableMap. detect(Predicate2<? super K,? super V> predicate)Pair<K,V>ImmutableDoubletonMap. detect(Predicate2<? super K,? super V> predicate)Pair<K,V>ImmutableEmptyMap. detect(Predicate2<? super K,? super V> predicate)Pair<K,V>ImmutableQuadrupletonMap. detect(Predicate2<? super K,? super V> predicate)Pair<K,V>ImmutableSingletonMap. detect(Predicate2<? super K,? super V> predicate)Pair<K,V>ImmutableTripletonMap. detect(Predicate2<? super K,? super V> predicate)java.util.Optional<Pair<K,V>>AbstractImmutableMap. detectOptional(Predicate2<? super K,? super V> predicate)private ImmutableMap<K,V>ImmutableDoubletonMap. filter(Predicate2<? super K,? super V> predicate)private ImmutableMap<K,V>ImmutableQuadrupletonMap. filter(Predicate2<? super K,? super V> predicate)private ImmutableMap<K,V>ImmutableTripletonMap. filter(Predicate2<? super K,? super V> predicate)<P> PartitionImmutableBag<V>AbstractImmutableMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)ImmutableMap<K,V>AbstractImmutableMap. reject(Predicate2<? super K,? super V> predicate)ImmutableMap<K,V>ImmutableDoubletonMap. reject(Predicate2<? super K,? super V> predicate)ImmutableMap<K,V>ImmutableEmptyMap. reject(Predicate2<? super K,? super V> predicate)ImmutableMap<K,V>ImmutableQuadrupletonMap. reject(Predicate2<? super K,? super V> predicate)ImmutableMap<K,V>ImmutableSingletonMap. reject(Predicate2<? super K,? super V> predicate)ImmutableMap<K,V>ImmutableTripletonMap. reject(Predicate2<? super K,? super V> predicate)<P> ImmutableBag<V>AbstractImmutableMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)ImmutableMap<K,V>AbstractImmutableMap. select(Predicate2<? super K,? super V> predicate)ImmutableMap<K,V>ImmutableDoubletonMap. select(Predicate2<? super K,? super V> predicate)ImmutableMap<K,V>ImmutableEmptyMap. select(Predicate2<? super K,? super V> predicate)ImmutableMap<K,V>ImmutableQuadrupletonMap. select(Predicate2<? super K,? super V> predicate)ImmutableMap<K,V>ImmutableSingletonMap. select(Predicate2<? super K,? super V> predicate)ImmutableMap<K,V>ImmutableTripletonMap. 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.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type Predicate2 Modifier and Type Method Description <P> booleanImmutableByteObjectEmptyMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableByteObjectHashMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableByteObjectSingletonMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableCharObjectEmptyMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableCharObjectHashMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableCharObjectSingletonMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableDoubleObjectEmptyMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableDoubleObjectHashMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableDoubleObjectSingletonMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableFloatObjectEmptyMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableFloatObjectHashMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableFloatObjectSingletonMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableIntObjectEmptyMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableIntObjectHashMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableIntObjectSingletonMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableLongObjectEmptyMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableLongObjectHashMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableLongObjectSingletonMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableShortObjectEmptyMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableShortObjectHashMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableShortObjectSingletonMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableByteObjectEmptyMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableByteObjectHashMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableByteObjectSingletonMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableCharObjectEmptyMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableCharObjectHashMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableCharObjectSingletonMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableDoubleObjectEmptyMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableDoubleObjectHashMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableDoubleObjectSingletonMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableFloatObjectEmptyMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableFloatObjectHashMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableFloatObjectSingletonMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableIntObjectEmptyMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableIntObjectHashMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableIntObjectSingletonMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableLongObjectEmptyMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableLongObjectHashMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableLongObjectSingletonMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableShortObjectEmptyMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableShortObjectHashMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableShortObjectSingletonMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intImmutableByteObjectEmptyMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intImmutableByteObjectHashMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intImmutableByteObjectSingletonMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intImmutableCharObjectEmptyMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intImmutableCharObjectHashMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intImmutableCharObjectSingletonMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intImmutableDoubleObjectEmptyMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intImmutableDoubleObjectHashMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intImmutableDoubleObjectSingletonMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intImmutableFloatObjectEmptyMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intImmutableFloatObjectHashMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intImmutableFloatObjectSingletonMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intImmutableIntObjectEmptyMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intImmutableIntObjectHashMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intImmutableIntObjectSingletonMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intImmutableLongObjectEmptyMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intImmutableLongObjectHashMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intImmutableLongObjectSingletonMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intImmutableShortObjectEmptyMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intImmutableShortObjectHashMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intImmutableShortObjectSingletonMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableByteObjectEmptyMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableByteObjectHashMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableByteObjectSingletonMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableCharObjectEmptyMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableCharObjectHashMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableCharObjectSingletonMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableDoubleObjectEmptyMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableDoubleObjectHashMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableDoubleObjectSingletonMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableFloatObjectEmptyMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableFloatObjectHashMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableFloatObjectSingletonMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableIntObjectEmptyMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableIntObjectHashMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableIntObjectSingletonMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableLongObjectEmptyMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableLongObjectHashMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableLongObjectSingletonMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableShortObjectEmptyMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableShortObjectHashMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableShortObjectSingletonMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VImmutableByteObjectEmptyMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VImmutableByteObjectHashMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VImmutableByteObjectSingletonMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VImmutableCharObjectEmptyMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VImmutableCharObjectHashMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VImmutableCharObjectSingletonMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VImmutableDoubleObjectEmptyMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VImmutableDoubleObjectHashMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VImmutableDoubleObjectSingletonMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VImmutableFloatObjectEmptyMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VImmutableFloatObjectHashMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VImmutableFloatObjectSingletonMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VImmutableIntObjectEmptyMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VImmutableIntObjectHashMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VImmutableIntObjectSingletonMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VImmutableLongObjectEmptyMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VImmutableLongObjectHashMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VImmutableLongObjectSingletonMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VImmutableShortObjectEmptyMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VImmutableShortObjectHashMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VImmutableShortObjectSingletonMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> java.util.Optional<V>ImmutableByteObjectEmptyMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>ImmutableByteObjectHashMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>ImmutableByteObjectSingletonMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>ImmutableCharObjectEmptyMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>ImmutableCharObjectHashMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>ImmutableCharObjectSingletonMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>ImmutableDoubleObjectEmptyMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>ImmutableDoubleObjectHashMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>ImmutableDoubleObjectSingletonMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>ImmutableFloatObjectEmptyMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>ImmutableFloatObjectHashMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>ImmutableFloatObjectSingletonMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>ImmutableIntObjectEmptyMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>ImmutableIntObjectHashMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>ImmutableIntObjectSingletonMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>ImmutableLongObjectEmptyMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>ImmutableLongObjectHashMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>ImmutableLongObjectSingletonMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>ImmutableShortObjectEmptyMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>ImmutableShortObjectHashMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>ImmutableShortObjectSingletonMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableByteObjectEmptyMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableByteObjectHashMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableByteObjectSingletonMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableCharObjectEmptyMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableCharObjectHashMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableCharObjectSingletonMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableDoubleObjectEmptyMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableDoubleObjectHashMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableDoubleObjectSingletonMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableFloatObjectEmptyMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableFloatObjectHashMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableFloatObjectSingletonMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableIntObjectEmptyMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableIntObjectHashMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableIntObjectSingletonMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableLongObjectEmptyMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableLongObjectHashMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableLongObjectSingletonMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableShortObjectEmptyMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableShortObjectHashMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanImmutableShortObjectSingletonMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionImmutableBag<V>ImmutableByteObjectEmptyMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionImmutableBag<V>ImmutableByteObjectHashMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionImmutableBag<V>ImmutableByteObjectSingletonMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionImmutableBag<V>ImmutableCharObjectEmptyMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionImmutableBag<V>ImmutableCharObjectHashMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionImmutableBag<V>ImmutableCharObjectSingletonMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionImmutableBag<V>ImmutableDoubleObjectEmptyMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionImmutableBag<V>ImmutableDoubleObjectHashMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionImmutableBag<V>ImmutableDoubleObjectSingletonMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionImmutableBag<V>ImmutableFloatObjectEmptyMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionImmutableBag<V>ImmutableFloatObjectHashMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionImmutableBag<V>ImmutableFloatObjectSingletonMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionImmutableBag<V>ImmutableIntObjectEmptyMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionImmutableBag<V>ImmutableIntObjectHashMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionImmutableBag<V>ImmutableIntObjectSingletonMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionImmutableBag<V>ImmutableLongObjectEmptyMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionImmutableBag<V>ImmutableLongObjectHashMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionImmutableBag<V>ImmutableLongObjectSingletonMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionImmutableBag<V>ImmutableShortObjectEmptyMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionImmutableBag<V>ImmutableShortObjectHashMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionImmutableBag<V>ImmutableShortObjectSingletonMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableByteObjectEmptyMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableByteObjectEmptyMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableByteObjectHashMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableByteObjectHashMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableByteObjectSingletonMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableByteObjectSingletonMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection)<P> ImmutableBag<V>ImmutableCharObjectEmptyMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableCharObjectEmptyMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableCharObjectHashMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableCharObjectHashMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableCharObjectSingletonMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableCharObjectSingletonMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection)<P> ImmutableBag<V>ImmutableDoubleObjectEmptyMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableDoubleObjectEmptyMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableDoubleObjectHashMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableDoubleObjectHashMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableDoubleObjectSingletonMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableDoubleObjectSingletonMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection)<P> ImmutableBag<V>ImmutableFloatObjectEmptyMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableFloatObjectEmptyMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableFloatObjectHashMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableFloatObjectHashMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableFloatObjectSingletonMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableFloatObjectSingletonMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection)<P> ImmutableBag<V>ImmutableIntObjectEmptyMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableIntObjectEmptyMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableIntObjectHashMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableIntObjectHashMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableIntObjectSingletonMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableIntObjectSingletonMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection)<P> ImmutableBag<V>ImmutableLongObjectEmptyMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableLongObjectEmptyMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableLongObjectHashMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableLongObjectHashMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableLongObjectSingletonMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableLongObjectSingletonMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection)<P> ImmutableBag<V>ImmutableShortObjectEmptyMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableShortObjectEmptyMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableShortObjectHashMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableShortObjectHashMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableShortObjectSingletonMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableShortObjectSingletonMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection)<P> ImmutableBag<V>ImmutableByteObjectEmptyMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableByteObjectEmptyMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableByteObjectHashMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableByteObjectHashMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableByteObjectSingletonMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableByteObjectSingletonMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection)<P> ImmutableBag<V>ImmutableCharObjectEmptyMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableCharObjectEmptyMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableCharObjectHashMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableCharObjectHashMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableCharObjectSingletonMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableCharObjectSingletonMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection)<P> ImmutableBag<V>ImmutableDoubleObjectEmptyMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableDoubleObjectEmptyMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableDoubleObjectHashMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableDoubleObjectHashMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableDoubleObjectSingletonMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableDoubleObjectSingletonMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection)<P> ImmutableBag<V>ImmutableFloatObjectEmptyMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableFloatObjectEmptyMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableFloatObjectHashMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableFloatObjectHashMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableFloatObjectSingletonMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableFloatObjectSingletonMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection)<P> ImmutableBag<V>ImmutableIntObjectEmptyMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableIntObjectEmptyMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableIntObjectHashMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableIntObjectHashMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableIntObjectSingletonMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableIntObjectSingletonMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection)<P> ImmutableBag<V>ImmutableLongObjectEmptyMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableLongObjectEmptyMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableLongObjectHashMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableLongObjectHashMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableLongObjectSingletonMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableLongObjectSingletonMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection)<P> ImmutableBag<V>ImmutableShortObjectEmptyMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableShortObjectEmptyMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableShortObjectHashMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableShortObjectHashMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R target)<P> ImmutableBag<V>ImmutableShortObjectSingletonMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RImmutableShortObjectSingletonMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with parameters of type Predicate2 Modifier and Type Method Description <P> booleanUnifiedMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableMutableMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnifiedMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableMutableMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intUnmodifiableMutableMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)Pair<K,V>AbstractMutableMapIterable. detect(Predicate2<? super K,? super V> predicate)Pair<K,V>UnifiedMap. detect(Predicate2<? super K,? super V> predicate)Pair<K,V>UnmodifiableMutableMap. detect(Predicate2<? super K,? super V> predicate)java.util.Optional<Pair<K,V>>AbstractMutableMapIterable. detectOptional(Predicate2<? super K,? super V> predicate)java.util.Optional<Pair<K,V>>UnifiedMap. detectOptional(Predicate2<? super K,? super V> predicate)java.util.Optional<Pair<K,V>>UnmodifiableMutableMap. detectOptional(Predicate2<? super K,? super V> predicate)<P> VUnifiedMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VUnmodifiableMutableMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VUnifiedMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VUnmodifiableMutableMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> java.util.Optional<V>UnifiedMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>UnmodifiableMutableMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnifiedMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableMutableMap. 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 java.util.Collection<V>>
RUnmodifiableMutableMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection)booleanUnifiedMap. removeIf(Predicate2<? super K,? super V> predicate)booleanUnmodifiableMutableMap. 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 java.util.Collection<V>>
RUnmodifiableMutableMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection)private <P> booleanUnifiedMap. shortCircuitWith(Predicate2<? super V,? super P> predicate, P parameter, boolean expected, boolean onShortCircuit, boolean atEnd) -
Uses of Predicate2 in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type Predicate2 Modifier and Type Method Description <P> booleanByteObjectHashMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanCharObjectHashMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanDoubleObjectHashMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFloatObjectHashMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanIntObjectHashMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanLongObjectHashMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanShortObjectHashMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanSynchronizedByteObjectMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanSynchronizedCharObjectMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanSynchronizedDoubleObjectMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanSynchronizedFloatObjectMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanSynchronizedIntObjectMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanSynchronizedLongObjectMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanSynchronizedShortObjectMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableByteObjectMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableCharObjectMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableDoubleObjectMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableFloatObjectMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableIntObjectMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableLongObjectMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableShortObjectMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanByteObjectHashMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanCharObjectHashMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanDoubleObjectHashMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFloatObjectHashMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanIntObjectHashMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanLongObjectHashMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanShortObjectHashMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanSynchronizedByteObjectMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanSynchronizedCharObjectMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanSynchronizedDoubleObjectMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanSynchronizedFloatObjectMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanSynchronizedIntObjectMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanSynchronizedLongObjectMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanSynchronizedShortObjectMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableByteObjectMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableCharObjectMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableDoubleObjectMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableFloatObjectMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableIntObjectMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableLongObjectMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableShortObjectMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intByteObjectHashMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intCharObjectHashMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intDoubleObjectHashMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intFloatObjectHashMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intIntObjectHashMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intLongObjectHashMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intShortObjectHashMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intSynchronizedByteObjectMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intSynchronizedCharObjectMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intSynchronizedDoubleObjectMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intSynchronizedFloatObjectMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intSynchronizedIntObjectMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intSynchronizedLongObjectMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intSynchronizedShortObjectMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intUnmodifiableByteObjectMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intUnmodifiableCharObjectMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intUnmodifiableDoubleObjectMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intUnmodifiableFloatObjectMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intUnmodifiableIntObjectMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intUnmodifiableLongObjectMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> intUnmodifiableShortObjectMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VByteObjectHashMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VCharObjectHashMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VDoubleObjectHashMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VFloatObjectHashMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VIntObjectHashMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VLongObjectHashMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VShortObjectHashMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VSynchronizedByteObjectMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VSynchronizedCharObjectMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VSynchronizedDoubleObjectMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VSynchronizedFloatObjectMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VSynchronizedIntObjectMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VSynchronizedLongObjectMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VSynchronizedShortObjectMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VUnmodifiableByteObjectMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VUnmodifiableCharObjectMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VUnmodifiableDoubleObjectMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VUnmodifiableFloatObjectMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VUnmodifiableIntObjectMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VUnmodifiableLongObjectMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VUnmodifiableShortObjectMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VByteObjectHashMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VCharObjectHashMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VDoubleObjectHashMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VFloatObjectHashMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VIntObjectHashMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VLongObjectHashMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VShortObjectHashMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VSynchronizedByteObjectMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VSynchronizedCharObjectMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VSynchronizedDoubleObjectMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VSynchronizedFloatObjectMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VSynchronizedIntObjectMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VSynchronizedLongObjectMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VSynchronizedShortObjectMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VUnmodifiableByteObjectMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VUnmodifiableCharObjectMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VUnmodifiableDoubleObjectMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VUnmodifiableFloatObjectMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VUnmodifiableIntObjectMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VUnmodifiableLongObjectMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> VUnmodifiableShortObjectMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> java.util.Optional<V>ByteObjectHashMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>CharObjectHashMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>DoubleObjectHashMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>FloatObjectHashMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>IntObjectHashMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>LongObjectHashMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>ShortObjectHashMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>SynchronizedByteObjectMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>SynchronizedCharObjectMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>SynchronizedDoubleObjectMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>SynchronizedFloatObjectMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>SynchronizedIntObjectMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>SynchronizedLongObjectMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>SynchronizedShortObjectMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>UnmodifiableByteObjectMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>UnmodifiableCharObjectMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>UnmodifiableDoubleObjectMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>UnmodifiableFloatObjectMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>UnmodifiableIntObjectMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>UnmodifiableLongObjectMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> java.util.Optional<V>UnmodifiableShortObjectMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanByteObjectHashMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanCharObjectHashMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanDoubleObjectHashMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanFloatObjectHashMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanIntObjectHashMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanLongObjectHashMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanShortObjectHashMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanSynchronizedByteObjectMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanSynchronizedCharObjectMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanSynchronizedDoubleObjectMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanSynchronizedFloatObjectMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanSynchronizedIntObjectMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanSynchronizedLongObjectMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanSynchronizedShortObjectMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableByteObjectMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableCharObjectMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableDoubleObjectMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableFloatObjectMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableIntObjectMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableLongObjectMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableShortObjectMap. 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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.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 java.util.Collection<V>>
RUnmodifiableShortObjectMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.map.ordered.immutable
Methods in org.eclipse.collections.impl.map.ordered.immutable with parameters of type Predicate2 Modifier and Type Method Description <S> booleanImmutableOrderedMapAdapter. corresponds(OrderedIterable<S> other, Predicate2<? super V,? super S> predicate)Pair<K,V>ImmutableOrderedMapAdapter. detect(Predicate2<? super K,? super V> predicate)java.util.Optional<Pair<K,V>>ImmutableOrderedMapAdapter. detectOptional(Predicate2<? super K,? super V> predicate)<P> PartitionImmutableList<V>ImmutableOrderedMapAdapter. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)ImmutableOrderedMap<K,V>ImmutableOrderedMapAdapter. reject(Predicate2<? super K,? super V> predicate)<P> ImmutableList<V>ImmutableOrderedMapAdapter. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)ImmutableOrderedMap<K,V>ImmutableOrderedMapAdapter. select(Predicate2<? super K,? super V> predicate)<P> ImmutableList<V>ImmutableOrderedMapAdapter. selectWith(Predicate2<? super V,? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with parameters of type Predicate2 Modifier and Type Method Description <P> booleanUnmodifiableMutableOrderedMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableMutableOrderedMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<S> booleanOrderedMapAdapter. corresponds(OrderedIterable<S> other, Predicate2<? super V,? super S> predicate)<S> booleanUnmodifiableMutableOrderedMap. corresponds(OrderedIterable<S> other, Predicate2<? super V,? super S> predicate)<P> intUnmodifiableMutableOrderedMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)Pair<K,V>OrderedMapAdapter. detect(Predicate2<? super K,? super V> predicate)Pair<K,V>UnmodifiableMutableOrderedMap. detect(Predicate2<? super K,? super V> predicate)java.util.Optional<Pair<K,V>>OrderedMapAdapter. detectOptional(Predicate2<? super K,? super V> predicate)java.util.Optional<Pair<K,V>>UnmodifiableMutableOrderedMap. detectOptional(Predicate2<? super K,? super V> predicate)<P> VUnmodifiableMutableOrderedMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VUnmodifiableMutableOrderedMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> java.util.Optional<V>UnmodifiableMutableOrderedMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableMutableOrderedMap. 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)MutableOrderedMap<K,V>OrderedMapAdapter. reject(Predicate2<? super K,? super V> predicate)MutableOrderedMap<K,V>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 java.util.Collection<V>>
RUnmodifiableMutableOrderedMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection)booleanUnmodifiableMutableOrderedMap. removeIf(Predicate2<? super K,? super V> predicate)MutableOrderedMap<K,V>OrderedMapAdapter. select(Predicate2<? super K,? super V> predicate)MutableOrderedMap<K,V>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 java.util.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 Predicate2 Modifier and Type Method Description <S> booleanAbstractImmutableSortedMap. corresponds(OrderedIterable<S> other, Predicate2<? super V,? super S> predicate)Pair<K,V>AbstractImmutableSortedMap. detect(Predicate2<? super K,? super V> predicate)Pair<K,V>ImmutableEmptySortedMap. detect(Predicate2<? super K,? super V> predicate)java.util.Optional<Pair<K,V>>AbstractImmutableSortedMap. detectOptional(Predicate2<? super K,? super V> predicate)java.util.Optional<Pair<K,V>>ImmutableEmptySortedMap. detectOptional(Predicate2<? super K,? super V> predicate)<P> PartitionImmutableList<V>AbstractImmutableSortedMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)ImmutableSortedMap<K,V>AbstractImmutableSortedMap. reject(Predicate2<? super K,? super V> predicate)ImmutableSortedMap<K,V>ImmutableEmptySortedMap. reject(Predicate2<? super K,? super V> predicate)<P> ImmutableList<V>AbstractImmutableSortedMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)ImmutableSortedMap<K,V>AbstractImmutableSortedMap. select(Predicate2<? super K,? super V> predicate)ImmutableSortedMap<K,V>ImmutableEmptySortedMap. 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 Predicate2 Modifier and Type Method Description <P> booleanUnmodifiableTreeMap. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableTreeMap. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<S> booleanAbstractMutableSortedMap. corresponds(OrderedIterable<S> other, Predicate2<? super V,? super S> predicate)<S> booleanSynchronizedSortedMap. corresponds(OrderedIterable<S> other, Predicate2<? super V,? super S> predicate)<S> booleanUnmodifiableTreeMap. corresponds(OrderedIterable<S> other, Predicate2<? super V,? super S> predicate)<P> intUnmodifiableTreeMap. countWith(Predicate2<? super V,? super P> predicate, P parameter)Pair<K,V>UnmodifiableTreeMap. detect(Predicate2<? super K,? super V> predicate)java.util.Optional<Pair<K,V>>UnmodifiableTreeMap. detectOptional(Predicate2<? super K,? super V> predicate)<P> VUnmodifiableTreeMap. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VUnmodifiableTreeMap. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> java.util.Optional<V>UnmodifiableTreeMap. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnmodifiableTreeMap. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionMutableList<V>AbstractMutableSortedMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionMutableList<V>SynchronizedSortedMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionMutableList<V>UnmodifiableTreeMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)MutableSortedMap<K,V>AbstractMutableSortedMap. reject(Predicate2<? super K,? super V> predicate)MutableSortedMap<K,V>SynchronizedSortedMap. reject(Predicate2<? super K,? super V> predicate)MutableSortedMap<K,V>UnmodifiableTreeMap. reject(Predicate2<? super K,? super V> predicate)<P> MutableList<V>AbstractMutableSortedMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> MutableList<V>SynchronizedSortedMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> MutableList<V>UnmodifiableTreeMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RUnmodifiableTreeMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection)booleanUnmodifiableTreeMap. removeIf(Predicate2<? super K,? super V> predicate)MutableSortedMap<K,V>AbstractMutableSortedMap. select(Predicate2<? super K,? super V> predicate)MutableSortedMap<K,V>SynchronizedSortedMap. select(Predicate2<? super K,? super V> predicate)MutableSortedMap<K,V>UnmodifiableTreeMap. select(Predicate2<? super K,? super V> predicate)<P> MutableList<V>AbstractMutableSortedMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> MutableList<V>SynchronizedSortedMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> MutableList<V>UnmodifiableTreeMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P,R extends java.util.Collection<V>>
RUnmodifiableTreeMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.map.strategy.immutable
Methods in org.eclipse.collections.impl.map.strategy.immutable with parameters of type Predicate2 Modifier and Type Method Description Pair<K,V>ImmutableEmptyMapWithHashingStrategy. detect(Predicate2<? super K,? super V> predicate)ImmutableMap<K,V>ImmutableEmptyMapWithHashingStrategy. reject(Predicate2<? super K,? super V> predicate)ImmutableMap<K,V>ImmutableUnifiedMapWithHashingStrategy. reject(Predicate2<? super K,? super V> predicate)ImmutableMap<K,V>ImmutableEmptyMapWithHashingStrategy. select(Predicate2<? super K,? super V> predicate)ImmutableMap<K,V>ImmutableUnifiedMapWithHashingStrategy. select(Predicate2<? super K,? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.impl.map.strategy.mutable
Methods in org.eclipse.collections.impl.map.strategy.mutable with parameters of type Predicate2 Modifier and Type Method Description <P> booleanUnifiedMapWithHashingStrategy. allSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnifiedMapWithHashingStrategy. anySatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)Pair<K,V>UnifiedMapWithHashingStrategy. detect(Predicate2<? super K,? super V> predicate)java.util.Optional<Pair<K,V>>UnifiedMapWithHashingStrategy. detectOptional(Predicate2<? super K,? super V> predicate)<P> VUnifiedMapWithHashingStrategy. detectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> VUnifiedMapWithHashingStrategy. detectWithIfNone(Predicate2<? super V,? super P> predicate, P parameter, Function0<? extends V> function)<P> java.util.Optional<V>UnifiedMapWithHashingStrategy. detectWithOptional(Predicate2<? super V,? super P> predicate, P parameter)<P> booleanUnifiedMapWithHashingStrategy. noneSatisfyWith(Predicate2<? super V,? super P> predicate, P parameter)booleanUnifiedMapWithHashingStrategy. removeIf(Predicate2<? super K,? super V> predicate)private <P> booleanUnifiedMapWithHashingStrategy. shortCircuitWith(Predicate2<? super V,? super P> predicate, P parameter, boolean expected, boolean onShortCircuit, boolean atEnd) -
Uses of Predicate2 in org.eclipse.collections.impl.multimap
Methods in org.eclipse.collections.impl.multimap with parameters of type Predicate2 Modifier and Type Method Description <R extends MutableMultimap<K,V>>
RAbstractMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate, R target)<R extends MutableMultimap<K,V>>
RAbstractSynchronizedMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate, R target)<R extends MutableMultimap<K,V>>
RAbstractMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate, R target)<R extends MutableMultimap<K,V>>
RAbstractSynchronizedMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate, R target)<R extends MutableMultimap<K,V>>
RAbstractMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate, R target)<R extends MutableMultimap<K,V>>
RAbstractSynchronizedMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate, R target)<R extends MutableMultimap<K,V>>
RAbstractMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate, R target)<R extends MutableMultimap<K,V>>
RAbstractSynchronizedMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate, R target) -
Uses of Predicate2 in org.eclipse.collections.impl.multimap.bag
Methods in org.eclipse.collections.impl.multimap.bag with parameters of type Predicate2 Modifier and Type Method Description HashBagMultimap<K,V>HashBagMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableBagMultimap<K,V>ImmutableBagMultimapImpl. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MultiReaderHashBagMultimap<K,V>MultiReaderHashBagMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableBagMultimap<K,V>SynchronizedBagMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)HashBagMultimap<K,V>SynchronizedPutHashBagMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)TreeBagMultimap<K,V>TreeBagMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)Deprecated.HashBagMultimap<K,V>HashBagMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableBagMultimap<K,V>ImmutableBagMultimapImpl. rejectKeysValues(Predicate2<? super K,? super V> predicate)MultiReaderHashBagMultimap<K,V>MultiReaderHashBagMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)MutableBagMultimap<K,V>SynchronizedBagMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)HashBagMultimap<K,V>SynchronizedPutHashBagMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)TreeBagMultimap<K,V>TreeBagMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)Deprecated.HashBagMultimap<K,V>HashBagMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableBagMultimap<K,V>ImmutableBagMultimapImpl. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MultiReaderHashBagMultimap<K,V>MultiReaderHashBagMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableBagMultimap<K,V>SynchronizedBagMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)HashBagMultimap<K,V>SynchronizedPutHashBagMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)TreeBagMultimap<K,V>TreeBagMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)Deprecated.HashBagMultimap<K,V>HashBagMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableBagMultimap<K,V>ImmutableBagMultimapImpl. selectKeysValues(Predicate2<? super K,? super V> predicate)MultiReaderHashBagMultimap<K,V>MultiReaderHashBagMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)MutableBagMultimap<K,V>SynchronizedBagMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)HashBagMultimap<K,V>SynchronizedPutHashBagMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)TreeBagMultimap<K,V>TreeBagMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)Deprecated. -
Uses of Predicate2 in org.eclipse.collections.impl.multimap.bag.sorted
Methods in org.eclipse.collections.impl.multimap.bag.sorted with parameters of type Predicate2 Modifier and Type Method Description TreeBagMultimap<K,V>TreeBagMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)Deprecated.TreeBagMultimap<K,V>TreeBagMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)Deprecated.TreeBagMultimap<K,V>TreeBagMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)Deprecated.TreeBagMultimap<K,V>TreeBagMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)Deprecated. -
Uses of Predicate2 in org.eclipse.collections.impl.multimap.bag.sorted.immutable
Methods in org.eclipse.collections.impl.multimap.bag.sorted.immutable with parameters of type Predicate2 Modifier and Type Method Description ImmutableSortedBagMultimap<K,V>ImmutableSortedBagMultimapImpl. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableSortedBagMultimap<K,V>ImmutableSortedBagMultimapImpl. rejectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableSortedBagMultimap<K,V>ImmutableSortedBagMultimapImpl. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableSortedBagMultimap<K,V>ImmutableSortedBagMultimapImpl. selectKeysValues(Predicate2<? super K,? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.impl.multimap.bag.sorted.mutable
Methods in org.eclipse.collections.impl.multimap.bag.sorted.mutable with parameters of type Predicate2 Modifier and Type Method Description MutableSortedBagMultimap<K,V>SynchronizedSortedBagMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)TreeBagMultimap<K,V>TreeBagMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableSortedBagMultimap<K,V>SynchronizedSortedBagMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)TreeBagMultimap<K,V>TreeBagMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)MutableSortedBagMultimap<K,V>SynchronizedSortedBagMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)TreeBagMultimap<K,V>TreeBagMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableSortedBagMultimap<K,V>SynchronizedSortedBagMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)TreeBagMultimap<K,V>TreeBagMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.impl.multimap.bag.strategy
Methods in org.eclipse.collections.impl.multimap.bag.strategy with parameters of type Predicate2 Modifier and Type Method Description HashBagMultimapWithHashingStrategy<K,V>HashBagMultimapWithHashingStrategy. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)HashBagMultimapWithHashingStrategy<K,V>HashBagMultimapWithHashingStrategy. rejectKeysValues(Predicate2<? super K,? super V> predicate)HashBagMultimapWithHashingStrategy<K,V>HashBagMultimapWithHashingStrategy. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)HashBagMultimapWithHashingStrategy<K,V>HashBagMultimapWithHashingStrategy. selectKeysValues(Predicate2<? super K,? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.impl.multimap.list
Methods in org.eclipse.collections.impl.multimap.list with parameters of type Predicate2 Modifier and Type Method Description FastListMultimap<K,V>FastListMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableListMultimap<K,V>ImmutableListMultimapImpl. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)FastListMultimap<K,V>MultiReaderFastListMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableListMultimap<K,V>SynchronizedListMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)FastListMultimap<K,V>SynchronizedPutFastListMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)FastListMultimap<K,V>FastListMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableListMultimap<K,V>ImmutableListMultimapImpl. rejectKeysValues(Predicate2<? super K,? super V> predicate)FastListMultimap<K,V>MultiReaderFastListMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)MutableListMultimap<K,V>SynchronizedListMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)FastListMultimap<K,V>SynchronizedPutFastListMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)FastListMultimap<K,V>FastListMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableListMultimap<K,V>ImmutableListMultimapImpl. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)FastListMultimap<K,V>MultiReaderFastListMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableListMultimap<K,V>SynchronizedListMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)FastListMultimap<K,V>SynchronizedPutFastListMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)FastListMultimap<K,V>FastListMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableListMultimap<K,V>ImmutableListMultimapImpl. selectKeysValues(Predicate2<? super K,? super V> predicate)FastListMultimap<K,V>MultiReaderFastListMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)MutableListMultimap<K,V>SynchronizedListMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)FastListMultimap<K,V>SynchronizedPutFastListMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.impl.multimap.set
Methods in org.eclipse.collections.impl.multimap.set with parameters of type Predicate2 Modifier and Type Method Description ImmutableSetMultimap<K,V>ImmutableSetMultimapImpl. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)UnifiedSetMultimap<K,V>MultiReaderUnifiedSetMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)UnifiedSetMultimap<K,V>SynchronizedPutUnifiedSetMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableSetMultimap<K,V>SynchronizedSetMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)UnifiedSetMultimap<K,V>UnifiedSetMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableSetMultimap<K,V>ImmutableSetMultimapImpl. rejectKeysValues(Predicate2<? super K,? super V> predicate)UnifiedSetMultimap<K,V>MultiReaderUnifiedSetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)UnifiedSetMultimap<K,V>SynchronizedPutUnifiedSetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)MutableSetMultimap<K,V>SynchronizedSetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)UnifiedSetMultimap<K,V>UnifiedSetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableSetMultimap<K,V>ImmutableSetMultimapImpl. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)UnifiedSetMultimap<K,V>MultiReaderUnifiedSetMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)UnifiedSetMultimap<K,V>SynchronizedPutUnifiedSetMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableSetMultimap<K,V>SynchronizedSetMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)UnifiedSetMultimap<K,V>UnifiedSetMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableSetMultimap<K,V>ImmutableSetMultimapImpl. selectKeysValues(Predicate2<? super K,? super V> predicate)UnifiedSetMultimap<K,V>MultiReaderUnifiedSetMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)UnifiedSetMultimap<K,V>SynchronizedPutUnifiedSetMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)MutableSetMultimap<K,V>SynchronizedSetMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)UnifiedSetMultimap<K,V>UnifiedSetMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.impl.multimap.set.sorted
Methods in org.eclipse.collections.impl.multimap.set.sorted with parameters of type Predicate2 Modifier and Type Method Description ImmutableSortedSetMultimap<K,V>ImmutableSortedSetMultimapImpl. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)TreeSortedSetMultimap<K,V>SynchronizedPutTreeSortedSetMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableSortedSetMultimap<K,V>SynchronizedSortedSetMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)TreeSortedSetMultimap<K,V>TreeSortedSetMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableSortedSetMultimap<K,V>ImmutableSortedSetMultimapImpl. rejectKeysValues(Predicate2<? super K,? super V> predicate)TreeSortedSetMultimap<K,V>SynchronizedPutTreeSortedSetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)MutableSortedSetMultimap<K,V>SynchronizedSortedSetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)TreeSortedSetMultimap<K,V>TreeSortedSetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableSortedSetMultimap<K,V>ImmutableSortedSetMultimapImpl. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)TreeSortedSetMultimap<K,V>SynchronizedPutTreeSortedSetMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableSortedSetMultimap<K,V>SynchronizedSortedSetMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)TreeSortedSetMultimap<K,V>TreeSortedSetMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)ImmutableSortedSetMultimap<K,V>ImmutableSortedSetMultimapImpl. selectKeysValues(Predicate2<? super K,? super V> predicate)TreeSortedSetMultimap<K,V>SynchronizedPutTreeSortedSetMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)MutableSortedSetMultimap<K,V>SynchronizedSortedSetMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)TreeSortedSetMultimap<K,V>TreeSortedSetMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.impl.multimap.set.strategy
Methods in org.eclipse.collections.impl.multimap.set.strategy with parameters of type Predicate2 Modifier and Type Method Description UnifiedSetWithHashingStrategyMultimap<K,V>UnifiedSetWithHashingStrategyMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)UnifiedSetWithHashingStrategyMultimap<K,V>UnifiedSetWithHashingStrategyMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)UnifiedSetWithHashingStrategyMultimap<K,V>UnifiedSetWithHashingStrategyMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)UnifiedSetWithHashingStrategyMultimap<K,V>UnifiedSetWithHashingStrategyMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.impl.partition.stack
Fields in org.eclipse.collections.impl.partition.stack declared as Predicate2 Modifier and Type Field Description private Predicate2<? super T,? super P>PartitionArrayStack.PartitionPredicate2Procedure. predicateConstructors in org.eclipse.collections.impl.partition.stack with parameters of type Predicate2 Constructor Description PartitionPredicate2Procedure(Predicate2<? super T,? super P> predicate, P parameter, PartitionArrayStack<T> partitionMutableStack) -
Uses of Predicate2 in org.eclipse.collections.impl.set
Methods in org.eclipse.collections.impl.set with parameters of type Predicate2 Modifier and Type Method Description <P> booleanAbstractUnifiedSet. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractUnifiedSet. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanAbstractUnifiedSet. noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)protected abstract <P> booleanAbstractUnifiedSet. shortCircuitWith(Predicate2<? super T,? super P> predicate2, P parameter, boolean expected, boolean onShortCircuit, boolean atEnd) -
Uses of Predicate2 in org.eclipse.collections.impl.set.fixed
Methods in org.eclipse.collections.impl.set.fixed with parameters of type Predicate2 Modifier and Type Method Description <P> booleanAbstractMemoryEfficientMutableSet. removeIfWith(Predicate2<? super T,? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.set.immutable
Methods in org.eclipse.collections.impl.set.immutable with parameters of type Predicate2 Modifier and Type Method Description <P> booleanImmutableEmptySet. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanImmutableEmptySet. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> intImmutableEmptySet. countWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanImmutableEmptySet. noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionImmutableSet<T>AbstractImmutableSet. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ImmutableSet<T>AbstractImmutableSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P,R extends java.util.Collection<T>>
RImmutableEmptySet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter, R target)<P> ImmutableSet<T>AbstractImmutableSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P,R extends java.util.Collection<T>>
RImmutableEmptySet. selectWith(Predicate2<? super T,? super P> predicate, P parameter, R target) -
Uses of Predicate2 in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable with parameters of type Predicate2 Modifier and Type Method Description private <P> booleanUnifiedSet. chainedShortCircuitWith(UnifiedSet.ChainedBucket bucket, Predicate2<? super T,? super P> predicate, P parameter, boolean expected)<P> PartitionMutableSet<T>AbstractMutableSet. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableSet<T>MultiReaderUnifiedSet. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableSet<T>MultiReaderUnifiedSet.UntouchableMutableSet. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableSet<T>SetAdapter. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableSet<T>SynchronizedMutableSet. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableSet<T>UnifiedSet. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableSet<T>UnmodifiableMutableSet. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSet<T>AbstractMutableSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSet<T>MultiReaderUnifiedSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSet<T>MultiReaderUnifiedSet.UntouchableMutableSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSet<T>SetAdapter. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSet<T>SynchronizedMutableSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> UnifiedSet<T>UnifiedSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSet<T>UnmodifiableMutableSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> Twin<MutableList<T>>UnifiedSet. selectAndRejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSet<T>AbstractMutableSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSet<T>MultiReaderUnifiedSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSet<T>MultiReaderUnifiedSet.UntouchableMutableSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSet<T>SetAdapter. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSet<T>SynchronizedMutableSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> UnifiedSet<T>UnifiedSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSet<T>UnmodifiableMutableSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)protected <P> booleanUnifiedSet. shortCircuitWith(Predicate2<? super T,? super P> predicate2, P parameter, boolean expected, boolean onShortCircuit, boolean atEnd) -
Uses of Predicate2 in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable with parameters of type Predicate2 Modifier and Type Method Description <S> booleanAbstractImmutableSortedSet. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<S> booleanImmutableTreeSet. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<P> PartitionImmutableSortedSet<T>AbstractImmutableSortedSet. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ImmutableSortedSet<T>AbstractImmutableSortedSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ImmutableSortedSet<T>ImmutableEmptySortedSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ImmutableSortedSet<T>AbstractImmutableSortedSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ImmutableSortedSet<T>ImmutableEmptySortedSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable with parameters of type Predicate2 Modifier and Type Method Description <S> booleanSortedSetAdapter. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<S> booleanSynchronizedSortedSet. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<S> booleanTreeSortedSet. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<S> booleanUnmodifiableSortedSet. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<P> PartitionMutableSortedSet<T>SortedSetAdapter. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableSortedSet<T>SynchronizedSortedSet. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableSortedSet<T>TreeSortedSet. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableSortedSet<T>UnmodifiableSortedSet. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSortedSet<T>SortedSetAdapter. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSortedSet<T>SynchronizedSortedSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TreeSortedSet<T>TreeSortedSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSortedSet<T>UnmodifiableSortedSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSortedSet<T>SortedSetAdapter. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSortedSet<T>SynchronizedSortedSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TreeSortedSet<T>TreeSortedSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSortedSet<T>UnmodifiableSortedSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.set.strategy.mutable
Methods in org.eclipse.collections.impl.set.strategy.mutable with parameters of type Predicate2 Modifier and Type Method Description private <P> booleanUnifiedSetWithHashingStrategy. chainedShortCircuitWith(UnifiedSetWithHashingStrategy.ChainedBucket bucket, Predicate2<? super T,? super P> predicate, P parameter, boolean expected)<P> PartitionMutableSet<T>UnifiedSetWithHashingStrategy. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> UnifiedSetWithHashingStrategy<T>UnifiedSetWithHashingStrategy. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> Twin<MutableList<T>>UnifiedSetWithHashingStrategy. selectAndRejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> UnifiedSetWithHashingStrategy<T>UnifiedSetWithHashingStrategy. selectWith(Predicate2<? super T,? super P> predicate, P parameter)protected <P> booleanUnifiedSetWithHashingStrategy. shortCircuitWith(Predicate2<? super T,? super P> predicate2, P parameter, boolean expected, boolean onShortCircuit, boolean atEnd) -
Uses of Predicate2 in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable with parameters of type Predicate2 Modifier and Type Method Description <P> booleanImmutableArrayStack. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)Deprecated.<P> booleanImmutableArrayStack. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)Deprecated.<S> booleanImmutableArrayStack. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)Deprecated.<S> booleanImmutableEmptyStack. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<S> booleanImmutableNotEmptyStack. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<P> intImmutableArrayStack. countWith(Predicate2<? super T,? super P> predicate, P parameter)Deprecated.<P> intImmutableEmptyStack. countWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TImmutableArrayStack. detectWith(Predicate2<? super T,? super P> predicate, P parameter)Deprecated.<P> TImmutableEmptyStack. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TImmutableArrayStack. detectWithIfNone(Predicate2<? super T,? super P> predicate, P parameter, Function0<? extends T> function)Deprecated.<P> TImmutableEmptyStack. detectWithIfNone(Predicate2<? super T,? super P> predicate, P parameter, Function0<? extends T> function)<P> java.util.Optional<T>ImmutableArrayStack. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)Deprecated.<P> java.util.Optional<T>ImmutableEmptyStack. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanImmutableArrayStack. noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)Deprecated.<P> PartitionImmutableStack<T>ImmutableArrayStack. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)Deprecated.<P> PartitionImmutableStack<T>ImmutableEmptyStack. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionImmutableStack<T>ImmutableNotEmptyStack. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ImmutableStack<T>ImmutableArrayStack. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)Deprecated.<P,R extends java.util.Collection<T>>
RImmutableArrayStack. rejectWith(Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)Deprecated.<P> ImmutableStack<T>ImmutableEmptyStack. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P,R extends java.util.Collection<T>>
RImmutableEmptyStack. rejectWith(Predicate2<? super T,? super P> predicate, P parameter, R target)<P> ImmutableStack<T>ImmutableNotEmptyStack. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ImmutableStack<T>ImmutableArrayStack. selectWith(Predicate2<? super T,? super P> predicate, P parameter)Deprecated.<P,R extends java.util.Collection<T>>
RImmutableArrayStack. selectWith(Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)Deprecated.<P> ImmutableStack<T>ImmutableEmptyStack. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P,R extends java.util.Collection<T>>
RImmutableEmptyStack. selectWith(Predicate2<? super T,? super P> predicate, P parameter, R target)<P> ImmutableStack<T>ImmutableNotEmptyStack. selectWith(Predicate2<? super T,? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with parameters of type Predicate2 Modifier and Type Method Description <P> booleanArrayStack. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanSynchronizedStack. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanUnmodifiableStack. allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanArrayStack. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanSynchronizedStack. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanUnmodifiableStack. anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<S> booleanArrayStack. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<S> booleanSynchronizedStack. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<S> booleanUnmodifiableStack. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)<P> intArrayStack. countWith(Predicate2<? super T,? super P> predicate, P parameter)<P> intSynchronizedStack. countWith(Predicate2<? super T,? super P> predicate, P parameter)<P> intUnmodifiableStack. countWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TArrayStack. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TSynchronizedStack. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TUnmodifiableStack. detectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> TArrayStack. detectWithIfNone(Predicate2<? super T,? super P> predicate, P parameter, Function0<? extends T> function)<P> TSynchronizedStack. detectWithIfNone(Predicate2<? super T,? super P> predicate, P parameter, Function0<? extends T> function)<P> TUnmodifiableStack. detectWithIfNone(Predicate2<? super T,? super P> predicate, P parameter, Function0<? extends T> function)<P> java.util.Optional<T>ArrayStack. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)<P> java.util.Optional<T>SynchronizedStack. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)<P> java.util.Optional<T>UnmodifiableStack. detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanArrayStack. noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanSynchronizedStack. noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> booleanUnmodifiableStack. noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableStack<T>ArrayStack. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableStack<T>SynchronizedStack. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableStack<T>UnmodifiableStack. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ArrayStack<T>ArrayStack. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P,R extends java.util.Collection<T>>
RArrayStack. rejectWith(Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)<P> MutableStack<T>SynchronizedStack. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P,R extends java.util.Collection<T>>
RSynchronizedStack. rejectWith(Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)<P> MutableStack<T>UnmodifiableStack. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P,R extends java.util.Collection<T>>
RUnmodifiableStack. rejectWith(Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)<P> ArrayStack<T>ArrayStack. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P,R extends java.util.Collection<T>>
RArrayStack. selectWith(Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)<P> MutableStack<T>SynchronizedStack. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P,R extends java.util.Collection<T>>
RSynchronizedStack. selectWith(Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)<P> MutableStack<T>UnmodifiableStack. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P,R extends java.util.Collection<T>>
RUnmodifiableStack. selectWith(Predicate2<? super T,? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with parameters of type Predicate2 Modifier and Type Method Description static <T,P>
booleanArrayIterate. allSatisfyWith(T[] objectArray, Predicate2<? super T,? super P> predicate, P parameter)static <T,IV>
booleanArrayListIterate. allSatisfyWith(java.util.ArrayList<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <T,P>
booleanIterate. allSatisfyWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter)Returns true if the predicate evaluates to true for every element of the iterable, or returns false.static <T,IV>
booleanListIterate. allSatisfyWith(java.util.List<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <T,P>
booleanArrayIterate. anySatisfyWith(T[] objectArray, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
booleanArrayListIterate. anySatisfyWith(java.util.ArrayList<T> list, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
booleanIterate. anySatisfyWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter)Returns true if the predicate2 and parameter evaluates to true for any element of the iterable.static <T,IV>
booleanListIterate. anySatisfyWith(java.util.List<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <K1,V1,K2,V2>
MutableMap<K2,V2>MapIterate. collectIf(java.util.Map<K1,V1> map, Function2<? super K1,? super V1,Pair<K2,V2>> function, Predicate2<? super K1,? super V1> predicate)For each value of the map, the Predicate2 is evaluated with the key and value as the parameter, and if true, thenfunctionis applied.static <K1,V1,K2,V2>
MutableMap<K2,V2>MapIterate. collectIf(java.util.Map<K1,V1> map, Function2<? super K1,? super V1,Pair<K2,V2>> function, Predicate2<? super K1,? super V1> predicate, java.util.Map<K2,V2> target)For each value of the map, the Predicate2 is evaluated with the key and value as the parameter, and if true, thenfunctionis applied.static <S,T>
booleanOrderedIterate. corresponds(OrderedIterable<T> o1, OrderedIterable<S> o2, Predicate2<? super T,? super S> predicate)static <T,P>
intArrayIterate. countWith(T[] objectArray, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
intArrayListIterate. countWith(java.util.ArrayList<T> list, Predicate2<? super T,? super P> predicate, P parameter)static <T,IV>
intIterate. countWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super IV> predicate, IV injectedValue)Returns the total number of elements that evaluate to true for the specified predicate2 and parameter.static <T,IV>
intListIterate. countWith(java.util.List<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <K,V>
Pair<K,V>MapIterate. detect(java.util.Map<K,V> map, Predicate2<? super K,? super V> predicate)static <T,IV>
intArrayIterate. detectIndexWith(T[] objectArray, Predicate2<? super T,? super IV> predicate, IV injectedValue)Searches for the first index where the predicate evaluates totrue.static <T,P>
intArrayListIterate. detectIndexWith(java.util.ArrayList<T> list, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
intIterate. detectIndexWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter)Searches for the first occurrence where the predicate2 and parameter evaluates to true, returns -1 if the predicate2 and parameter do not evaluate to true.static <T,P>
intListIterate. detectIndexWith(java.util.List<T> list, Predicate2<? super T,? super P> predicate, P parameter)Searches for the first index where the predicate2 and parameter evaluates to true.static <K,V>
java.util.Optional<Pair<K,V>>MapIterate. detectOptional(java.util.Map<K,V> map, Predicate2<? super K,? super V> predicate)static <T,P>
TArrayIterate. detectWith(T[] objectArray, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
TArrayListIterate. detectWith(java.util.ArrayList<T> list, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
TIterate. detectWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter)Returns the first element of the iterable that evaluates to true for the specified predicate2 and parameter, or null if no element evaluates to true.static <T,IV>
TListIterate. detectWith(java.util.List<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <T,P>
TArrayIterate. detectWithIfNone(T[] objectArray, Predicate2<? super T,? super P> predicate, P parameter, T ifNone)static <T,IV>
TArrayListIterate. detectWithIfNone(java.util.ArrayList<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue, T ifNone)static <T,P>
TIterate. detectWithIfNone(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter, T ifNone)Returns the first element of the iterable that evaluates to true for the specified predicate2 and parameter, or returns the result ifNone if no element evaluates to true.static <T,IV>
TListIterate. detectWithIfNone(java.util.List<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue, T ifNone)static <T,P>
java.util.Optional<T>ArrayIterate. detectWithOptional(T[] objectArray, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
java.util.Optional<T>ArrayListIterate. detectWithOptional(java.util.ArrayList<T> list, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
java.util.Optional<T>Iterate. detectWithOptional(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter)Returns the first element of the iterable that evaluates to true for the specified predicate2 and parameter as an Optional.static <T,IV>
java.util.Optional<T>ListIterate. detectWithOptional(java.util.List<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <T,P>
booleanArrayIterate. noneSatisfyWith(T[] objectArray, Predicate2<? super T,? super P> predicate, P parameter)static <T,IV>
booleanArrayListIterate. noneSatisfyWith(java.util.ArrayList<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <T,P>
booleanIterate. noneSatisfyWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter)Returns true if the predicate evaluates to false for every element of the iterable, or returns false.static <T,P>
booleanListIterate. noneSatisfyWith(java.util.List<T> list, Predicate2<? super T,? super P> predicate, P injectedValue)static <T,P>
PartitionFastList<T>ArrayIterate. partitionWith(T[] array, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
PartitionMutableList<T>ArrayListIterate. partitionWith(java.util.ArrayList<T> list, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
PartitionIterable<T>Iterate. partitionWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter)Filters a collection into a PartitionIterable based on a predicate.static <T,P>
PartitionMutableList<T>ListIterate. partitionWith(java.util.List<T> list, Predicate2<? super T,? super P> predicate, P parameter)static <K,V>
MutableMap<K,V>MapIterate. rejectMapOnEntry(java.util.Map<K,V> map, Predicate2<? super K,? super V> predicate)For each value of the map, predicate is evaluated with the element as the parameter.static <K,V,R extends java.util.Map<K,V>>
RMapIterate. rejectMapOnEntry(java.util.Map<K,V> map, Predicate2<? super K,? super V> predicate, R target)For each value of the map, predicate is evaluated with the element as the parameter.static <T,P,R extends java.util.Collection<T>>
RArrayIterate. rejectWith(T[] objectArray, Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)static <T,P>
MutableList<T>ArrayIterate. rejectWith(T[] objectArray, Predicate2<? super T,P> predicate, P parameter)static <T,IV>
java.util.ArrayList<T>ArrayListIterate. rejectWith(java.util.ArrayList<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <T,P,R extends java.util.Collection<T>>
RArrayListIterate. rejectWith(java.util.ArrayList<T> list, Predicate2<? super T,? super P> predicate, P injectedValue, R targetCollection)static <T,P>
java.util.Collection<T>Iterate. rejectWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter)Similar toIterate.reject(Iterable, Predicate), except with an evaluation parameter for the second generic argument inPredicate2.static <T,P,R extends java.util.Collection<T>>
RIterate. rejectWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)Same as the reject method with two parameters but uses the specified target collection.static <T,IV>
MutableList<T>ListIterate. rejectWith(java.util.List<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <T,P,R extends java.util.Collection<T>>
RListIterate. rejectWith(java.util.List<T> list, Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)static <T,P>
booleanArrayListIterate. removeIfWith(java.util.ArrayList<T> list, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
booleanIterate. removeIfWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter)Removes all elements of the iterable that evaluate to true for the specified predicate2 and parameter.static <T,P>
booleanListIterate. removeIfWith(java.util.List<T> list, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
booleanListIterate. removeIfWith(java.util.List<T> list, Predicate2<? super T,? super P> predicate, P parameter, Procedure<? super T> procedure)static <T,P>
Twin<MutableList<T>>ArrayIterate. selectAndRejectWith(T[] objectArray, Predicate2<? super T,? super P> predicate, P parameter)Deprecated.since 6.0 useRichIterable.partitionWith(Predicate2, Object)instead.static <T,P>
Twin<MutableList<T>>ArrayListIterate. selectAndRejectWith(java.util.ArrayList<T> list, Predicate2<? super T,? super P> predicate, P parameter)static <T,IV>
Twin<MutableList<T>>Iterate. selectAndRejectWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super IV> predicate, IV injectedValue)Filters a collection into two separate collections based on a predicate returned via a Twin.static <T,IV>
Twin<MutableList<T>>ListIterate. selectAndRejectWith(java.util.List<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <K,V>
MutableMap<K,V>MapIterate. selectMapOnEntry(java.util.Map<K,V> map, Predicate2<? super K,? super V> predicate)For each entry of the source map, the Predicate2 is evaluated.static <K,V,R extends java.util.Map<K,V>>
RMapIterate. selectMapOnEntry(java.util.Map<K,V> map, Predicate2<? super K,? super V> predicate, R target)For each entry of the source map, the Predicate2 is evaluated.static <T,P,R extends java.util.Collection<T>>
RArrayIterate. selectWith(T[] objectArray, Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)static <T,P>
MutableList<T>ArrayIterate. selectWith(T[] objectArray, Predicate2<? super T,P> predicate, P parameter)static <T,IV>
java.util.ArrayList<T>ArrayListIterate. selectWith(java.util.ArrayList<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <T,P,R extends java.util.Collection<T>>
RArrayListIterate. selectWith(java.util.ArrayList<T> list, Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)static <T,IV>
java.util.Collection<T>Iterate. selectWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super IV> predicate, IV parameter)Returns a new collection with only elements that evaluated to true for the specified predicate and parameter.static <T,P,R extends java.util.Collection<T>>
RIterate. selectWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)Same as the selectWith method with two parameters but uses the specified target collection.static <T,IV>
MutableList<T>ListIterate. selectWith(java.util.List<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <T,P,R extends java.util.Collection<T>>
RListIterate. selectWith(java.util.List<T> list, Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)static <T,L extends java.util.List<T>>
LIterate. sortThis(L list, Predicate2<? super T,? super T> predicate)SortThis is a mutating method. -
Uses of Predicate2 in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type Predicate2 Modifier and Type Method Description static <T,P>
booleanInternalArrayIterate. allSatisfyWith(T[] array, int size, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
booleanIterableIterate. allSatisfyWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
booleanIteratorIterate. allSatisfyWith(java.util.Iterator<T> iterator, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
booleanRandomAccessListIterate. allSatisfyWith(java.util.List<T> list, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
booleanInternalArrayIterate. anySatisfyWith(T[] array, int size, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
booleanIterableIterate. anySatisfyWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
booleanIteratorIterate. anySatisfyWith(java.util.Iterator<T> iterator, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
booleanRandomAccessListIterate. anySatisfyWith(java.util.List<T> list, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
booleanInternalArrayIterate. corresponds(T[] array, int size, OrderedIterable<P> other, Predicate2<? super T,? super P> predicate)static <T,P>
booleanRandomAccessListIterate. corresponds(java.util.List<T> list, OrderedIterable<P> other, Predicate2<? super T,? super P> predicate)static <T,P>
intInternalArrayIterate. countWith(T[] array, int size, Predicate2<? super T,? super P> predicate, P parameter)static <T,IV>
intIterableIterate. countWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <T,P>
intIteratorIterate. countWith(java.util.Iterator<T> iterator, Predicate2<? super T,? super P> predicate, P parameter)static <T,IV>
intRandomAccessListIterate. countWith(java.util.List<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <T,IV>
intIterableIterate. detectIndexWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <T,IV>
intIteratorIterate. detectIndexWith(java.util.Iterator<T> iterator, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <T,IV>
intRandomAccessListIterate. detectIndexWith(java.util.List<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)Searches for the first occurrence where the predicate evaluates to true.static <T,P>
TInternalArrayIterate. detectWith(T[] array, int size, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
TIterableIterate. detectWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
TIteratorIterate. detectWith(java.util.Iterator<T> iterator, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
TRandomAccessListIterate. detectWith(java.util.List<T> list, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
java.util.Optional<T>InternalArrayIterate. detectWithOptional(T[] array, int size, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
java.util.Optional<T>IterableIterate. detectWithOptional(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
java.util.Optional<T>IteratorIterate. detectWithOptional(java.util.Iterator<T> iterator, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
java.util.Optional<T>RandomAccessListIterate. detectWithOptional(java.util.List<T> list, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
booleanInternalArrayIterate. noneSatisfyWith(T[] array, int size, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
booleanIterableIterate. noneSatisfyWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
booleanIteratorIterate. noneSatisfyWith(java.util.Iterator<T> iterator, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
booleanRandomAccessListIterate. noneSatisfyWith(java.util.List<T> list, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
PartitionFastList<T>InternalArrayIterate. partitionWith(T[] array, int size, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
PartitionMutableList<T>IterableIterate. partitionWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
PartitionMutableList<T>IteratorIterate. partitionWith(java.util.Iterator<T> iterator, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
PartitionMutableList<T>RandomAccessListIterate. partitionWith(java.util.List<T> list, Predicate2<? super T,? super P> predicate, P parameter)static <T,P,R extends java.util.Collection<T>>
RInternalArrayIterate. rejectWith(T[] array, int size, Predicate2<? super T,? super P> predicate, P parameter, R target)static <T,P,R extends java.util.Collection<T>>
RIterableIterate. rejectWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)static <T,P,R extends java.util.Collection<T>>
RIteratorIterate. rejectWith(java.util.Iterator<T> iterator, Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)static <T,IV>
MutableList<T>RandomAccessListIterate. rejectWith(java.util.List<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <T,P,R extends java.util.Collection<T>>
RRandomAccessListIterate. rejectWith(java.util.List<T> list, Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)static <T,P>
booleanIterableIterate. removeIfWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
booleanIterableIterate. removeIfWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter, Procedure<? super T> procedure)static <T,P>
booleanIteratorIterate. removeIfWith(java.util.Iterator<T> iterator, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
booleanIteratorIterate. removeIfWith(java.util.Iterator<T> iterator, Predicate2<? super T,? super P> predicate, P parameter, Procedure<? super T> procedure)static <T,P>
booleanRandomAccessListIterate. removeIfWith(java.util.List<T> list, Predicate2<? super T,? super P> predicate, P parameter)static <T,P>
booleanRandomAccessListIterate. removeIfWith(java.util.List<T> list, Predicate2<? super T,? super P> predicate, P parameter, Procedure<? super T> procedure)static <T,P>
Twin<MutableList<T>>InternalArrayIterate. selectAndRejectWith(T[] objectArray, int size, Predicate2<? super T,? super P> predicate, P parameter)Deprecated.since 6.0 useRichIterable.partitionWith(Predicate2, Object)instead.static <T,IV>
Twin<MutableList<T>>IterableIterate. selectAndRejectWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <T,P>
Twin<MutableList<T>>IteratorIterate. selectAndRejectWith(java.util.Iterator<T> iterator, Predicate2<? super T,? super P> predicate, P parameter)static <T,IV>
Twin<MutableList<T>>RandomAccessListIterate. selectAndRejectWith(java.util.List<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <T,P,R extends java.util.Collection<T>>
RInternalArrayIterate. selectWith(T[] array, int size, Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)static <T,P,R extends java.util.Collection<T>>
RIterableIterate. selectWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P injectedValue, R targetCollection)static <T,P,R extends java.util.Collection<T>>
RIteratorIterate. selectWith(java.util.Iterator<T> iterator, Predicate2<? super T,? super P> predicate, P injectedValue, R targetCollection)static <T,IV>
MutableList<T>RandomAccessListIterate. selectWith(java.util.List<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <T,P,R extends java.util.Collection<T>>
RRandomAccessListIterate. selectWith(java.util.List<T> list, Predicate2<? super T,? super P> predicate, P parameter, R targetCollection)static <T,P>
booleanInternalArrayIterate. shortCircuitWith(T[] array, int size, Predicate2<? super T,? super P> predicate2, P parameter, boolean expected, boolean onShortCircuit, boolean atEnd)static <T,P>
booleanIteratorIterate. shortCircuitWith(java.util.Iterator<T> iterator, Predicate2<? super T,? super P> predicate2, P parameter, boolean expected, boolean onShortCircuit, boolean atEnd)static <T,P>
booleanRandomAccessListIterate. shortCircuitWith(java.util.List<T> list, Predicate2<? super T,? super P> predicate2, P parameter, boolean expected, boolean onShortCircuit, boolean atEnd)
-