Uses of Interface
org.eclipse.collections.api.block.predicate.Predicate
-
Packages that use Predicate 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.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.function 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.factory This package contains static utilities for creating mutable and immutable collection factories.org.eclipse.collections.impl.forkjoin This package contains implementations which has several parallel algorithms that work with Collections and make use of Java's fork-join framework.org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterableinterface.org.eclipse.collections.impl.lazy.iterator This package contains implementations of theIteratorinterface.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 This package contains implementations of theListIterableinterface.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.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.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.parallel This package contains classes which is used for parallel iteration through the containers.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.test This package containsSerializeTestHelperandVerifyclasses.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 Predicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type Predicate Modifier and Type Method Description booleanParallelIterable. allSatisfy(Predicate<? super T> predicate)booleanRichIterable. allSatisfy(Predicate<? super T> predicate)Returns true if the predicate evaluates to true for every element of the iterable or if the iterable is empty.booleanParallelIterable. anySatisfy(Predicate<? super T> predicate)booleanRichIterable. anySatisfy(Predicate<? super T> predicate)Returns true if the predicate evaluates to true for any element of the iterable.<V> LazyIterable<V>LazyIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)Creates a deferred iterable for selecting and collecting elements from the current iterable.<V> ParallelIterable<V>ParallelIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)Creates a parallel iterable for selecting and collecting elements from the current iterable.<V> RichIterable<V>RichIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)Returns a new collection with the results of applying the specified function on each element of the source collection, but only for those elements which return true upon evaluation of the predicate.<V,R extends java.util.Collection<V>>
RRichIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)Same as the collectIf method with two parameters but uses the specified target collection for the results.intParallelIterable. count(Predicate<? super T> predicate)intRichIterable. count(Predicate<? super T> predicate)Return the total number of elements that answer true to the specified predicate.TParallelIterable. detect(Predicate<? super T> predicate)TRichIterable. detect(Predicate<? super T> predicate)Returns the first element of the iterable for which the predicate evaluates to true or null in the case where no element returns true.TParallelIterable. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)default TRichIterable. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)Returns the first element of the iterable for which the predicate evaluates to true.java.util.Optional<T>RichIterable. detectOptional(Predicate<? super T> predicate)Returns the first element of the iterable for which the predicate evaluates to true as an Optional.LazyIterable<T>LazyIterable. dropWhile(Predicate<? super T> predicate)booleanParallelIterable. noneSatisfy(Predicate<? super T> predicate)booleanRichIterable. noneSatisfy(Predicate<? super T> predicate)Returns true if the predicate evaluates to false for every element of the iterable or if the iterable is empty.PartitionIterable<T>RichIterable. partition(Predicate<? super T> predicate)Filters a collection into a PartitionedIterable based on the evaluation of the predicate.LazyIterable<T>LazyIterable. reject(Predicate<? super T> predicate)Creates a deferred iterable for rejecting elements from the current iterable.ParallelIterable<T>ParallelIterable. reject(Predicate<? super T> predicate)Creates a parallel iterable for rejecting elements from the current iterable.RichIterable<T>RichIterable. reject(Predicate<? super T> predicate)Returns all elements of the source collection that return false when evaluating of the predicate.<R extends java.util.Collection<T>>
RRichIterable. reject(Predicate<? super T> predicate, R target)Same as the reject method with one parameter but uses the specified target collection for the results.LazyIterable<T>LazyIterable. select(Predicate<? super T> predicate)Creates a deferred iterable for selecting elements from the current iterable.ParallelIterable<T>ParallelIterable. select(Predicate<? super T> predicate)Creates a parallel iterable for selecting elements from the current iterable.RichIterable<T>RichIterable. select(Predicate<? super T> predicate)Returns all elements of the source collection that return true when evaluating the predicate.<R extends java.util.Collection<T>>
RRichIterable. select(Predicate<? super T> predicate, R target)Same as the select method with one parameter but uses the specified target collection for the results.LazyIterable<T>LazyIterable. takeWhile(Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type Predicate Modifier and Type Method Description <V> ImmutableBag<V>ImmutableBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableBag<V>MutableBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ParallelUnsortedBag<V>ParallelUnsortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)Creates a parallel iterable for selecting and collecting elements from the current iterable.<V> UnsortedBag<V>UnsortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)PartitionBag<T>Bag. partition(Predicate<? super T> predicate)PartitionImmutableBag<T>ImmutableBag. partition(Predicate<? super T> predicate)PartitionImmutableBagIterable<T>ImmutableBagIterable. partition(Predicate<? super T> predicate)PartitionMutableBag<T>MutableBag. partition(Predicate<? super T> predicate)PartitionMutableBagIterable<T>MutableBagIterable. partition(Predicate<? super T> predicate)PartitionUnsortedBag<T>UnsortedBag. partition(Predicate<? super T> predicate)Bag<T>Bag. reject(Predicate<? super T> predicate)ImmutableBag<T>ImmutableBag. reject(Predicate<? super T> predicate)ImmutableBagIterable<T>ImmutableBagIterable. reject(Predicate<? super T> predicate)MutableBag<T>MutableBag. reject(Predicate<? super T> predicate)MutableBagIterable<T>MutableBagIterable. reject(Predicate<? super T> predicate)ParallelBag<T>ParallelBag. reject(Predicate<? super T> predicate)Creates a parallel iterable for rejecting elements from the current iterable.ParallelUnsortedBag<T>ParallelUnsortedBag. reject(Predicate<? super T> predicate)Creates a parallel iterable for rejecting elements from the current iterable.UnsortedBag<T>UnsortedBag. reject(Predicate<? super T> predicate)Bag<T>Bag. select(Predicate<? super T> predicate)ImmutableBag<T>ImmutableBag. select(Predicate<? super T> predicate)ImmutableBagIterable<T>ImmutableBagIterable. select(Predicate<? super T> predicate)MutableBag<T>MutableBag. select(Predicate<? super T> predicate)MutableBagIterable<T>MutableBagIterable. select(Predicate<? super T> predicate)ParallelBag<T>ParallelBag. select(Predicate<? super T> predicate)Creates a parallel iterable for selecting elements from the current iterable.ParallelUnsortedBag<T>ParallelUnsortedBag. select(Predicate<? super T> predicate)Creates a parallel iterable for selecting elements from the current iterable.UnsortedBag<T>UnsortedBag. select(Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted with parameters of type Predicate Modifier and Type Method Description <V> ImmutableList<V>ImmutableSortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableList<V>MutableSortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ParallelListIterable<V>ParallelSortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)Creates a parallel iterable for selecting and collecting elements from the current iterable.<V> ListIterable<V>SortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)ImmutableSortedBag<T>ImmutableSortedBag. dropWhile(Predicate<? super T> predicate)MutableSortedBag<T>MutableSortedBag. dropWhile(Predicate<? super T> predicate)SortedBag<T>SortedBag. dropWhile(Predicate<? super T> predicate)PartitionImmutableSortedBag<T>ImmutableSortedBag. partition(Predicate<? super T> predicate)PartitionMutableSortedBag<T>MutableSortedBag. partition(Predicate<? super T> predicate)PartitionSortedBag<T>SortedBag. partition(Predicate<? super T> predicate)PartitionMutableSortedBag<T>MutableSortedBag. partitionWhile(Predicate<? super T> predicate)PartitionSortedBag<T>SortedBag. partitionWhile(Predicate<? super T> predicate)ImmutableSortedBag<T>ImmutableSortedBag. reject(Predicate<? super T> predicate)MutableSortedBag<T>MutableSortedBag. reject(Predicate<? super T> predicate)ParallelSortedBag<T>ParallelSortedBag. reject(Predicate<? super T> predicate)Creates a parallel iterable for rejecting elements from the current iterable.SortedBag<T>SortedBag. reject(Predicate<? super T> predicate)ImmutableSortedBag<T>ImmutableSortedBag. select(Predicate<? super T> predicate)MutableSortedBag<T>MutableSortedBag. select(Predicate<? super T> predicate)ParallelSortedBag<T>ParallelSortedBag. select(Predicate<? super T> predicate)Creates a parallel iterable for selecting elements from the current iterable.SortedBag<T>SortedBag. select(Predicate<? super T> predicate)ImmutableSortedBag<T>ImmutableSortedBag. takeWhile(Predicate<? super T> predicate)MutableSortedBag<T>MutableSortedBag. takeWhile(Predicate<? super T> predicate)SortedBag<T>SortedBag. takeWhile(Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.api.bimap
Methods in org.eclipse.collections.api.bimap with parameters of type Predicate Modifier and Type Method Description <V1> ImmutableBagIterable<V1>ImmutableBiMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends V1> function)PartitionUnsortedSet<V>BiMap. partition(Predicate<? super V> predicate)PartitionImmutableSet<V>ImmutableBiMap. partition(Predicate<? super V> predicate)PartitionMutableSet<V>MutableBiMap. partition(Predicate<? super V> predicate)SetIterable<V>BiMap. reject(Predicate<? super V> predicate)ImmutableSet<V>ImmutableBiMap. reject(Predicate<? super V> predicate)MutableSet<V>MutableBiMap. reject(Predicate<? super V> predicate)SetIterable<V>BiMap. select(Predicate<? super V> predicate)ImmutableSet<V>ImmutableBiMap. select(Predicate<? super V> predicate)MutableSet<V>MutableBiMap. select(Predicate<? super V> predicate) -
Uses of Predicate in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection with parameters of type Predicate Modifier and Type Method Description <V> ImmutableCollection<V>ImmutableCollection. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableCollection<V>MutableCollection. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)Returns a new MutableCollection with the results of applying the specified function to each element of the source collection, but only for elements that evaluate to true for the specified predicate.PartitionImmutableCollection<T>ImmutableCollection. partition(Predicate<? super T> predicate)PartitionMutableCollection<T>MutableCollection. partition(Predicate<? super T> predicate)Filters a collection into a PartitionedIterable based on the evaluation of the predicate.ImmutableCollection<T>ImmutableCollection. reject(Predicate<? super T> predicate)MutableCollection<T>MutableCollection. reject(Predicate<? super T> predicate)Returns a MutableCollection with all elements that evaluate to false for the specified predicate.booleanFixedSizeCollection. removeIf(Predicate<? super T> predicate)booleanMutableCollection. removeIf(Predicate<? super T> predicate)Removes all elements in the collection that evaluate to true for the specified predicate.ImmutableCollection<T>ImmutableCollection. select(Predicate<? super T> predicate)MutableCollection<T>MutableCollection. select(Predicate<? super T> predicate)Returns a MutableCollection with all elements that evaluate to true for the specified predicate. -
Uses of Predicate in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list with parameters of type Predicate Modifier and Type Method Description <V> ImmutableList<V>ImmutableList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ListIterable<V>ListIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)default <V> MutableList<V>MutableList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ParallelListIterable<V>ParallelListIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)Creates a parallel iterable for selecting and collecting elements from the current iterable.ImmutableList<T>ImmutableList. dropWhile(Predicate<? super T> predicate)ListIterable<T>ListIterable. dropWhile(Predicate<? super T> predicate)Returns the final elements that do not satisfy the Predicate.MutableList<T>MutableList. dropWhile(Predicate<? super T> predicate)PartitionImmutableList<T>ImmutableList. partition(Predicate<? super T> predicate)PartitionList<T>ListIterable. partition(Predicate<? super T> predicate)PartitionMutableList<T>MutableList. partition(Predicate<? super T> predicate)PartitionImmutableList<T>ImmutableList. partitionWhile(Predicate<? super T> predicate)PartitionList<T>ListIterable. partitionWhile(Predicate<? super T> predicate)Returns a Partition of the initial elements that satisfy the Predicate and the remaining elements.PartitionMutableList<T>MutableList. partitionWhile(Predicate<? super T> predicate)ImmutableList<T>ImmutableList. reject(Predicate<? super T> predicate)ListIterable<T>ListIterable. reject(Predicate<? super T> predicate)default MutableList<T>MutableList. reject(Predicate<? super T> predicate)ParallelListIterable<T>ParallelListIterable. reject(Predicate<? super T> predicate)Creates a parallel iterable for rejecting elements from the current iterable.ImmutableList<T>ImmutableList. select(Predicate<? super T> predicate)ListIterable<T>ListIterable. select(Predicate<? super T> predicate)default MutableList<T>MutableList. select(Predicate<? super T> predicate)ParallelListIterable<T>ParallelListIterable. select(Predicate<? super T> predicate)Creates a parallel iterable for selecting elements from the current iterable.ImmutableList<T>ImmutableList. takeWhile(Predicate<? super T> predicate)ListIterable<T>ListIterable. takeWhile(Predicate<? super T> predicate)Returns the initial elements that satisfy the Predicate.MutableList<T>MutableList. takeWhile(Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map with parameters of type Predicate Modifier and Type Method Description <R> ImmutableBag<R>ImmutableMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)<V1> ImmutableList<V1>ImmutableOrderedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends V1> function)<R> MutableBag<R>MutableMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)<V1> MutableList<V1>MutableOrderedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends V1> function)<V1> ListIterable<V1>OrderedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends V1> function)<V1> Bag<V1>UnsortedMapIterable. collectIf(Predicate<? super V> predicate, Function<? super V,? extends V1> function)ImmutableOrderedMap<K,V>ImmutableOrderedMap. dropWhile(Predicate<? super V> predicate)MutableOrderedMap<K,V>MutableOrderedMap. dropWhile(Predicate<? super V> predicate)OrderedMap<K,V>OrderedMap. dropWhile(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableMap. partition(Predicate<? super V> predicate)PartitionImmutableCollection<V>ImmutableMapIterable. partition(Predicate<? super V> predicate)PartitionImmutableList<V>ImmutableOrderedMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>MutableMap. partition(Predicate<? super V> predicate)PartitionMutableCollection<V>MutableMapIterable. partition(Predicate<? super V> predicate)PartitionMutableList<V>MutableOrderedMap. partition(Predicate<? super V> predicate)PartitionList<V>OrderedMap. partition(Predicate<? super V> predicate)PartitionBag<V>UnsortedMapIterable. partition(Predicate<? super V> predicate)PartitionImmutableList<V>ImmutableOrderedMap. partitionWhile(Predicate<? super V> predicate)PartitionMutableList<V>MutableOrderedMap. partitionWhile(Predicate<? super V> predicate)PartitionList<V>OrderedMap. partitionWhile(Predicate<? super V> predicate)ImmutableBag<V>ImmutableMap. reject(Predicate<? super V> predicate)ImmutableCollection<V>ImmutableMapIterable. reject(Predicate<? super V> predicate)ImmutableList<V>ImmutableOrderedMap. reject(Predicate<? super V> predicate)MutableBag<V>MutableMap. reject(Predicate<? super V> predicate)MutableCollection<V>MutableMapIterable. reject(Predicate<? super V> predicate)MutableList<V>MutableOrderedMap. reject(Predicate<? super V> predicate)ListIterable<V>OrderedMap. reject(Predicate<? super V> predicate)Bag<V>UnsortedMapIterable. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutableMap. select(Predicate<? super V> predicate)ImmutableCollection<V>ImmutableMapIterable. select(Predicate<? super V> predicate)ImmutableList<V>ImmutableOrderedMap. select(Predicate<? super V> predicate)MutableBag<V>MutableMap. select(Predicate<? super V> predicate)MutableCollection<V>MutableMapIterable. select(Predicate<? super V> predicate)MutableList<V>MutableOrderedMap. select(Predicate<? super V> predicate)ListIterable<V>OrderedMap. select(Predicate<? super V> predicate)Bag<V>UnsortedMapIterable. select(Predicate<? super V> predicate)ImmutableOrderedMap<K,V>ImmutableOrderedMap. takeWhile(Predicate<? super V> predicate)MutableOrderedMap<K,V>MutableOrderedMap. takeWhile(Predicate<? super V> predicate)OrderedMap<K,V>OrderedMap. takeWhile(Predicate<? super V> predicate) -
Uses of Predicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type Predicate Modifier and Type Method Description <VV> ImmutableBag<VV>ImmutablePrimitiveObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> MutableBag<VV>MutablePrimitiveObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> Bag<VV>PrimitiveObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)PartitionImmutableBag<V>ImmutablePrimitiveObjectMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>MutablePrimitiveObjectMap. partition(Predicate<? super V> predicate)PartitionBag<V>PrimitiveObjectMap. partition(Predicate<? super V> predicate)ImmutableBag<V>ImmutablePrimitiveObjectMap. reject(Predicate<? super V> predicate)MutableBag<V>MutablePrimitiveObjectMap. reject(Predicate<? super V> predicate)Bag<V>PrimitiveObjectMap. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutablePrimitiveObjectMap. select(Predicate<? super V> predicate)MutableBag<V>MutablePrimitiveObjectMap. select(Predicate<? super V> predicate)Bag<V>PrimitiveObjectMap. select(Predicate<? super V> predicate) -
Uses of Predicate in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted with parameters of type Predicate Modifier and Type Method Description <R> ImmutableList<R>ImmutableSortedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)<R> MutableList<R>MutableSortedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)<V1> ListIterable<V1>SortedMapIterable. collectIf(Predicate<? super V> predicate, Function<? super V,? extends V1> function)MutableSortedMap<K,V>MutableSortedMap. dropWhile(Predicate<? super V> predicate)SortedMapIterable<K,V>SortedMapIterable. dropWhile(Predicate<? super V> predicate)PartitionImmutableList<V>ImmutableSortedMap. partition(Predicate<? super V> predicate)PartitionMutableList<V>MutableSortedMap. partition(Predicate<? super V> predicate)PartitionList<V>SortedMapIterable. partition(Predicate<? super V> predicate)PartitionMutableList<V>MutableSortedMap. partitionWhile(Predicate<? super V> predicate)PartitionList<V>SortedMapIterable. partitionWhile(Predicate<? super V> predicate)ImmutableList<V>ImmutableSortedMap. reject(Predicate<? super V> predicate)MutableList<V>MutableSortedMap. reject(Predicate<? super V> predicate)ListIterable<V>SortedMapIterable. reject(Predicate<? super V> predicate)ImmutableList<V>ImmutableSortedMap. select(Predicate<? super V> predicate)MutableList<V>MutableSortedMap. select(Predicate<? super V> predicate)ListIterable<V>SortedMapIterable. select(Predicate<? super V> predicate)MutableSortedMap<K,V>MutableSortedMap. takeWhile(Predicate<? super V> predicate)SortedMapIterable<K,V>SortedMapIterable. takeWhile(Predicate<? super V> predicate) -
Uses of Predicate in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type Predicate Modifier and Type Method Description <V> OrderedIterable<V>OrderedIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ReversibleIterable<V>ReversibleIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)intOrderedIterable. detectIndex(Predicate<? super T> predicate)Returns the index of the first element of theOrderedIterablefor which thepredicateevaluates to true.intReversibleIterable. detectLastIndex(Predicate<? super T> predicate)Returns the index of the last element of theReversibleIterablefor which thepredicateevaluates to true.OrderedIterable<T>OrderedIterable. dropWhile(Predicate<? super T> predicate)Returns the final elements that do not satisfy the Predicate.ReversibleIterable<T>ReversibleIterable. dropWhile(Predicate<? super T> predicate)Returns the final elements that do not satisfy the Predicate.SortedIterable<T>SortedIterable. dropWhile(Predicate<? super T> predicate)Returns the final elements that do not satisfy the Predicate.PartitionOrderedIterable<T>OrderedIterable. partition(Predicate<? super T> predicate)PartitionReversibleIterable<T>ReversibleIterable. partition(Predicate<? super T> predicate)PartitionSortedIterable<T>SortedIterable. partition(Predicate<? super T> predicate)PartitionOrderedIterable<T>OrderedIterable. partitionWhile(Predicate<? super T> predicate)Returns a Partition of the initial elements that satisfy the Predicate and the remaining elements.PartitionReversibleIterable<T>ReversibleIterable. partitionWhile(Predicate<? super T> predicate)PartitionSortedIterable<T>SortedIterable. partitionWhile(Predicate<? super T> predicate)Returns a Partition of the initial elements that satisfy the Predicate and the remaining elements.OrderedIterable<T>OrderedIterable. reject(Predicate<? super T> predicate)ReversibleIterable<T>ReversibleIterable. reject(Predicate<? super T> predicate)SortedIterable<T>SortedIterable. reject(Predicate<? super T> predicate)OrderedIterable<T>OrderedIterable. select(Predicate<? super T> predicate)ReversibleIterable<T>ReversibleIterable. select(Predicate<? super T> predicate)SortedIterable<T>SortedIterable. select(Predicate<? super T> predicate)OrderedIterable<T>OrderedIterable. takeWhile(Predicate<? super T> predicate)Returns the initial elements that satisfy the Predicate.ReversibleIterable<T>ReversibleIterable. takeWhile(Predicate<? super T> predicate)Returns the initial elements that satisfy the Predicate.SortedIterable<T>SortedIterable. takeWhile(Predicate<? super T> predicate)Returns the initial elements that satisfy the Predicate. -
Uses of Predicate in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set with parameters of type Predicate Modifier and Type Method Description <V> ImmutableSet<V>ImmutableSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableSet<V>MutableSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> UnsortedSetIterable<V>UnsortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)PartitionImmutableSet<T>ImmutableSet. partition(Predicate<? super T> predicate)PartitionImmutableSetIterable<T>ImmutableSetIterable. partition(Predicate<? super T> predicate)PartitionMutableSet<T>MutableSet. partition(Predicate<? super T> predicate)PartitionMutableSetIterable<T>MutableSetIterable. partition(Predicate<? super T> predicate)PartitionSet<T>SetIterable. partition(Predicate<? super T> predicate)ImmutableSet<T>ImmutableSet. reject(Predicate<? super T> predicate)ImmutableSetIterable<T>ImmutableSetIterable. reject(Predicate<? super T> predicate)MutableSet<T>MutableSet. reject(Predicate<? super T> predicate)MutableSetIterable<T>MutableSetIterable. reject(Predicate<? super T> predicate)ParallelSetIterable<T>ParallelSetIterable. reject(Predicate<? super T> predicate)Creates a parallel iterable for rejecting elements from the current iterable.ParallelUnsortedSetIterable<T>ParallelUnsortedSetIterable. reject(Predicate<? super T> predicate)Creates a parallel iterable for rejecting elements from the current iterable.SetIterable<T>SetIterable. reject(Predicate<? super T> predicate)UnsortedSetIterable<T>UnsortedSetIterable. reject(Predicate<? super T> predicate)ImmutableSet<T>ImmutableSet. select(Predicate<? super T> predicate)ImmutableSetIterable<T>ImmutableSetIterable. select(Predicate<? super T> predicate)MutableSet<T>MutableSet. select(Predicate<? super T> predicate)MutableSetIterable<T>MutableSetIterable. select(Predicate<? super T> predicate)ParallelSetIterable<T>ParallelSetIterable. select(Predicate<? super T> predicate)Creates a parallel iterable for selecting elements from the current iterable.ParallelUnsortedSetIterable<T>ParallelUnsortedSetIterable. select(Predicate<? super T> predicate)Creates a parallel iterable for selecting elements from the current iterable.SetIterable<T>SetIterable. select(Predicate<? super T> predicate)UnsortedSetIterable<T>UnsortedSetIterable. select(Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted with parameters of type Predicate Modifier and Type Method Description <V> ImmutableList<V>ImmutableSortedSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableList<V>MutableSortedSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ParallelListIterable<V>ParallelSortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)Creates a parallel iterable for selecting and collecting elements from the current iterable.<V> ListIterable<V>SortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)ImmutableSortedSet<T>ImmutableSortedSet. dropWhile(Predicate<? super T> predicate)MutableSortedSet<T>MutableSortedSet. dropWhile(Predicate<? super T> predicate)SortedSetIterable<T>SortedSetIterable. dropWhile(Predicate<? super T> predicate)PartitionImmutableSortedSet<T>ImmutableSortedSet. partition(Predicate<? super T> predicate)PartitionMutableSortedSet<T>MutableSortedSet. partition(Predicate<? super T> predicate)PartitionSortedSet<T>SortedSetIterable. partition(Predicate<? super T> predicate)PartitionImmutableSortedSet<T>ImmutableSortedSet. partitionWhile(Predicate<? super T> predicate)PartitionMutableSortedSet<T>MutableSortedSet. partitionWhile(Predicate<? super T> predicate)PartitionSortedSet<T>SortedSetIterable. partitionWhile(Predicate<? super T> predicate)ImmutableSortedSet<T>ImmutableSortedSet. reject(Predicate<? super T> predicate)MutableSortedSet<T>MutableSortedSet. reject(Predicate<? super T> predicate)ParallelSortedSetIterable<T>ParallelSortedSetIterable. reject(Predicate<? super T> predicate)Creates a parallel iterable for rejecting elements from the current iterable.SortedSetIterable<T>SortedSetIterable. reject(Predicate<? super T> predicate)ImmutableSortedSet<T>ImmutableSortedSet. select(Predicate<? super T> predicate)MutableSortedSet<T>MutableSortedSet. select(Predicate<? super T> predicate)ParallelSortedSetIterable<T>ParallelSortedSetIterable. select(Predicate<? super T> predicate)Creates a parallel iterable for selecting elements from the current iterable.SortedSetIterable<T>SortedSetIterable. select(Predicate<? super T> predicate)ImmutableSortedSet<T>ImmutableSortedSet. takeWhile(Predicate<? super T> predicate)MutableSortedSet<T>MutableSortedSet. takeWhile(Predicate<? super T> predicate)SortedSetIterable<T>SortedSetIterable. takeWhile(Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack with parameters of type Predicate Modifier and Type Method Description <V> ImmutableStack<V>ImmutableStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableStack<V>MutableStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> StackIterable<V>StackIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)ImmutableStack<T>ImmutableStack. dropWhile(Predicate<? super T> predicate)MutableStack<T>MutableStack. dropWhile(Predicate<? super T> predicate)StackIterable<T>StackIterable. dropWhile(Predicate<? super T> predicate)PartitionImmutableStack<T>ImmutableStack. partition(Predicate<? super T> predicate)PartitionMutableStack<T>MutableStack. partition(Predicate<? super T> predicate)PartitionStack<T>StackIterable. partition(Predicate<? super T> predicate)PartitionImmutableStack<T>ImmutableStack. partitionWhile(Predicate<? super T> predicate)PartitionMutableStack<T>MutableStack. partitionWhile(Predicate<? super T> predicate)PartitionStack<T>StackIterable. partitionWhile(Predicate<? super T> predicate)ImmutableStack<T>ImmutableStack. reject(Predicate<? super T> predicate)MutableStack<T>MutableStack. reject(Predicate<? super T> predicate)StackIterable<T>StackIterable. reject(Predicate<? super T> predicate)ImmutableStack<T>ImmutableStack. select(Predicate<? super T> predicate)MutableStack<T>MutableStack. select(Predicate<? super T> predicate)StackIterable<T>StackIterable. select(Predicate<? super T> predicate)ImmutableStack<T>ImmutableStack. takeWhile(Predicate<? super T> predicate)MutableStack<T>MutableStack. takeWhile(Predicate<? super T> predicate)StackIterable<T>StackIterable. takeWhile(Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with parameters of type Predicate Modifier and Type Method Description booleanAbstractRichIterable. allSatisfy(Predicate<? super T> predicate)booleanUnmodifiableRichIterable. allSatisfy(Predicate<? super T> predicate)booleanAbstractRichIterable. anySatisfy(Predicate<? super T> predicate)booleanUnmodifiableRichIterable. anySatisfy(Predicate<? super T> predicate)<V,R extends java.util.Collection<V>>
RAbstractRichIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)<V> RichIterable<V>UnmodifiableRichIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V,R extends java.util.Collection<V>>
RUnmodifiableRichIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)intAbstractRichIterable. count(Predicate<? super T> predicate)intUnmodifiableRichIterable. count(Predicate<? super T> predicate)TAbstractRichIterable. detect(Predicate<? super T> predicate)TUnmodifiableRichIterable. detect(Predicate<? super T> predicate)TUnmodifiableRichIterable. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)java.util.Optional<T>AbstractRichIterable. detectOptional(Predicate<? super T> predicate)java.util.Optional<T>UnmodifiableRichIterable. detectOptional(Predicate<? super T> predicate)booleanAbstractRichIterable. noneSatisfy(Predicate<? super T> predicate)booleanUnmodifiableRichIterable. noneSatisfy(Predicate<? super T> predicate)PartitionIterable<T>UnmodifiableRichIterable. partition(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RAbstractRichIterable. reject(Predicate<? super T> predicate, R target)RichIterable<T>UnmodifiableRichIterable. reject(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RUnmodifiableRichIterable. reject(Predicate<? super T> predicate, R target)<R extends java.util.Collection<T>>
RAbstractRichIterable. select(Predicate<? super T> predicate, R target)RichIterable<T>UnmodifiableRichIterable. select(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RUnmodifiableRichIterable. select(Predicate<? super T> predicate, R target) -
Uses of Predicate in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag with parameters of type Predicate Modifier and Type Method Description <V,R extends java.util.Collection<V>>
RAbstractBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)intAbstractBag. count(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RAbstractBag. reject(Predicate<? super T> predicate, R target)<R extends java.util.Collection<T>>
RAbstractBag. select(Predicate<? super T> predicate, R target) -
Uses of Predicate in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable with parameters of type Predicate Modifier and Type Method Description booleanImmutableArrayBag. allSatisfy(Predicate<? super T> predicate)booleanImmutableEmptyBag. allSatisfy(Predicate<? super T> predicate)booleanImmutableHashBag. allSatisfy(Predicate<? super T> predicate)booleanImmutableSingletonBag. allSatisfy(Predicate<? super T> predicate)booleanImmutableArrayBag. anySatisfy(Predicate<? super T> predicate)booleanImmutableEmptyBag. anySatisfy(Predicate<? super T> predicate)booleanImmutableHashBag. anySatisfy(Predicate<? super T> predicate)booleanImmutableSingletonBag. anySatisfy(Predicate<? super T> predicate)<V> ImmutableBag<V>ImmutableArrayBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ImmutableBag<V>ImmutableEmptyBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ImmutableBag<V>ImmutableHashBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V,R extends java.util.Collection<V>>
RImmutableHashBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)<V> ImmutableBag<V>ImmutableSingletonBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V,R extends java.util.Collection<V>>
RImmutableSingletonBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)intImmutableEmptyBag. count(Predicate<? super T> predicate)intImmutableHashBag. count(Predicate<? super T> predicate)intImmutableSingletonBag. count(Predicate<? super T> predicate)TImmutableArrayBag. detect(Predicate<? super T> predicate)TImmutableEmptyBag. detect(Predicate<? super T> predicate)TImmutableHashBag. detect(Predicate<? super T> predicate)TImmutableSingletonBag. detect(Predicate<? super T> predicate)TImmutableEmptyBag. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)TImmutableHashBag. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)TImmutableSingletonBag. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)java.util.Optional<T>ImmutableArrayBag. detectOptional(Predicate<? super T> predicate)java.util.Optional<T>ImmutableEmptyBag. detectOptional(Predicate<? super T> predicate)java.util.Optional<T>ImmutableHashBag. detectOptional(Predicate<? super T> predicate)java.util.Optional<T>ImmutableSingletonBag. detectOptional(Predicate<? super T> predicate)private ImmutableBag<T>ImmutableSingletonBag. emptyIfMatchesOrThis(Predicate<java.lang.Object> predicate)booleanImmutableArrayBag. noneSatisfy(Predicate<? super T> predicate)booleanImmutableEmptyBag. noneSatisfy(Predicate<? super T> predicate)booleanImmutableHashBag. noneSatisfy(Predicate<? super T> predicate)booleanImmutableSingletonBag. noneSatisfy(Predicate<? super T> predicate)PartitionImmutableBag<T>AbstractImmutableBag. partition(Predicate<? super T> predicate)PartitionImmutableBag<T>ImmutableEmptyBag. partition(Predicate<? super T> predicate)PartitionImmutableBag<T>ImmutableHashBag. partition(Predicate<? super T> predicate)ImmutableBag<T>ImmutableArrayBag. reject(Predicate<? super T> predicate)ImmutableBag<T>ImmutableEmptyBag. reject(Predicate<? super T> predicate)ImmutableBag<T>ImmutableHashBag. reject(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RImmutableHashBag. reject(Predicate<? super T> predicate, R target)ImmutableBag<T>ImmutableSingletonBag. reject(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RImmutableSingletonBag. reject(Predicate<? super T> predicate, R target)ImmutableBag<T>ImmutableArrayBag. select(Predicate<? super T> predicate)ImmutableBag<T>ImmutableEmptyBag. select(Predicate<? super T> predicate)ImmutableBag<T>ImmutableHashBag. select(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RImmutableHashBag. select(Predicate<? super T> predicate, R target)ImmutableBag<T>ImmutableSingletonBag. select(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RImmutableSingletonBag. select(Predicate<? super T> predicate, R target) -
Uses of Predicate in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable with parameters of type Predicate Modifier and Type Method Description booleanAbstractMutableBagIterable. allSatisfy(Predicate<? super T> predicate)booleanAbstractMutableBagIterable. anySatisfy(Predicate<? super T> predicate)<V> MutableBag<V>AbstractMutableBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableBag<V>MultiReaderHashBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableBag<V>MultiReaderHashBag.UntouchableMutableBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableBag<V>SynchronizedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableBag<V>UnmodifiableBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)TAbstractMutableBagIterable. detect(Predicate<? super T> predicate)TAbstractMutableBagIterable. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)java.util.Optional<T>AbstractMutableBagIterable. detectOptional(Predicate<? super T> predicate)booleanAbstractMutableBagIterable. noneSatisfy(Predicate<? super T> predicate)PartitionMutableBag<T>AbstractMutableBag. partition(Predicate<? super T> predicate)PartitionMutableBag<T>MultiReaderHashBag. partition(Predicate<? super T> predicate)PartitionMutableBag<T>MultiReaderHashBag.UntouchableMutableBag. partition(Predicate<? super T> predicate)PartitionMutableBag<T>SynchronizedBag. partition(Predicate<? super T> predicate)PartitionMutableBag<T>UnmodifiableBag. partition(Predicate<? super T> predicate)MutableBag<T>AbstractMutableBag. reject(Predicate<? super T> predicate)MutableBag<T>MultiReaderHashBag. reject(Predicate<? super T> predicate)MutableBag<T>MultiReaderHashBag.UntouchableMutableBag. reject(Predicate<? super T> predicate)MutableBag<T>SynchronizedBag. reject(Predicate<? super T> predicate)MutableBag<T>UnmodifiableBag. reject(Predicate<? super T> predicate)booleanAbstractHashBag. removeIf(Predicate<? super T> predicate)MutableBag<T>AbstractMutableBag. select(Predicate<? super T> predicate)MutableBag<T>MultiReaderHashBag. select(Predicate<? super T> predicate)MutableBag<T>MultiReaderHashBag.UntouchableMutableBag. select(Predicate<? super T> predicate)MutableBag<T>SynchronizedBag. select(Predicate<? super T> predicate)MutableBag<T>UnmodifiableBag. select(Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable with parameters of type Predicate Modifier and Type Method Description booleanImmutableSortedBagImpl. allSatisfy(Predicate<? super T> predicate)booleanImmutableSortedBagImpl. anySatisfy(Predicate<? super T> predicate)<V> ImmutableList<V>AbstractImmutableSortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)intImmutableEmptySortedBag. count(Predicate<? super T> predicate)TImmutableSortedBagImpl. detect(Predicate<? super T> predicate)intImmutableEmptySortedBag. detectIndex(Predicate<? super T> predicate)intImmutableSortedBagImpl. detectIndex(Predicate<? super T> predicate)intAbstractImmutableSortedBag. detectLastIndex(Predicate<? super T> predicate)private intImmutableSortedBagImpl. detectNotIndex(Predicate<? super T> predicate)java.util.Optional<T>ImmutableSortedBagImpl. detectOptional(Predicate<? super T> predicate)ImmutableSortedBag<T>ImmutableEmptySortedBag. dropWhile(Predicate<? super T> predicate)ImmutableSortedBag<T>ImmutableSortedBagImpl. dropWhile(Predicate<? super T> predicate)booleanImmutableSortedBagImpl. noneSatisfy(Predicate<? super T> predicate)PartitionImmutableSortedBag<T>AbstractImmutableSortedBag. partition(Predicate<? super T> predicate)PartitionImmutableSortedBag<T>ImmutableEmptySortedBag. partitionWhile(Predicate<? super T> predicate)PartitionImmutableSortedBag<T>ImmutableSortedBagImpl. partitionWhile(Predicate<? super T> predicate)ImmutableSortedBag<T>AbstractImmutableSortedBag. reject(Predicate<? super T> predicate)ImmutableSortedBag<T>ImmutableEmptySortedBag. reject(Predicate<? super T> predicate)ImmutableSortedBag<T>AbstractImmutableSortedBag. select(Predicate<? super T> predicate)ImmutableSortedBag<T>ImmutableEmptySortedBag. select(Predicate<? super T> predicate)ImmutableSortedBag<T>ImmutableEmptySortedBag. takeWhile(Predicate<? super T> predicate)ImmutableSortedBag<T>ImmutableSortedBagImpl. takeWhile(Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable with parameters of type Predicate Modifier and Type Method Description <V> MutableList<V>AbstractMutableSortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableList<V>SynchronizedSortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableList<V>UnmodifiableSortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)intSynchronizedSortedBag. detectIndex(Predicate<? super T> predicate)intTreeBag. detectIndex(Predicate<? super T> predicate)intUnmodifiableSortedBag. detectIndex(Predicate<? super T> predicate)intAbstractMutableSortedBag. detectLastIndex(Predicate<? super T> predicate)intSynchronizedSortedBag. detectLastIndex(Predicate<? super T> predicate)intUnmodifiableSortedBag. detectLastIndex(Predicate<? super T> predicate)MutableSortedBag<T>AbstractMutableSortedBag. dropWhile(Predicate<? super T> predicate)MutableSortedBag<T>SynchronizedSortedBag. dropWhile(Predicate<? super T> predicate)MutableSortedBag<T>UnmodifiableSortedBag. dropWhile(Predicate<? super T> predicate)PartitionMutableSortedBag<T>AbstractMutableSortedBag. partition(Predicate<? super T> predicate)PartitionMutableSortedBag<T>SynchronizedSortedBag. partition(Predicate<? super T> predicate)PartitionMutableSortedBag<T>UnmodifiableSortedBag. partition(Predicate<? super T> predicate)PartitionMutableSortedBag<T>AbstractMutableSortedBag. partitionWhile(Predicate<? super T> predicate)PartitionMutableSortedBag<T>SynchronizedSortedBag. partitionWhile(Predicate<? super T> predicate)PartitionMutableSortedBag<T>UnmodifiableSortedBag. partitionWhile(Predicate<? super T> predicate)MutableSortedBag<T>AbstractMutableSortedBag. reject(Predicate<? super T> predicate)MutableSortedBag<T>SynchronizedSortedBag. reject(Predicate<? super T> predicate)MutableSortedBag<T>UnmodifiableSortedBag. reject(Predicate<? super T> predicate)booleanTreeBag. removeIf(Predicate<? super T> predicate)MutableSortedBag<T>AbstractMutableSortedBag. select(Predicate<? super T> predicate)MutableSortedBag<T>SynchronizedSortedBag. select(Predicate<? super T> predicate)MutableSortedBag<T>UnmodifiableSortedBag. select(Predicate<? super T> predicate)MutableSortedBag<T>AbstractMutableSortedBag. takeWhile(Predicate<? super T> predicate)MutableSortedBag<T>SynchronizedSortedBag. takeWhile(Predicate<? super T> predicate)MutableSortedBag<T>UnmodifiableSortedBag. takeWhile(Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with parameters of type Predicate Modifier and Type Method Description booleanAbstractBiMap. allSatisfy(Predicate<? super V> predicate)booleanAbstractBiMap. anySatisfy(Predicate<? super V> predicate)<VV,R extends java.util.Collection<VV>>
RAbstractBiMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)intAbstractBiMap. count(Predicate<? super V> predicate)VAbstractBiMap. detect(Predicate<? super V> predicate)VAbstractBiMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)java.util.Optional<V>AbstractBiMap. detectOptional(Predicate<? super V> predicate)booleanAbstractBiMap. noneSatisfy(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RAbstractBiMap. reject(Predicate<? super V> predicate, R target)<R extends java.util.Collection<V>>
RAbstractBiMap. select(Predicate<? super V> predicate, R target) -
Uses of Predicate in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable with parameters of type Predicate Modifier and Type Method Description <VV> ImmutableBag<VV>AbstractImmutableBiMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)PartitionImmutableSet<V>AbstractImmutableBiMap. partition(Predicate<? super V> predicate)ImmutableSet<V>AbstractImmutableBiMap. reject(Predicate<? super V> predicate)ImmutableSet<V>AbstractImmutableBiMap. select(Predicate<? super V> predicate) -
Uses of Predicate in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with parameters of type Predicate Modifier and Type Method Description booleanUnmodifiableBiMap. allSatisfy(Predicate<? super V> predicate)booleanUnmodifiableBiMap. anySatisfy(Predicate<? super V> predicate)<VV> MutableBag<VV>AbstractMutableBiMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<V1> RichIterable<V1>UnmodifiableBiMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends V1> function)<VV,R extends java.util.Collection<VV>>
RUnmodifiableBiMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)intUnmodifiableBiMap. count(Predicate<? super V> predicate)VUnmodifiableBiMap. detect(Predicate<? super V> predicate)VUnmodifiableBiMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)java.util.Optional<V>UnmodifiableBiMap. detectOptional(Predicate<? super V> predicate)booleanUnmodifiableBiMap. noneSatisfy(Predicate<? super V> predicate)PartitionMutableSet<V>AbstractMutableBiMap. partition(Predicate<? super V> predicate)PartitionMutableSet<V>SynchronizedBiMap. partition(Predicate<? super V> predicate)PartitionMutableSet<V>UnmodifiableBiMap. partition(Predicate<? super V> predicate)MutableSet<V>AbstractMutableBiMap. reject(Predicate<? super V> predicate)MutableSet<V>SynchronizedBiMap. reject(Predicate<? super V> predicate)MutableSet<V>UnmodifiableBiMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableBiMap. reject(Predicate<? super V> predicate, R target)MutableSet<V>AbstractMutableBiMap. select(Predicate<? super V> predicate)MutableSet<V>SynchronizedBiMap. select(Predicate<? super V> predicate)MutableSet<V>UnmodifiableBiMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableBiMap. select(Predicate<? super V> predicate, R target) -
Uses of Predicate in org.eclipse.collections.impl.block.factory
Classes in org.eclipse.collections.impl.block.factory that implement Predicate Modifier and Type Class Description private static classIntegerPredicates.IntegerIsEvenprivate static classIntegerPredicates.IntegerIsNegativeprivate static classIntegerPredicates.IntegerIsOddprivate static classIntegerPredicates.IntegerIsPositiveprivate static classIntegerPredicates.IntegerIsZeroprivate static classLongPredicates.LongIsEvenprivate static classLongPredicates.LongIsNegativeprivate static classLongPredicates.LongIsOddprivate static classLongPredicates.LongIsPositiveprivate static classLongPredicates.LongIsZeroclassPredicates<T>The Predicates class can be used to build common Predicates for use in methods such as detect, select and reject which are found on Iterate, MapIterate, and ArrayIterate classes.private static classPredicates.AbstractIterablePredicate<T>static classPredicates.AllSatisfy<T>private static classPredicates.AlwaysFalseprivate static classPredicates.AlwaysTrueprivate static classPredicates.AndIterablePredicate<T>private static classPredicates.AndPredicate<T>static classPredicates.AnySatisfy<T>private static classPredicates.AssignableFromPredicateprivate static classPredicates.AttributeFalse<T>protected static classPredicates.AttributePredicate<T,V>private static classPredicates.AttributeTrue<T>private static classPredicates.BetweenExclusive<T extends java.lang.Comparable<? super T>>private static classPredicates.BetweenInclusive<T extends java.lang.Comparable<? super T>>private static classPredicates.BetweenInclusiveFrom<T extends java.lang.Comparable<? super T>>private static classPredicates.BetweenInclusiveTo<T extends java.lang.Comparable<? super T>>private static classPredicates.BindPredicate2<T,P>private static classPredicates.CompareToPredicate<T extends java.lang.Comparable<? super T>>private static classPredicates.EqualPredicateprivate static classPredicates.FalseEqualsprotected static classPredicates.GreaterThanOrEqualPredicate<T extends java.lang.Comparable<? super T>>protected static classPredicates.GreaterThanPredicate<T extends java.lang.Comparable<? super T>>private static classPredicates.IdentityPredicateprivate static classPredicates.InCollectionPredicateprivate static classPredicates.InSetIterablePredicateprivate static classPredicates.InSetPredicateprivate static classPredicates.InstanceOfPredicateprivate static classPredicates.IsNullprotected static classPredicates.LessThanOrEqualPredicate<T extends java.lang.Comparable<? super T>>protected static classPredicates.LessThanPredicate<T extends java.lang.Comparable<? super T>>private static classPredicates.NeitherPredicate<T>private static classPredicates.NoneOfIterablePredicate<T>static classPredicates.NoneSatisfy<T>private static classPredicates.NotEqualPredicateprivate static classPredicates.NotIdentityPredicateprivate static classPredicates.NotInCollectionPredicateprivate static classPredicates.NotInSetIterablePredicateprivate static classPredicates.NotInSetPredicateprivate static classPredicates.NotInstanceOfPredicateprivate static classPredicates.NotNullprivate static classPredicates.NotPredicate<T>private static classPredicates.OrIterablePredicate<T>private static classPredicates.OrPredicate<T>private static classPredicates.PredicateAdapter<T>protected static classPredicates.RangePredicate<T extends java.lang.Comparable<? super T>>private static classPredicates.SubclassPredicateprivate static classPredicates.SuperclassPredicateprivate static classPredicates.SynchronizedPredicate<T>private static classPredicates.ThrowingPredicateAdapter<T>private static classPredicates.TrueEqualsprivate static classStringPredicates.ContainsCharacterprivate static classStringPredicates.ContainsStringprivate static classStringPredicates.Emptyprivate static classStringPredicates.EndsWithprivate static classStringPredicates.EqualsIgnoreCaseprivate static classStringPredicates.GreaterThanprivate static classStringPredicates.GreaterThanOrEqualToprivate static classStringPredicates.HasDigitsprivate static classStringPredicates.HasLettersprivate static classStringPredicates.HasLettersAndDigitsprivate static classStringPredicates.HasLettersOrDigitsprivate static classStringPredicates.HasLowercaseprivate static classStringPredicates.HasSpacesprivate static classStringPredicates.HasUndefinedprivate static classStringPredicates.HasUppercaseprivate static classStringPredicates.IsAlphaprivate static classStringPredicates.IsAlphanumericprivate static classStringPredicates.IsBlankprivate static classStringPredicates.IsNumericprivate static classStringPredicates.LessThanprivate static classStringPredicates.LessThanOrEqualToprivate static classStringPredicates.MatchesRegexprivate static classStringPredicates.NotBlankprivate static classStringPredicates.NotContainsStringprivate static classStringPredicates.NotEmptyprivate static classStringPredicates.Sizeprivate static classStringPredicates.StartsWithFields in org.eclipse.collections.impl.block.factory declared as Predicate Modifier and Type Field Description private Predicate<? super T>Predicates.AndPredicate. leftprivate Predicate<? super T>Predicates.NeitherPredicate. leftprivate Predicate<? super T>Predicates.OrPredicate. leftprivate Predicate<? super T>Predicates.AllSatisfy. predicateprivate Predicate<? super T>Predicates.AnySatisfy. predicateprotected Predicate<? super V>Predicates.AttributePredicate. predicateprivate Predicate<? super T>Predicates.NoneSatisfy. predicateprivate Predicate<T>Predicates.NotPredicate. predicateprivate Predicate<T>Predicates.PredicateAdapter. predicateprivate Predicate<T>Predicates.SynchronizedPredicate. predicateprivate Predicate<? super T>Predicates.AndPredicate. rightprivate Predicate<? super T>Predicates.NeitherPredicate. rightprivate Predicate<? super T>Predicates.OrPredicate. rightFields in org.eclipse.collections.impl.block.factory with type parameters of type Predicate Modifier and Type Field Description protected java.lang.Iterable<? extends Predicate<? super T>>Predicates.AbstractIterablePredicate. predicatesMethods in org.eclipse.collections.impl.block.factory that return Predicate Modifier and Type Method Description static <P,T>
Predicate<T>Predicates. bind(Predicate2<? super T,? super P> predicate, P parameter)static <T> Predicate<T>Predicates. cast(Predicate<T> predicate)Allows a Java 8 lambda or method reference to be used in a method taking a predicate without requiring an actual cast.static <T> Predicate<T>Predicates. synchronizedEach(Predicate<T> predicate)static <T> Predicate<T>Predicates. throwing(ThrowingPredicate<T> throwingPredicate)Allows a lambda or anonymous inner class that needs to throw a checked exception to be safely wrapped as a Predicate that will throw a RuntimeException, wrapping the checked exception that is the cause.static <T> Predicate<T>Predicates. throwing(ThrowingPredicate<T> throwingPredicate, Function2<T,? 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 Predicate that will throw a user specified RuntimeException based on the provided function.Methods in org.eclipse.collections.impl.block.factory with parameters of type Predicate Modifier and Type Method Description static <T> Predicates<T>Predicates. adapt(Predicate<T> predicate)static <T> Predicates<java.lang.Iterable<T>>Predicates. allSatisfy(Predicate<? super T> predicate)Predicates<T>Predicates. and(Predicate<? super T> op)static <T> Predicates<T>Predicates. and(Predicate<? super T>... predicates)static <T> Predicates<T>Predicates. and(Predicate<? super T> predicate1, Predicate<? super T> predicate2)static <T> Predicates<java.lang.Iterable<T>>Predicates. anySatisfy(Predicate<? super T> predicate)static <T,V>
Predicates<T>Predicates. attributeAllSatisfy(Function<? super T,? extends java.lang.Iterable<V>> function, Predicate<? super V> predicate)static <T,V>
Predicates<T>Predicates. attributeAnySatisfy(Function<? super T,? extends java.lang.Iterable<V>> function, Predicate<? super V> predicate)static <T,V>
Predicates<T>Predicates. attributeNoneSatisfy(Function<? super T,? extends java.lang.Iterable<V>> function, Predicate<? super V> predicate)static <T,V>
Predicates<T>Predicates. attributePredicate(Function<? super T,? extends V> function, Predicate<? super V> predicate)static <T extends java.lang.Comparable<? super T>,V>
CaseFunction<T,V>Functions. caseDefault(Function<? super T,? extends V> defaultFunction, Predicate<? super T> predicate, Function<? super T,? extends V> function)static <T> CaseProcedure<T>Procedures. caseDefault(Procedure<? super T> defaultProcedure, Predicate<? super T> predicate, Procedure<? super T> procedure)static <T> Predicate<T>Predicates. cast(Predicate<T> predicate)Allows a Java 8 lambda or method reference to be used in a method taking a predicate without requiring an actual cast.static <T,V>
Function<T,V>Functions. ifElse(Predicate<? super T> predicate, Function<? super T,? extends V> trueFunction, Function<? super T,? extends V> falseFunction)static <T> Procedure<T>Procedures. ifElse(Predicate<? super T> predicate, Procedure<? super T> trueProcedure, Procedure<? super T> falseProcedure)static <T,V>
Function<T,V>Functions. ifTrue(Predicate<? super T> predicate, Function<? super T,? extends V> function)static <T> Procedure<T>Procedures. ifTrue(Predicate<? super T> predicate, Procedure<? super T> block)static <T> Predicates<T>Predicates. neither(Predicate<? super T> operation1, Predicate<? super T> operation2)static <T> Predicates<T>Predicates. noneOf(Predicate<? super T>... operations)static <T> Predicates<java.lang.Iterable<T>>Predicates. noneSatisfy(Predicate<? super T> predicate)static <T> Predicates<T>Predicates. not(Predicate<T> predicate)Predicates<T>Predicates. or(Predicate<? super T> op)static <T> Predicates<T>Predicates. or(Predicate<? super T>... predicates)static <T> Predicates<T>Predicates. or(Predicate<? super T> predicate1, Predicate<? super T> predicate2)static <T> Predicate<T>Predicates. synchronizedEach(Predicate<T> predicate)Method parameters in org.eclipse.collections.impl.block.factory with type arguments of type Predicate Modifier and Type Method Description static <T> Predicates<T>Predicates. and(java.lang.Iterable<? extends Predicate<? super T>> predicates)static <T> Predicates<T>Predicates. noneOf(java.lang.Iterable<? extends Predicate<? super T>> operations)static <T> Predicates<T>Predicates. or(java.lang.Iterable<? extends Predicate<? super T>> predicates)Constructors in org.eclipse.collections.impl.block.factory with parameters of type Predicate Constructor Description AllSatisfy(Predicate<? super T> predicate)AndPredicate(Predicate<? super T> one, Predicate<? super T> two)AnySatisfy(Predicate<? super T> predicate)AttributePredicate(Function<? super T,? extends V> newFunction, Predicate<? super V> newPredicate)NeitherPredicate(Predicate<? super T> one, Predicate<? super T> two)NoneSatisfy(Predicate<? super T> predicate)NotPredicate(Predicate<T> newPredicate)OrPredicate(Predicate<? super T> one, Predicate<? super T> two)PredicateAdapter(Predicate<T> newPredicate)SynchronizedPredicate(Predicate<T> predicate)Constructor parameters in org.eclipse.collections.impl.block.factory with type arguments of type Predicate Constructor Description AbstractIterablePredicate(java.lang.Iterable<? extends Predicate<? super T>> predicates)AndIterablePredicate(java.lang.Iterable<? extends Predicate<? super T>> predicates)NoneOfIterablePredicate(java.lang.Iterable<? extends Predicate<? super T>> predicates)OrIterablePredicate(java.lang.Iterable<? extends Predicate<? super T>> predicates) -
Uses of Predicate in org.eclipse.collections.impl.block.function
Fields in org.eclipse.collections.impl.block.function declared as Predicate Modifier and Type Field Description private Predicate<? super T>IfFunction. predicateFields in org.eclipse.collections.impl.block.function with type parameters of type Predicate Modifier and Type Field Description private MutableList<Pair<Predicate<? super T>,Function<? super T,? extends V>>>CaseFunction. predicateFunctionsMethods in org.eclipse.collections.impl.block.function with parameters of type Predicate Modifier and Type Method Description CaseFunction<T,V>CaseFunction. addCase(Predicate<? super T> predicate, Function<? super T,? extends V> function)Constructors in org.eclipse.collections.impl.block.function with parameters of type Predicate Constructor Description IfFunction(Predicate<? super T> newPredicate, Function<? super T,? extends V> function)IfFunction(Predicate<? super T> predicate, Function<? super T,? extends V> function, Function<? super T,? extends V> elseFunction) -
Uses of Predicate in org.eclipse.collections.impl.block.predicate
Classes in org.eclipse.collections.impl.block.predicate that implement Predicate Modifier and Type Class Description classDropIterablePredicate<T>classDropWhileIterablePredicate<T>classMapEntryPredicate<T1,T2>classPairPredicate<T1,T2>Fields in org.eclipse.collections.impl.block.predicate declared as Predicate Modifier and Type Field Description private Predicate<? super T>DropWhileIterablePredicate. predicateConstructors in org.eclipse.collections.impl.block.predicate with parameters of type Predicate Constructor Description DropWhileIterablePredicate(Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.impl.block.predicate.checked
Classes in org.eclipse.collections.impl.block.predicate.checked that implement Predicate Modifier and Type Class Description classCheckedPredicate<T> -
Uses of Predicate in org.eclipse.collections.impl.block.procedure
Fields in org.eclipse.collections.impl.block.procedure declared as Predicate Modifier and Type Field Description private Predicate<? super T>AtomicCountProcedure. predicateprivate Predicate<? super T>CollectIfProcedure. predicateprivate Predicate<? super T>CountProcedure. predicateprivate Predicate<? super T>FastListCollectIfProcedure. predicateprivate Predicate<? super T>FastListRejectProcedure. predicateprivate Predicate<? super T>FastListSelectProcedure. predicateprivate Predicate<? super T>IfObjectIntProcedure. predicateprivate Predicate<? super T>IfProcedure. predicateprivate Predicate<? super T>IfProcedureWith. predicateprivate Predicate<? super T>PartitionProcedure. predicateprivate Predicate<? super T>RejectProcedure. predicateprivate Predicate<? super T>SelectProcedure. predicateFields in org.eclipse.collections.impl.block.procedure with type parameters of type Predicate Modifier and Type Field Description private java.util.List<Pair<Predicate<? super T>,Procedure<? super T>>>CaseProcedure. predicateProceduresMethods in org.eclipse.collections.impl.block.procedure with parameters of type Predicate Modifier and Type Method Description CaseProcedure<T>CaseProcedure. addCase(Predicate<? super T> predicate, Procedure<? super T> procedure)Constructors in org.eclipse.collections.impl.block.procedure with parameters of type Predicate Constructor Description AtomicCountProcedure(Predicate<? super T> predicate)CollectIfProcedure(int taskSize, Function<? super T,? extends V> function, Predicate<? super T> predicate)CollectIfProcedure(java.util.Collection<V> targetCollection, Function<? super T,? extends V> function, Predicate<? super T> predicate)CountProcedure(Predicate<? super T> newPredicate)FastListCollectIfProcedure(FastList<V> targetCollection, Function<? super T,? extends V> function, Predicate<? super T> predicate)FastListRejectProcedure(Predicate<? super T> newPredicate, FastList<T> targetCollection)FastListSelectProcedure(Predicate<? super T> newPredicate, FastList<T> targetCollection)IfObjectIntProcedure(Predicate<? super T> newPredicate, ObjectIntProcedure<? super T> objectIntProcedure)IfProcedure(Predicate<? super T> predicate, Procedure<? super T> procedure)IfProcedure(Predicate<? super T> predicate, Procedure<? super T> procedure, Procedure<? super T> elseProcedure)IfProcedureWith(Predicate<? super T> newPredicate, Procedure2<? super T,? super P> procedure)PartitionProcedure(Predicate<? super T> predicate, PartitionMutableCollection<T> partitionMutableCollection)RejectProcedure(Predicate<? super T> newPredicate, java.util.Collection<T> targetCollection)SelectProcedure(Predicate<? super T> newPredicate, java.util.Collection<T> targetCollection) -
Uses of Predicate in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with parameters of type Predicate Modifier and Type Method Description booleanAbstractSynchronizedRichIterable. allSatisfy(Predicate<? super T> predicate)booleanAbstractSynchronizedRichIterable. anySatisfy(Predicate<? super T> predicate)<V> RichIterable<V>AbstractSynchronizedRichIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V,R extends java.util.Collection<V>>
RAbstractSynchronizedRichIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)intAbstractSynchronizedRichIterable. count(Predicate<? super T> predicate)TAbstractSynchronizedRichIterable. detect(Predicate<? super T> predicate)TAbstractSynchronizedRichIterable. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)java.util.Optional<T>AbstractSynchronizedRichIterable. detectOptional(Predicate<? super T> predicate)booleanAbstractSynchronizedRichIterable. noneSatisfy(Predicate<? super T> predicate)PartitionIterable<T>AbstractSynchronizedRichIterable. partition(Predicate<? super T> predicate)RichIterable<T>AbstractSynchronizedRichIterable. reject(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RAbstractSynchronizedRichIterable. reject(Predicate<? super T> predicate, R target)RichIterable<T>AbstractSynchronizedRichIterable. select(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RAbstractSynchronizedRichIterable. select(Predicate<? super T> predicate, R target) -
Uses of Predicate in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with parameters of type Predicate Modifier and Type Method Description booleanAbstractCollectionAdapter. allSatisfy(Predicate<? super T> predicate)booleanAbstractMultiReaderMutableCollection. allSatisfy(Predicate<? super T> predicate)booleanAbstractMultiReaderMutableCollection.UntouchableMutableCollection. allSatisfy(Predicate<? super T> predicate)booleanAbstractUnmodifiableMutableCollection. allSatisfy(Predicate<? super T> predicate)booleanAbstractCollectionAdapter. anySatisfy(Predicate<? super T> predicate)booleanAbstractMultiReaderMutableCollection. anySatisfy(Predicate<? super T> predicate)booleanAbstractMultiReaderMutableCollection.UntouchableMutableCollection. anySatisfy(Predicate<? super T> predicate)booleanAbstractUnmodifiableMutableCollection. anySatisfy(Predicate<? super T> predicate)<V> MutableCollection<V>AbstractCollectionAdapter. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V,R extends java.util.Collection<V>>
RAbstractCollectionAdapter. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)<V,R extends java.util.Collection<V>>
RAbstractMultiReaderMutableCollection. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)<V,R extends java.util.Collection<V>>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)<V> MutableCollection<V>AbstractSynchronizedMutableCollection. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableCollection<V>AbstractUnmodifiableMutableCollection. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V,R extends java.util.Collection<V>>
RAbstractUnmodifiableMutableCollection. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)intAbstractCollectionAdapter. count(Predicate<? super T> predicate)intAbstractMultiReaderMutableCollection. count(Predicate<? super T> predicate)intAbstractMultiReaderMutableCollection.UntouchableMutableCollection. count(Predicate<? super T> predicate)intAbstractUnmodifiableMutableCollection. count(Predicate<? super T> predicate)TAbstractCollectionAdapter. detect(Predicate<? super T> predicate)TAbstractMultiReaderMutableCollection. detect(Predicate<? super T> predicate)TAbstractMultiReaderMutableCollection.UntouchableMutableCollection. detect(Predicate<? super T> predicate)TAbstractUnmodifiableMutableCollection. detect(Predicate<? super T> predicate)TAbstractCollectionAdapter. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)TAbstractMultiReaderMutableCollection. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)TAbstractMultiReaderMutableCollection.UntouchableMutableCollection. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)TAbstractUnmodifiableMutableCollection. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)java.util.Optional<T>AbstractCollectionAdapter. detectOptional(Predicate<? super T> predicate)java.util.Optional<T>AbstractMultiReaderMutableCollection. detectOptional(Predicate<? super T> predicate)java.util.Optional<T>AbstractMultiReaderMutableCollection.UntouchableMutableCollection. detectOptional(Predicate<? super T> predicate)java.util.Optional<T>AbstractUnmodifiableMutableCollection. detectOptional(Predicate<? super T> predicate)booleanAbstractCollectionAdapter. noneSatisfy(Predicate<? super T> predicate)booleanAbstractMultiReaderMutableCollection. noneSatisfy(Predicate<? super T> predicate)booleanAbstractMultiReaderMutableCollection.UntouchableMutableCollection. noneSatisfy(Predicate<? super T> predicate)booleanAbstractUnmodifiableMutableCollection. noneSatisfy(Predicate<? super T> predicate)PartitionMutableCollection<T>AbstractCollectionAdapter. partition(Predicate<? super T> predicate)PartitionMutableCollection<T>AbstractSynchronizedMutableCollection. partition(Predicate<? super T> predicate)PartitionMutableCollection<T>AbstractUnmodifiableMutableCollection. partition(Predicate<? super T> predicate)MutableCollection<T>AbstractCollectionAdapter. reject(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RAbstractCollectionAdapter. reject(Predicate<? super T> predicate, R target)<R extends java.util.Collection<T>>
RAbstractMultiReaderMutableCollection. reject(Predicate<? super T> predicate, R target)<R extends java.util.Collection<T>>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. reject(Predicate<? super T> predicate, R target)MutableCollection<T>AbstractSynchronizedMutableCollection. reject(Predicate<? super T> predicate)MutableCollection<T>AbstractUnmodifiableMutableCollection. reject(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RAbstractUnmodifiableMutableCollection. reject(Predicate<? super T> predicate, R target)booleanAbstractCollectionAdapter. removeIf(Predicate<? super T> predicate)booleanAbstractMultiReaderMutableCollection. removeIf(Predicate<? super T> predicate)booleanAbstractMultiReaderMutableCollection.UntouchableMutableCollection. removeIf(Predicate<? super T> predicate)booleanAbstractMutableCollection. removeIf(Predicate<? super T> predicate)booleanAbstractSynchronizedMutableCollection. removeIf(Predicate<? super T> predicate)booleanAbstractUnmodifiableMutableCollection. removeIf(Predicate<? super T> predicate)MutableCollection<T>AbstractCollectionAdapter. select(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RAbstractCollectionAdapter. select(Predicate<? super T> predicate, R target)<R extends java.util.Collection<T>>
RAbstractMultiReaderMutableCollection. select(Predicate<? super T> predicate, R target)<R extends java.util.Collection<T>>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. select(Predicate<? super T> predicate, R target)MutableCollection<T>AbstractSynchronizedMutableCollection. select(Predicate<? super T> predicate)MutableCollection<T>AbstractUnmodifiableMutableCollection. select(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RAbstractUnmodifiableMutableCollection. select(Predicate<? super T> predicate, R target) -
Uses of Predicate in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with parameters of type Predicate Modifier and Type Method Description static <T,R extends PartitionMutableCollection<T>>
java.util.stream.Collector<T,?,R>Collectors2. partition(Predicate<? super T> predicate, java.util.function.Supplier<R> supplier)Returns all elements of the stream split into a PartitionMutableCollection after evaluating the predicate.static <T,R extends java.util.Collection<T>>
java.util.stream.Collector<T,?,R>Collectors2. reject(Predicate<? super T> predicate, java.util.function.Supplier<R> supplier)Returns all elements of the stream that return false when evaluating the predicate.static <T,R extends java.util.Collection<T>>
java.util.stream.Collector<T,?,R>Collectors2. select(Predicate<? super T> predicate, java.util.function.Supplier<R> supplier)Returns all elements of the stream that return true when evaluating the predicate. -
Uses of Predicate in org.eclipse.collections.impl.factory
Fields in org.eclipse.collections.impl.factory declared as Predicate Modifier and Type Field Description private static Predicate<java.util.Set<?>>Sets. HAS_NON_NULL_COMPARATORprivate static Predicate<java.util.Set<?>>Sets. INSTANCE_OF_SORTED_SET_PREDICATE -
Uses of Predicate in org.eclipse.collections.impl.forkjoin
Methods in org.eclipse.collections.impl.forkjoin with parameters of type Predicate Modifier and Type Method Description static <T,V>
java.util.Collection<V>FJIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,V> function)Same effect asIterate.collectIf(Iterable, Predicate, Function), but executed in parallel batches.static <T,V>
java.util.Collection<V>FJIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,V> function, boolean allowReorderedResult)Same effect asIterate.collectIf(Iterable, Predicate, Function), but executed in parallel batches, and with potentially reordered results.static <T,V,R extends java.util.Collection<V>>
RFJIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,V> function, R target, boolean allowReorderedResult)Same effect asIterate.collectIf(Iterable, Predicate, Function), but executed in parallel batches, and writing output into the specified collection.static <T,V,R extends java.util.Collection<V>>
RFJIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,V> function, R target, int batchSize, java.util.concurrent.ForkJoinPool executor, boolean allowReorderedResult)static <T> intFJIterate. count(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)Same effect asIterate.count(Iterable, Predicate), but executed in parallel batches.static <T> intFJIterate. count(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, int batchSize, java.util.concurrent.ForkJoinPool executor)Same effect asIterate.count(Iterable, Predicate), but executed in parallel batches.static <T> java.util.Collection<T>FJIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)Same effect asIterate.reject(Iterable, Predicate), but executed in parallel batches.static <T> java.util.Collection<T>FJIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, boolean allowReorderedResult)Same effect asIterate.reject(Iterable, Predicate), but executed in parallel batches, and with a potentially reordered result.static <T,R extends java.util.Collection<T>>
RFJIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target, boolean allowReorderedResult)Same effect asIterate.reject(Iterable, Predicate), but executed in parallel batches, and writing output into the specified collection.static <T,R extends java.util.Collection<T>>
RFJIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target, int batchSize, java.util.concurrent.ForkJoinPool executor, boolean allowReorderedResult)static <T> java.util.Collection<T>FJIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)Same effect asIterate.select(Iterable, Predicate), but executed in parallel batches.static <T> java.util.Collection<T>FJIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, boolean allowReorderedResult)Same effect asIterate.select(Iterable, Predicate), but executed in parallel batches, and with a potentially reordered result.static <T,R extends java.util.Collection<T>>
RFJIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target, boolean allowReorderedResult)Same effect asIterate.select(Iterable, Predicate), but executed in parallel batches, and writing output into the specified collection.static <T,R extends java.util.Collection<T>>
RFJIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target, int batchSize, java.util.concurrent.ForkJoinPool executor, boolean allowReorderedResult)Same effect asIterate.select(Iterable, Predicate), but executed in parallel batches, and writing output into the specified collection. -
Uses of Predicate in org.eclipse.collections.impl.lazy
Classes in org.eclipse.collections.impl.lazy that implement Predicate Modifier and Type Class Description (package private) classAllSatisfyPredicate<T>private static classCollectIterable.AttributePredicate<T,V>Fields in org.eclipse.collections.impl.lazy declared as Predicate Modifier and Type Field Description private Predicate<? super T>AllSatisfyPredicate. leftprivate Predicate<? super V>CollectIterable.AttributePredicate. predicateprivate Predicate<? super T>DropWhileIterable. predicateprivate Predicate<? super T>RejectIterable. predicateprivate Predicate<? super T>SelectIterable. predicateprivate Predicate<? super T>TakeWhileIterable. predicateprivate Predicate<? super T>AllSatisfyPredicate. rightMethods in org.eclipse.collections.impl.lazy with parameters of type Predicate Modifier and Type Method Description booleanCollectIterable. allSatisfy(Predicate<? super V> predicate)booleanCompositeIterable. allSatisfy(Predicate<? super E> predicate)booleanDistinctIterable. allSatisfy(Predicate<? super T> predicate)booleanDropIterable. allSatisfy(Predicate<? super T> predicate)booleanDropWhileIterable. allSatisfy(Predicate<? super T> predicate)booleanFlatCollectIterable. allSatisfy(Predicate<? super V> predicate)booleanLazyIterableAdapter. allSatisfy(Predicate<? super T> predicate)booleanRejectIterable. allSatisfy(Predicate<? super T> predicate)booleanSelectInstancesOfIterable. allSatisfy(Predicate<? super T> predicate)booleanSelectIterable. allSatisfy(Predicate<? super T> predicate)booleanTapIterable. allSatisfy(Predicate<? super T> predicate)booleanCollectIterable. anySatisfy(Predicate<? super V> predicate)booleanCompositeIterable. anySatisfy(Predicate<? super E> predicate)booleanDistinctIterable. anySatisfy(Predicate<? super T> predicate)booleanDropIterable. anySatisfy(Predicate<? super T> predicate)booleanDropWhileIterable. anySatisfy(Predicate<? super T> predicate)booleanFlatCollectIterable. anySatisfy(Predicate<? super V> predicate)booleanLazyIterableAdapter. anySatisfy(Predicate<? super T> predicate)booleanRejectIterable. anySatisfy(Predicate<? super T> predicate)booleanSelectInstancesOfIterable. anySatisfy(Predicate<? super T> predicate)booleanSelectIterable. anySatisfy(Predicate<? super T> predicate)booleanTapIterable. anySatisfy(Predicate<? super T> predicate)<V> LazyIterable<V>AbstractLazyIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> LazyIterable<V>LazyIterableAdapter. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)VCollectIterable. detect(Predicate<? super V> predicate)ECompositeIterable. detect(Predicate<? super E> predicate)TDistinctIterable. detect(Predicate<? super T> predicate)TDropIterable. detect(Predicate<? super T> predicate)TDropWhileIterable. detect(Predicate<? super T> predicate)VFlatCollectIterable. detect(Predicate<? super V> predicate)TLazyIterableAdapter. detect(Predicate<? super T> predicate)TRejectIterable. detect(Predicate<? super T> predicate)TSelectInstancesOfIterable. detect(Predicate<? super T> predicate)TSelectIterable. detect(Predicate<? super T> predicate)TTapIterable. detect(Predicate<? super T> predicate)java.util.Optional<V>CollectIterable. detectOptional(Predicate<? super V> predicate)java.util.Optional<E>CompositeIterable. detectOptional(Predicate<? super E> predicate)java.util.Optional<T>DistinctIterable. detectOptional(Predicate<? super T> predicate)java.util.Optional<T>DropIterable. detectOptional(Predicate<? super T> predicate)java.util.Optional<T>DropWhileIterable. detectOptional(Predicate<? super T> predicate)java.util.Optional<V>FlatCollectIterable. detectOptional(Predicate<? super V> predicate)java.util.Optional<T>LazyIterableAdapter. detectOptional(Predicate<? super T> predicate)java.util.Optional<T>RejectIterable. detectOptional(Predicate<? super T> predicate)java.util.Optional<T>SelectInstancesOfIterable. detectOptional(Predicate<? super T> predicate)java.util.Optional<T>SelectIterable. detectOptional(Predicate<? super T> predicate)java.util.Optional<T>TapIterable. detectOptional(Predicate<? super T> predicate)LazyIterable<T>AbstractLazyIterable. dropWhile(Predicate<? super T> predicate)LazyIterable<T>LazyIterableAdapter. dropWhile(Predicate<? super T> predicate)booleanCollectIterable. noneSatisfy(Predicate<? super V> predicate)booleanCompositeIterable. noneSatisfy(Predicate<? super E> predicate)booleanDistinctIterable. noneSatisfy(Predicate<? super T> predicate)booleanDropIterable. noneSatisfy(Predicate<? super T> predicate)booleanDropWhileIterable. noneSatisfy(Predicate<? super T> predicate)booleanFlatCollectIterable. noneSatisfy(Predicate<? super V> predicate)booleanLazyIterableAdapter. noneSatisfy(Predicate<? super T> predicate)booleanRejectIterable. noneSatisfy(Predicate<? super T> predicate)booleanSelectInstancesOfIterable. noneSatisfy(Predicate<? super T> predicate)booleanSelectIterable. noneSatisfy(Predicate<? super T> predicate)booleanTapIterable. noneSatisfy(Predicate<? super T> predicate)PartitionMutableList<T>AbstractLazyIterable. partition(Predicate<? super T> predicate)LazyIterable<T>AbstractLazyIterable. reject(Predicate<? super T> predicate)LazyIterable<T>LazyIterableAdapter. reject(Predicate<? super T> predicate)LazyIterable<T>AbstractLazyIterable. select(Predicate<? super T> predicate)LazyIterable<T>LazyIterableAdapter. select(Predicate<? super T> predicate)LazyIterable<T>AbstractLazyIterable. takeWhile(Predicate<? super T> predicate)LazyIterable<T>LazyIterableAdapter. takeWhile(Predicate<? super T> predicate)Constructors in org.eclipse.collections.impl.lazy with parameters of type Predicate Constructor Description AllSatisfyPredicate(Predicate<? super T> left, Predicate<? super T> right)AttributePredicate(Function<? super T,? extends V> newFunction, Predicate<? super V> newPredicate)DropWhileIterable(java.lang.Iterable<T> newAdapted, Predicate<? super T> predicate)RejectIterable(java.lang.Iterable<T> newAdapted, Predicate<? super T> newPredicate)SelectIterable(java.lang.Iterable<T> newAdapted, Predicate<? super T> newPredicate)TakeWhileIterable(java.lang.Iterable<T> newAdapted, Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.impl.lazy.iterator
Fields in org.eclipse.collections.impl.lazy.iterator declared as Predicate Modifier and Type Field Description private Predicate<? super T>SelectIterator. predicateprivate Predicate<? super T>TakeWhileIterator. predicateConstructors in org.eclipse.collections.impl.lazy.iterator with parameters of type Predicate Constructor Description SelectIterator(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)SelectIterator(java.util.Iterator<T> iterator, Predicate<? super T> predicate)TakeWhileIterator(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)TakeWhileIterator(java.util.Iterator<T> iterator, Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.impl.lazy.parallel
Classes in org.eclipse.collections.impl.lazy.parallel that implement Predicate Modifier and Type Class Description private static classParallelDistinctIterable.DistinctAndPredicate<T>private static classParallelDistinctIterable.DistinctOrPredicate<T>private static classParallelSelectIterable.SelectAllSatisfyPredicate<T>Fields in org.eclipse.collections.impl.lazy.parallel declared as Predicate Modifier and Type Field Description private Predicate<? super T>ParallelSelectIterable.SelectAllSatisfyPredicate. leftprivate Predicate<? super T>ParallelDistinctIterable.DistinctAndPredicate. predicateprivate Predicate<? super T>ParallelDistinctIterable.DistinctOrPredicate. predicateprivate Predicate<? super T>ParallelSelectIterable. predicateprivate Predicate<? super T>ParallelSelectIterable.SelectAllSatisfyPredicate. rightMethods in org.eclipse.collections.impl.lazy.parallel with parameters of type Predicate Modifier and Type Method Description booleanAbstractMultiReaderParallelIterable. allSatisfy(Predicate<? super T> predicate)protected static <T> booleanAbstractParallelIterable. allSatisfy(AbstractParallelIterable<T,? extends RootBatch<T>> parallelIterable, Predicate<? super T> predicate)booleanAbstractSynchronizedParallelIterable. allSatisfy(Predicate<? super T> predicate)booleanNonParallelIterable. allSatisfy(Predicate<? super T> predicate)booleanParallelDistinctIterable. allSatisfy(Predicate<? super T> predicate)booleanParallelSelectIterable. allSatisfy(Predicate<? super T> predicate)booleanRootBatch. allSatisfy(Predicate<? super T> predicate)booleanAbstractMultiReaderParallelIterable. anySatisfy(Predicate<? super T> predicate)protected static <T> booleanAbstractParallelIterable. anySatisfy(AbstractParallelIterable<T,? extends RootBatch<T>> parallelIterable, Predicate<? super T> predicate)booleanAbstractSynchronizedParallelIterable. anySatisfy(Predicate<? super T> predicate)booleanNonParallelIterable. anySatisfy(Predicate<? super T> predicate)booleanParallelDistinctIterable. anySatisfy(Predicate<? super T> predicate)booleanParallelSelectIterable. anySatisfy(Predicate<? super T> predicate)booleanRootBatch. anySatisfy(Predicate<? super T> predicate)<V> ParallelIterable<V>AbstractParallelIterableImpl. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ParallelIterable<V>MultiReaderParallelIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ParallelIterable<V>SynchronizedParallelIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)intAbstractBatch. count(Predicate<? super T> predicate)intAbstractMultiReaderParallelIterable. count(Predicate<? super T> predicate)intAbstractParallelIterable. count(Predicate<? super T> predicate)intAbstractSynchronizedParallelIterable. count(Predicate<? super T> predicate)intBatch. count(Predicate<? super T> predicate)intNonParallelIterable. count(Predicate<? super T> predicate)TAbstractMultiReaderParallelIterable. detect(Predicate<? super T> predicate)protected static <T> TAbstractParallelIterable. detect(AbstractParallelIterable<T,? extends RootBatch<T>> parallelIterable, Predicate<? super T> predicate)TAbstractSynchronizedParallelIterable. detect(Predicate<? super T> predicate)TNonParallelIterable. detect(Predicate<? super T> predicate)TParallelDistinctIterable. detect(Predicate<? super T> predicate)TParallelSelectIterable. detect(Predicate<? super T> predicate)TRootBatch. detect(Predicate<? super T> predicate)TAbstractMultiReaderParallelIterable. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)TAbstractParallelIterable. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)TAbstractSynchronizedParallelIterable. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)TNonParallelIterable. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)booleanAbstractMultiReaderParallelIterable. noneSatisfy(Predicate<? super T> predicate)booleanAbstractParallelIterable. noneSatisfy(Predicate<? super T> predicate)booleanAbstractSynchronizedParallelIterable. noneSatisfy(Predicate<? super T> predicate)booleanNonParallelIterable. noneSatisfy(Predicate<? super T> predicate)ParallelIterable<T>AbstractParallelIterableImpl. reject(Predicate<? super T> predicate)ParallelIterable<T>MultiReaderParallelIterable. reject(Predicate<? super T> predicate)ParallelIterable<T>SynchronizedParallelIterable. reject(Predicate<? super T> predicate)ParallelIterable<T>AbstractParallelIterableImpl. select(Predicate<? super T> predicate)Batch<T>Batch. select(Predicate<? super T> predicate)ParallelIterable<T>MultiReaderParallelIterable. select(Predicate<? super T> predicate)OrderedBatch<T>OrderedBatch. select(Predicate<? super T> predicate)ParallelIterable<T>SynchronizedParallelIterable. select(Predicate<? super T> predicate)Constructors in org.eclipse.collections.impl.lazy.parallel with parameters of type Predicate Constructor Description DistinctAndPredicate(Predicate<? super T> predicate)DistinctOrPredicate(Predicate<? super T> predicate)ParallelSelectIterable(AbstractParallelIterable<T,? extends Batch<T>> parallelIterable, Predicate<? super T> predicate)SelectAllSatisfyPredicate(Predicate<? super T> left, Predicate<? super T> right) -
Uses of Predicate in org.eclipse.collections.impl.lazy.parallel.bag
Classes in org.eclipse.collections.impl.lazy.parallel.bag that implement Predicate Modifier and Type Class Description private static classParallelSelectUnsortedBag.SelectAllSatisfyPredicate<T>Fields in org.eclipse.collections.impl.lazy.parallel.bag declared as Predicate Modifier and Type Field Description private Predicate<? super T>ParallelSelectUnsortedBag.SelectAllSatisfyPredicate. leftprivate Predicate<? super T>ParallelSelectUnsortedBag. predicateprivate Predicate<? super T>SelectUnsortedBagBatch.IfProcedureWithOccurrences. predicateprivate Predicate<? super T>SelectUnsortedBagBatch. predicateprivate Predicate<? super T>ParallelSelectUnsortedBag.SelectAllSatisfyPredicate. rightMethods in org.eclipse.collections.impl.lazy.parallel.bag with parameters of type Predicate Modifier and Type Method Description booleanParallelCollectUnsortedBag. allSatisfy(Predicate<? super V> predicate)booleanParallelSelectUnsortedBag. allSatisfy(Predicate<? super T> predicate)booleanParallelCollectUnsortedBag. anySatisfy(Predicate<? super V> predicate)booleanParallelSelectUnsortedBag. anySatisfy(Predicate<? super T> predicate)<V> ParallelUnsortedBag<V>AbstractParallelUnsortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ParallelUnsortedBag<V>NonParallelUnsortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)VParallelCollectUnsortedBag. detect(Predicate<? super V> predicate)TParallelSelectUnsortedBag. detect(Predicate<? super T> predicate)ParallelUnsortedBag<T>AbstractParallelUnsortedBag. reject(Predicate<? super T> predicate)ParallelUnsortedBag<T>NonParallelUnsortedBag. reject(Predicate<? super T> predicate)ParallelUnsortedBag<T>AbstractParallelUnsortedBag. select(Predicate<? super T> predicate)UnsortedBagBatch<V>CollectUnsortedBagBatch. select(Predicate<? super V> predicate)UnsortedBagBatch<V>FlatCollectUnsortedBagBatch. select(Predicate<? super V> predicate)ParallelUnsortedBag<T>NonParallelUnsortedBag. select(Predicate<? super T> predicate)UnsortedBagBatch<T>SelectUnsortedBagBatch. select(Predicate<? super T> predicate)UnsortedBagBatch<T>UnsortedBagBatch. select(Predicate<? super T> predicate)Constructors in org.eclipse.collections.impl.lazy.parallel.bag with parameters of type Predicate Constructor Description IfProcedureWithOccurrences(Predicate<? super T> predicate, ObjectIntProcedure<? super T> procedure)ParallelSelectUnsortedBag(AbstractParallelUnsortedBag<T,? extends UnsortedBagBatch<T>> parallelIterable, Predicate<? super T> predicate)SelectAllSatisfyPredicate(Predicate<? super T> left, Predicate<? super T> right)SelectUnsortedBagBatch(UnsortedBagBatch<T> unsortedBagBatch, Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.impl.lazy.parallel.list
Classes in org.eclipse.collections.impl.lazy.parallel.list that implement Predicate Modifier and Type Class Description private static classParallelDistinctListIterable.DistinctAndPredicate<T>private static classParallelDistinctListIterable.DistinctOrPredicate<T>private static classParallelSelectListIterable.SelectAllSatisfyPredicate<T>Fields in org.eclipse.collections.impl.lazy.parallel.list declared as Predicate Modifier and Type Field Description private Predicate<? super T>ParallelSelectListIterable.SelectAllSatisfyPredicate. leftprivate Predicate<? super T>ParallelDistinctListIterable.DistinctAndPredicate. predicateprivate Predicate<? super T>ParallelDistinctListIterable.DistinctOrPredicate. predicateprivate Predicate<? super T>ParallelSelectListIterable. predicateprivate Predicate<? super T>SelectListBatch. predicateprivate Predicate<? super T>ParallelSelectListIterable.SelectAllSatisfyPredicate. rightMethods in org.eclipse.collections.impl.lazy.parallel.list with parameters of type Predicate Modifier and Type Method Description booleanListIterableBatch. allSatisfy(Predicate<? super T> predicate)booleanListIterableParallelIterable. allSatisfy(Predicate<? super T> predicate)booleanParallelCollectListIterable. allSatisfy(Predicate<? super V> predicate)booleanParallelDistinctListIterable. allSatisfy(Predicate<? super T> predicate)booleanParallelFlatCollectListIterable. allSatisfy(Predicate<? super V> predicate)booleanParallelSelectListIterable. allSatisfy(Predicate<? super T> predicate)booleanListIterableBatch. anySatisfy(Predicate<? super T> predicate)booleanListIterableParallelIterable. anySatisfy(Predicate<? super T> predicate)booleanParallelCollectListIterable. anySatisfy(Predicate<? super V> predicate)booleanParallelDistinctListIterable. anySatisfy(Predicate<? super T> predicate)booleanParallelFlatCollectListIterable. anySatisfy(Predicate<? super V> predicate)booleanParallelSelectListIterable. anySatisfy(Predicate<? super T> predicate)<V> ParallelListIterable<V>AbstractParallelListIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ParallelListIterable<V>MultiReaderParallelListIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ParallelListIterable<V>NonParallelListIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ParallelListIterable<V>SynchronizedParallelListIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)intListIterableBatch. count(Predicate<? super T> predicate)TListIterableBatch. detect(Predicate<? super T> predicate)TListIterableParallelIterable. detect(Predicate<? super T> predicate)VParallelCollectListIterable. detect(Predicate<? super V> predicate)TParallelDistinctListIterable. detect(Predicate<? super T> predicate)VParallelFlatCollectListIterable. detect(Predicate<? super V> predicate)TParallelSelectListIterable. detect(Predicate<? super T> predicate)ParallelListIterable<T>AbstractParallelListIterable. reject(Predicate<? super T> predicate)ParallelListIterable<T>MultiReaderParallelListIterable. reject(Predicate<? super T> predicate)ParallelListIterable<T>NonParallelListIterable. reject(Predicate<? super T> predicate)ParallelListIterable<T>SynchronizedParallelListIterable. reject(Predicate<? super T> predicate)ParallelListIterable<T>AbstractParallelListIterable. select(Predicate<? super T> predicate)ListBatch<V>CollectListBatch. select(Predicate<? super V> predicate)UnsortedSetBatch<T>DistinctBatch. select(Predicate<? super T> predicate)ListBatch<V>FlatCollectListBatch. select(Predicate<? super V> predicate)ListBatch<T>ListBatch. select(Predicate<? super T> predicate)ListBatch<T>ListIterableBatch. select(Predicate<? super T> predicate)ParallelListIterable<T>MultiReaderParallelListIterable. select(Predicate<? super T> predicate)ParallelListIterable<T>NonParallelListIterable. select(Predicate<? super T> predicate)ListBatch<T>SelectListBatch. select(Predicate<? super T> predicate)ParallelListIterable<T>SynchronizedParallelListIterable. select(Predicate<? super T> predicate)Constructors in org.eclipse.collections.impl.lazy.parallel.list with parameters of type Predicate Constructor Description DistinctAndPredicate(Predicate<? super T> predicate)DistinctOrPredicate(Predicate<? super T> predicate)ParallelSelectListIterable(AbstractParallelListIterable<T,? extends ListBatch<T>> parallelIterable, Predicate<? super T> predicate)SelectAllSatisfyPredicate(Predicate<? super T> left, Predicate<? super T> right)SelectListBatch(ListBatch<T> listBatch, Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.impl.lazy.parallel.set
Classes in org.eclipse.collections.impl.lazy.parallel.set that implement Predicate Modifier and Type Class Description private static classParallelSelectUnsortedSetIterable.SelectAllSatisfyPredicate<T>Fields in org.eclipse.collections.impl.lazy.parallel.set declared as Predicate Modifier and Type Field Description private Predicate<? super T>ParallelSelectUnsortedSetIterable.SelectAllSatisfyPredicate. leftprivate Predicate<? super T>ParallelSelectUnsortedSetIterable. predicateprivate Predicate<? super T>SelectUnsortedSetBatch. predicateprivate Predicate<? super T>ParallelSelectUnsortedSetIterable.SelectAllSatisfyPredicate. rightMethods in org.eclipse.collections.impl.lazy.parallel.set with parameters of type Predicate Modifier and Type Method Description booleanParallelCollectIterable. allSatisfy(Predicate<? super V> predicate)booleanParallelFlatCollectIterable. allSatisfy(Predicate<? super V> predicate)booleanParallelSelectUnsortedSetIterable. allSatisfy(Predicate<? super T> predicate)booleanParallelCollectIterable. anySatisfy(Predicate<? super V> predicate)booleanParallelFlatCollectIterable. anySatisfy(Predicate<? super V> predicate)booleanParallelSelectUnsortedSetIterable. anySatisfy(Predicate<? super T> predicate)<V> ParallelIterable<V>AbstractParallelUnsortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ParallelIterable<V>MultiReaderParallelUnsortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ParallelIterable<V>NonParallelUnsortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ParallelIterable<V>SynchronizedParallelUnsortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)VParallelCollectIterable. detect(Predicate<? super V> predicate)VParallelFlatCollectIterable. detect(Predicate<? super V> predicate)TParallelSelectUnsortedSetIterable. detect(Predicate<? super T> predicate)ParallelUnsortedSetIterable<T>AbstractParallelUnsortedSetIterable. reject(Predicate<? super T> predicate)ParallelUnsortedSetIterable<T>MultiReaderParallelUnsortedSetIterable. reject(Predicate<? super T> predicate)ParallelUnsortedSetIterable<T>NonParallelUnsortedSetIterable. reject(Predicate<? super T> predicate)ParallelUnsortedSetIterable<T>SynchronizedParallelUnsortedSetIterable. reject(Predicate<? super T> predicate)ParallelUnsortedSetIterable<T>AbstractParallelUnsortedSetIterable. select(Predicate<? super T> predicate)UnsortedSetBatch<V>CollectUnsortedSetBatch. select(Predicate<? super V> predicate)ParallelUnsortedSetIterable<T>MultiReaderParallelUnsortedSetIterable. select(Predicate<? super T> predicate)ParallelUnsortedSetIterable<T>NonParallelUnsortedSetIterable. select(Predicate<? super T> predicate)UnsortedSetBatch<T>SelectUnsortedSetBatch. select(Predicate<? super T> predicate)ParallelUnsortedSetIterable<T>SynchronizedParallelUnsortedSetIterable. select(Predicate<? super T> predicate)UnsortedSetBatch<T>UnsortedSetBatch. select(Predicate<? super T> predicate)Constructors in org.eclipse.collections.impl.lazy.parallel.set with parameters of type Predicate Constructor Description ParallelSelectUnsortedSetIterable(AbstractParallelUnsortedSetIterable<T,? extends UnsortedSetBatch<T>> delegate, Predicate<? super T> predicate)SelectAllSatisfyPredicate(Predicate<? super T> left, Predicate<? super T> right)SelectUnsortedSetBatch(UnsortedSetBatch<T> unsortedSetBatch, Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.impl.lazy.parallel.set.sorted
Classes in org.eclipse.collections.impl.lazy.parallel.set.sorted that implement Predicate Modifier and Type Class Description private static classParallelSelectSortedSetIterable.SelectAllSatisfyPredicate<T>Fields in org.eclipse.collections.impl.lazy.parallel.set.sorted declared as Predicate Modifier and Type Field Description private Predicate<? super T>ParallelSelectSortedSetIterable.SelectAllSatisfyPredicate. leftprivate Predicate<? super T>ParallelSelectSortedSetIterable. predicateprivate Predicate<? super T>SelectSortedSetBatch. predicateprivate Predicate<? super T>ParallelSelectSortedSetIterable.SelectAllSatisfyPredicate. rightMethods in org.eclipse.collections.impl.lazy.parallel.set.sorted with parameters of type Predicate Modifier and Type Method Description booleanParallelSelectSortedSetIterable. allSatisfy(Predicate<? super T> predicate)booleanParallelSelectSortedSetIterable. anySatisfy(Predicate<? super T> predicate)<V> ParallelListIterable<V>AbstractParallelSortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ParallelListIterable<V>NonParallelSortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ParallelListIterable<V>SynchronizedParallelSortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)TParallelSelectSortedSetIterable. detect(Predicate<? super T> predicate)ParallelSortedSetIterable<T>AbstractParallelSortedSetIterable. reject(Predicate<? super T> predicate)ParallelSortedSetIterable<T>NonParallelSortedSetIterable. reject(Predicate<? super T> predicate)ParallelSortedSetIterable<T>SynchronizedParallelSortedSetIterable. reject(Predicate<? super T> predicate)ParallelSortedSetIterable<T>AbstractParallelSortedSetIterable. select(Predicate<? super T> predicate)ListBatch<V>CollectSortedSetBatch. select(Predicate<? super V> predicate)ListBatch<V>FlatCollectSortedSetBatch. select(Predicate<? super V> predicate)ParallelSortedSetIterable<T>NonParallelSortedSetIterable. select(Predicate<? super T> predicate)SortedSetBatch<T>SelectSortedSetBatch. select(Predicate<? super T> predicate)SortedSetBatch<T>SortedSetBatch. select(Predicate<? super T> predicate)ParallelSortedSetIterable<T>SynchronizedParallelSortedSetIterable. select(Predicate<? super T> predicate)Constructors in org.eclipse.collections.impl.lazy.parallel.set.sorted with parameters of type Predicate Constructor Description ParallelSelectSortedSetIterable(AbstractParallelSortedSetIterable<T,? extends SortedSetBatch<T>> parallelIterable, Predicate<? super T> predicate)SelectAllSatisfyPredicate(Predicate<? super T> left, Predicate<? super T> right)SelectSortedSetBatch(SortedSetBatch<T> sortedSetBatch, Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type Predicate Modifier and Type Method Description booleanFlatCollectBooleanToObjectIterable. allSatisfy(Predicate<? super V> predicate)booleanFlatCollectByteToObjectIterable. allSatisfy(Predicate<? super V> predicate)booleanFlatCollectCharToObjectIterable. allSatisfy(Predicate<? super V> predicate)booleanFlatCollectDoubleToObjectIterable. allSatisfy(Predicate<? super V> predicate)booleanFlatCollectFloatToObjectIterable. allSatisfy(Predicate<? super V> predicate)booleanFlatCollectIntToObjectIterable. allSatisfy(Predicate<? super V> predicate)booleanFlatCollectLongToObjectIterable. allSatisfy(Predicate<? super V> predicate)booleanFlatCollectShortToObjectIterable. allSatisfy(Predicate<? super V> predicate)booleanFlatCollectBooleanToObjectIterable. anySatisfy(Predicate<? super V> predicate)booleanFlatCollectByteToObjectIterable. anySatisfy(Predicate<? super V> predicate)booleanFlatCollectCharToObjectIterable. anySatisfy(Predicate<? super V> predicate)booleanFlatCollectDoubleToObjectIterable. anySatisfy(Predicate<? super V> predicate)booleanFlatCollectFloatToObjectIterable. anySatisfy(Predicate<? super V> predicate)booleanFlatCollectIntToObjectIterable. anySatisfy(Predicate<? super V> predicate)booleanFlatCollectLongToObjectIterable. anySatisfy(Predicate<? super V> predicate)booleanFlatCollectShortToObjectIterable. anySatisfy(Predicate<? super V> predicate)VFlatCollectBooleanToObjectIterable. detect(Predicate<? super V> predicate)VFlatCollectByteToObjectIterable. detect(Predicate<? super V> predicate)VFlatCollectCharToObjectIterable. detect(Predicate<? super V> predicate)VFlatCollectDoubleToObjectIterable. detect(Predicate<? super V> predicate)VFlatCollectFloatToObjectIterable. detect(Predicate<? super V> predicate)VFlatCollectIntToObjectIterable. detect(Predicate<? super V> predicate)VFlatCollectLongToObjectIterable. detect(Predicate<? super V> predicate)VFlatCollectShortToObjectIterable. detect(Predicate<? super V> predicate)java.util.Optional<V>FlatCollectBooleanToObjectIterable. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>FlatCollectByteToObjectIterable. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>FlatCollectCharToObjectIterable. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>FlatCollectDoubleToObjectIterable. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>FlatCollectFloatToObjectIterable. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>FlatCollectIntToObjectIterable. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>FlatCollectLongToObjectIterable. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>FlatCollectShortToObjectIterable. detectOptional(Predicate<? super V> predicate)booleanFlatCollectBooleanToObjectIterable. noneSatisfy(Predicate<? super V> predicate)booleanFlatCollectByteToObjectIterable. noneSatisfy(Predicate<? super V> predicate)booleanFlatCollectCharToObjectIterable. noneSatisfy(Predicate<? super V> predicate)booleanFlatCollectDoubleToObjectIterable. noneSatisfy(Predicate<? super V> predicate)booleanFlatCollectFloatToObjectIterable. noneSatisfy(Predicate<? super V> predicate)booleanFlatCollectIntToObjectIterable. noneSatisfy(Predicate<? super V> predicate)booleanFlatCollectLongToObjectIterable. noneSatisfy(Predicate<? super V> predicate)booleanFlatCollectShortToObjectIterable. noneSatisfy(Predicate<? super V> predicate) -
Uses of Predicate in org.eclipse.collections.impl.list
Methods in org.eclipse.collections.impl.list with parameters of type Predicate Modifier and Type Method Description <R extends java.util.Collection<java.lang.Integer>>
RInterval. reject(Predicate<? super java.lang.Integer> predicate, R target)<R extends java.util.Collection<java.lang.Integer>>
RInterval. select(Predicate<? super java.lang.Integer> predicate, R target) -
Uses of Predicate in org.eclipse.collections.impl.list.fixed
Methods in org.eclipse.collections.impl.list.fixed with parameters of type Predicate Modifier and Type Method Description booleanAbstractArrayAdapter. allSatisfy(Predicate<? super T> predicate)booleanAbstractArrayAdapter. anySatisfy(Predicate<? super T> predicate)<V,R extends java.util.Collection<V>>
RAbstractArrayAdapter. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)intAbstractArrayAdapter. count(Predicate<? super T> predicate)TAbstractArrayAdapter. detect(Predicate<? super T> predicate)intAbstractArrayAdapter. detectIndex(Predicate<? super T> predicate)intAbstractArrayAdapter. detectLastIndex(Predicate<? super T> predicate)java.util.Optional<T>AbstractArrayAdapter. detectOptional(Predicate<? super T> predicate)booleanAbstractArrayAdapter. noneSatisfy(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RAbstractArrayAdapter. reject(Predicate<? super T> predicate, R target)booleanAbstractArrayAdapter. removeIf(Predicate<? super T> predicate)booleanAbstractMemoryEfficientMutableList. removeIf(Predicate<? super T> predicate)booleanAbstractMemoryEfficientMutableList.SubList. removeIf(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RAbstractArrayAdapter. select(Predicate<? super T> predicate, R target) -
Uses of Predicate in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable with parameters of type Predicate Modifier and Type Method Description booleanImmutableArrayList. allSatisfy(Predicate<? super T> predicate)booleanImmutableEmptyList. allSatisfy(Predicate<? super T> predicate)booleanImmutableArrayList. anySatisfy(Predicate<? super T> predicate)booleanImmutableEmptyList. anySatisfy(Predicate<? super T> predicate)<V> ImmutableList<V>AbstractImmutableList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ImmutableList<V>ImmutableArrayList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ImmutableList<V>ImmutableEmptyList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V,R extends java.util.Collection<V>>
RImmutableEmptyList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)intAbstractImmutableList. count(Predicate<? super T> predicate)intImmutableArrayList. count(Predicate<? super T> predicate)intImmutableEmptyList. count(Predicate<? super T> predicate)TImmutableArrayList. detect(Predicate<? super T> predicate)TImmutableEmptyList. detect(Predicate<? super T> predicate)TImmutableEmptyList. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)intAbstractImmutableList. detectIndex(Predicate<? super T> predicate)intAbstractImmutableList. detectLastIndex(Predicate<? super T> predicate)private intImmutableArrayList. detectNotIndex(Predicate<? super T> predicate)java.util.Optional<T>ImmutableArrayList. detectOptional(Predicate<? super T> predicate)java.util.Optional<T>ImmutableEmptyList. detectOptional(Predicate<? super T> predicate)ImmutableList<T>AbstractImmutableList. dropWhile(Predicate<? super T> predicate)ImmutableList<T>ImmutableArrayList. dropWhile(Predicate<? super T> predicate)ImmutableList<T>ImmutableEmptyList. dropWhile(Predicate<? super T> predicate)booleanImmutableArrayList. noneSatisfy(Predicate<? super T> predicate)booleanImmutableEmptyList. noneSatisfy(Predicate<? super T> predicate)PartitionImmutableList<T>AbstractImmutableList. partition(Predicate<? super T> predicate)PartitionImmutableList<T>ImmutableArrayList. partition(Predicate<? super T> predicate)PartitionImmutableList<T>ImmutableEmptyList. partition(Predicate<? super T> predicate)PartitionImmutableList<T>AbstractImmutableList. partitionWhile(Predicate<? super T> predicate)PartitionImmutableList<T>ImmutableArrayList. partitionWhile(Predicate<? super T> predicate)PartitionImmutableList<T>ImmutableEmptyList. partitionWhile(Predicate<? super T> predicate)ImmutableList<T>AbstractImmutableList. reject(Predicate<? super T> predicate)ImmutableList<T>ImmutableArrayList. reject(Predicate<? super T> predicate)ImmutableList<T>ImmutableEmptyList. reject(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RImmutableEmptyList. reject(Predicate<? super T> predicate, R target)ImmutableList<T>AbstractImmutableList. select(Predicate<? super T> predicate)ImmutableList<T>ImmutableArrayList. select(Predicate<? super T> predicate)ImmutableList<T>ImmutableEmptyList. select(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RImmutableEmptyList. select(Predicate<? super T> predicate, R target)ImmutableList<T>AbstractImmutableList. takeWhile(Predicate<? super T> predicate)ImmutableList<T>ImmutableArrayList. takeWhile(Predicate<? super T> predicate)ImmutableList<T>ImmutableEmptyList. takeWhile(Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with parameters of type Predicate Modifier and Type Method Description booleanAbstractMutableList. allSatisfy(Predicate<? super T> predicate)booleanArrayListAdapter. allSatisfy(Predicate<? super T> predicate)booleanCompositeFastList. allSatisfy(Predicate<? super E> predicate)booleanFastList. allSatisfy(Predicate<? super T> predicate)booleanListAdapter. allSatisfy(Predicate<? super T> predicate)booleanRandomAccessListAdapter. allSatisfy(Predicate<? super T> predicate)booleanAbstractMutableList. anySatisfy(Predicate<? super T> predicate)booleanArrayListAdapter. anySatisfy(Predicate<? super T> predicate)booleanCompositeFastList. anySatisfy(Predicate<? super E> predicate)booleanFastList. anySatisfy(Predicate<? super T> predicate)booleanListAdapter. anySatisfy(Predicate<? super T> predicate)booleanRandomAccessListAdapter. anySatisfy(Predicate<? super T> predicate)<V> MutableList<V>AbstractListAdapter. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V,R extends java.util.Collection<V>>
RAbstractMutableList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)<V> ArrayListAdapter<V>ArrayListAdapter. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> FastList<V>FastList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V,R extends java.util.Collection<V>>
RFastList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)<V> MutableList<V>MultiReaderFastList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableList<V>MultiReaderFastList.UntouchableMutableList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableList<V>RandomAccessListAdapter. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableList<V>SynchronizedMutableList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableList<V>UnmodifiableMutableList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)intAbstractMutableList. count(Predicate<? super T> predicate)intArrayListAdapter. count(Predicate<? super T> predicate)intCompositeFastList. count(Predicate<? super E> predicate)intFastList. count(Predicate<? super T> predicate)intListAdapter. count(Predicate<? super T> predicate)intRandomAccessListAdapter. count(Predicate<? super T> predicate)TAbstractMutableList. detect(Predicate<? super T> predicate)TArrayListAdapter. detect(Predicate<? super T> predicate)TFastList. detect(Predicate<? super T> predicate)TListAdapter. detect(Predicate<? super T> predicate)TRandomAccessListAdapter. detect(Predicate<? super T> predicate)TArrayListAdapter. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)TListAdapter. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)TRandomAccessListAdapter. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)intAbstractMutableList. detectIndex(Predicate<? super T> predicate)intArrayListAdapter. detectIndex(Predicate<? super T> predicate)intFastList. detectIndex(Predicate<? super T> predicate)intListAdapter. detectIndex(Predicate<? super T> predicate)intMultiReaderFastList. detectIndex(Predicate<? super T> predicate)intMultiReaderFastList.UntouchableMutableList. detectIndex(Predicate<? super T> predicate)intRandomAccessListAdapter. detectIndex(Predicate<? super T> predicate)intSynchronizedMutableList. detectIndex(Predicate<? super T> predicate)intUnmodifiableMutableList. detectIndex(Predicate<? super T> predicate)intAbstractMutableList. detectLastIndex(Predicate<? super T> predicate)intArrayListAdapter. detectLastIndex(Predicate<? super T> predicate)intFastList. detectLastIndex(Predicate<? super T> predicate)intListAdapter. detectLastIndex(Predicate<? super T> predicate)intMultiReaderFastList. detectLastIndex(Predicate<? super T> predicate)intMultiReaderFastList.UntouchableMutableList. detectLastIndex(Predicate<? super T> predicate)intRandomAccessListAdapter. detectLastIndex(Predicate<? super T> predicate)intSynchronizedMutableList. detectLastIndex(Predicate<? super T> predicate)intUnmodifiableMutableList. detectLastIndex(Predicate<? super T> predicate)private intFastList. detectNotIndex(Predicate<? super T> predicate)java.util.Optional<T>AbstractMutableList. detectOptional(Predicate<? super T> predicate)java.util.Optional<T>FastList. detectOptional(Predicate<? super T> predicate)MutableList<T>AbstractMutableList. dropWhile(Predicate<? super T> predicate)MutableList<T>ArrayListAdapter. dropWhile(Predicate<? super T> predicate)MutableList<T>FastList. dropWhile(Predicate<? super T> predicate)MutableList<T>ListAdapter. dropWhile(Predicate<? super T> predicate)MutableList<T>MultiReaderFastList. dropWhile(Predicate<? super T> predicate)MutableList<T>MultiReaderFastList.UntouchableMutableList. dropWhile(Predicate<? super T> predicate)MutableList<T>RandomAccessListAdapter. dropWhile(Predicate<? super T> predicate)MutableList<T>SynchronizedMutableList. dropWhile(Predicate<? super T> predicate)MutableList<T>UnmodifiableMutableList. dropWhile(Predicate<? super T> predicate)voidFastList. forEachIf(Predicate<? super T> predicate, Procedure<? super T> procedure)booleanAbstractMutableList. noneSatisfy(Predicate<? super T> predicate)booleanArrayListAdapter. noneSatisfy(Predicate<? super T> predicate)booleanCompositeFastList. noneSatisfy(Predicate<? super E> predicate)booleanFastList. noneSatisfy(Predicate<? super T> predicate)booleanListAdapter. noneSatisfy(Predicate<? super T> predicate)booleanRandomAccessListAdapter. noneSatisfy(Predicate<? super T> predicate)PartitionMutableList<T>AbstractListAdapter. partition(Predicate<? super T> predicate)PartitionMutableList<T>AbstractMutableList. partition(Predicate<? super T> predicate)PartitionMutableList<T>ArrayListAdapter. partition(Predicate<? super T> predicate)PartitionFastList<T>FastList. partition(Predicate<? super T> predicate)PartitionMutableList<T>MultiReaderFastList. partition(Predicate<? super T> predicate)PartitionMutableList<T>MultiReaderFastList.UntouchableMutableList. partition(Predicate<? super T> predicate)PartitionMutableList<T>RandomAccessListAdapter. partition(Predicate<? super T> predicate)PartitionMutableList<T>SynchronizedMutableList. partition(Predicate<? super T> predicate)PartitionMutableList<T>UnmodifiableMutableList. partition(Predicate<? super T> predicate)PartitionMutableList<T>AbstractMutableList. partitionWhile(Predicate<? super T> predicate)PartitionMutableList<T>ArrayListAdapter. partitionWhile(Predicate<? super T> predicate)PartitionMutableList<T>FastList. partitionWhile(Predicate<? super T> predicate)PartitionMutableList<T>ListAdapter. partitionWhile(Predicate<? super T> predicate)PartitionMutableList<T>MultiReaderFastList. partitionWhile(Predicate<? super T> predicate)PartitionMutableList<T>MultiReaderFastList.UntouchableMutableList. partitionWhile(Predicate<? super T> predicate)PartitionMutableList<T>RandomAccessListAdapter. partitionWhile(Predicate<? super T> predicate)PartitionMutableList<T>SynchronizedMutableList. partitionWhile(Predicate<? super T> predicate)PartitionMutableList<T>UnmodifiableMutableList. partitionWhile(Predicate<? super T> predicate)MutableList<T>AbstractListAdapter. reject(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RAbstractMutableList. reject(Predicate<? super T> predicate, R target)ArrayListAdapter<T>ArrayListAdapter. reject(Predicate<? super T> predicate)<R extends java.util.Collection<E>>
RCompositeFastList. reject(Predicate<? super E> predicate, R target)FastList<T>FastList. reject(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RFastList. reject(Predicate<? super T> predicate, R target)MutableList<T>MultiReaderFastList.UntouchableMutableList. reject(Predicate<? super T> predicate)MutableList<T>RandomAccessListAdapter. reject(Predicate<? super T> predicate)MutableList<T>SynchronizedMutableList. reject(Predicate<? super T> predicate)MutableList<T>UnmodifiableMutableList. reject(Predicate<? super T> predicate)booleanAbstractMutableList. removeIf(Predicate<? super T> predicate)booleanFastList. removeIf(Predicate<? super T> predicate)MutableList<T>AbstractListAdapter. select(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RAbstractMutableList. select(Predicate<? super T> predicate, R target)ArrayListAdapter<T>ArrayListAdapter. select(Predicate<? super T> predicate)<R extends java.util.Collection<E>>
RCompositeFastList. select(Predicate<? super E> predicate, R target)FastList<T>FastList. select(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RFastList. select(Predicate<? super T> predicate, R target)MutableList<T>MultiReaderFastList.UntouchableMutableList. select(Predicate<? super T> predicate)MutableList<T>RandomAccessListAdapter. select(Predicate<? super T> predicate)MutableList<T>SynchronizedMutableList. select(Predicate<? super T> predicate)MutableList<T>UnmodifiableMutableList. select(Predicate<? super T> predicate)MutableList<T>AbstractMutableList. takeWhile(Predicate<? super T> predicate)MutableList<T>ArrayListAdapter. takeWhile(Predicate<? super T> predicate)MutableList<T>FastList. takeWhile(Predicate<? super T> predicate)MutableList<T>ListAdapter. takeWhile(Predicate<? super T> predicate)MutableList<T>MultiReaderFastList. takeWhile(Predicate<? super T> predicate)MutableList<T>MultiReaderFastList.UntouchableMutableList. takeWhile(Predicate<? super T> predicate)MutableList<T>RandomAccessListAdapter. takeWhile(Predicate<? super T> predicate)MutableList<T>SynchronizedMutableList. takeWhile(Predicate<? super T> predicate)MutableList<T>UnmodifiableMutableList. takeWhile(Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.impl.map
Methods in org.eclipse.collections.impl.map with parameters of type Predicate Modifier and Type Method Description booleanAbstractMapIterable. allSatisfy(Predicate<? super V> predicate)booleanAbstractMapIterable. anySatisfy(Predicate<? super V> predicate)VAbstractMapIterable. detect(Predicate<? super V> predicate)VAbstractMapIterable. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)java.util.Optional<V>AbstractMapIterable. detectOptional(Predicate<? super V> predicate)booleanAbstractMapIterable. noneSatisfy(Predicate<? super V> predicate)PartitionMutableCollection<V>AbstractSynchronizedMapIterable. partition(Predicate<? super V> predicate)MutableCollection<V>AbstractSynchronizedMapIterable. reject(Predicate<? super V> predicate)MutableCollection<V>AbstractSynchronizedMapIterable. select(Predicate<? super V> predicate) -
Uses of Predicate in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable with parameters of type Predicate Modifier and Type Method Description <R> ImmutableBag<R>AbstractImmutableMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)PartitionImmutableBag<V>AbstractImmutableMap. partition(Predicate<? super V> predicate)ImmutableBag<V>AbstractImmutableMap. reject(Predicate<? super V> predicate)ImmutableBag<V>AbstractImmutableMap. select(Predicate<? super V> predicate) -
Uses of Predicate in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type Predicate Modifier and Type Method Description booleanImmutableByteObjectEmptyMap. allSatisfy(Predicate<? super V> predicate)booleanImmutableByteObjectHashMap. allSatisfy(Predicate<? super V> predicate)booleanImmutableByteObjectSingletonMap. allSatisfy(Predicate<? super V> predicate)booleanImmutableCharObjectEmptyMap. allSatisfy(Predicate<? super V> predicate)booleanImmutableCharObjectHashMap. allSatisfy(Predicate<? super V> predicate)booleanImmutableCharObjectSingletonMap. allSatisfy(Predicate<? super V> predicate)booleanImmutableDoubleObjectEmptyMap. allSatisfy(Predicate<? super V> predicate)booleanImmutableDoubleObjectHashMap. allSatisfy(Predicate<? super V> predicate)booleanImmutableDoubleObjectSingletonMap. allSatisfy(Predicate<? super V> predicate)booleanImmutableFloatObjectEmptyMap. allSatisfy(Predicate<? super V> predicate)booleanImmutableFloatObjectHashMap. allSatisfy(Predicate<? super V> predicate)booleanImmutableFloatObjectSingletonMap. allSatisfy(Predicate<? super V> predicate)booleanImmutableIntObjectEmptyMap. allSatisfy(Predicate<? super V> predicate)booleanImmutableIntObjectHashMap. allSatisfy(Predicate<? super V> predicate)booleanImmutableIntObjectSingletonMap. allSatisfy(Predicate<? super V> predicate)booleanImmutableLongObjectEmptyMap. allSatisfy(Predicate<? super V> predicate)booleanImmutableLongObjectHashMap. allSatisfy(Predicate<? super V> predicate)booleanImmutableLongObjectSingletonMap. allSatisfy(Predicate<? super V> predicate)booleanImmutableShortObjectEmptyMap. allSatisfy(Predicate<? super V> predicate)booleanImmutableShortObjectHashMap. allSatisfy(Predicate<? super V> predicate)booleanImmutableShortObjectSingletonMap. allSatisfy(Predicate<? super V> predicate)booleanImmutableByteObjectEmptyMap. anySatisfy(Predicate<? super V> predicate)booleanImmutableByteObjectHashMap. anySatisfy(Predicate<? super V> predicate)booleanImmutableByteObjectSingletonMap. anySatisfy(Predicate<? super V> predicate)booleanImmutableCharObjectEmptyMap. anySatisfy(Predicate<? super V> predicate)booleanImmutableCharObjectHashMap. anySatisfy(Predicate<? super V> predicate)booleanImmutableCharObjectSingletonMap. anySatisfy(Predicate<? super V> predicate)booleanImmutableDoubleObjectEmptyMap. anySatisfy(Predicate<? super V> predicate)booleanImmutableDoubleObjectHashMap. anySatisfy(Predicate<? super V> predicate)booleanImmutableDoubleObjectSingletonMap. anySatisfy(Predicate<? super V> predicate)booleanImmutableFloatObjectEmptyMap. anySatisfy(Predicate<? super V> predicate)booleanImmutableFloatObjectHashMap. anySatisfy(Predicate<? super V> predicate)booleanImmutableFloatObjectSingletonMap. anySatisfy(Predicate<? super V> predicate)booleanImmutableIntObjectEmptyMap. anySatisfy(Predicate<? super V> predicate)booleanImmutableIntObjectHashMap. anySatisfy(Predicate<? super V> predicate)booleanImmutableIntObjectSingletonMap. anySatisfy(Predicate<? super V> predicate)booleanImmutableLongObjectEmptyMap. anySatisfy(Predicate<? super V> predicate)booleanImmutableLongObjectHashMap. anySatisfy(Predicate<? super V> predicate)booleanImmutableLongObjectSingletonMap. anySatisfy(Predicate<? super V> predicate)booleanImmutableShortObjectEmptyMap. anySatisfy(Predicate<? super V> predicate)booleanImmutableShortObjectHashMap. anySatisfy(Predicate<? super V> predicate)booleanImmutableShortObjectSingletonMap. anySatisfy(Predicate<? super V> predicate)<VV> ImmutableBag<VV>ImmutableByteObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RImmutableByteObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> ImmutableBag<VV>ImmutableByteObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RImmutableByteObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> ImmutableBag<VV>ImmutableByteObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RImmutableByteObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> ImmutableBag<VV>ImmutableCharObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RImmutableCharObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> ImmutableBag<VV>ImmutableCharObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RImmutableCharObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> ImmutableBag<VV>ImmutableCharObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RImmutableCharObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> ImmutableBag<VV>ImmutableDoubleObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RImmutableDoubleObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> ImmutableBag<VV>ImmutableDoubleObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RImmutableDoubleObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> ImmutableBag<VV>ImmutableDoubleObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RImmutableDoubleObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> ImmutableBag<VV>ImmutableFloatObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RImmutableFloatObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> ImmutableBag<VV>ImmutableFloatObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RImmutableFloatObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> ImmutableBag<VV>ImmutableFloatObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RImmutableFloatObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> ImmutableBag<VV>ImmutableIntObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RImmutableIntObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> ImmutableBag<VV>ImmutableIntObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RImmutableIntObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> ImmutableBag<VV>ImmutableIntObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RImmutableIntObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> ImmutableBag<VV>ImmutableLongObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RImmutableLongObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> ImmutableBag<VV>ImmutableLongObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RImmutableLongObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> ImmutableBag<VV>ImmutableLongObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RImmutableLongObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> ImmutableBag<VV>ImmutableShortObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RImmutableShortObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> ImmutableBag<VV>ImmutableShortObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RImmutableShortObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> ImmutableBag<VV>ImmutableShortObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RImmutableShortObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)intImmutableByteObjectEmptyMap. count(Predicate<? super V> predicate)intImmutableByteObjectHashMap. count(Predicate<? super V> predicate)intImmutableByteObjectSingletonMap. count(Predicate<? super V> predicate)intImmutableCharObjectEmptyMap. count(Predicate<? super V> predicate)intImmutableCharObjectHashMap. count(Predicate<? super V> predicate)intImmutableCharObjectSingletonMap. count(Predicate<? super V> predicate)intImmutableDoubleObjectEmptyMap. count(Predicate<? super V> predicate)intImmutableDoubleObjectHashMap. count(Predicate<? super V> predicate)intImmutableDoubleObjectSingletonMap. count(Predicate<? super V> predicate)intImmutableFloatObjectEmptyMap. count(Predicate<? super V> predicate)intImmutableFloatObjectHashMap. count(Predicate<? super V> predicate)intImmutableFloatObjectSingletonMap. count(Predicate<? super V> predicate)intImmutableIntObjectEmptyMap. count(Predicate<? super V> predicate)intImmutableIntObjectHashMap. count(Predicate<? super V> predicate)intImmutableIntObjectSingletonMap. count(Predicate<? super V> predicate)intImmutableLongObjectEmptyMap. count(Predicate<? super V> predicate)intImmutableLongObjectHashMap. count(Predicate<? super V> predicate)intImmutableLongObjectSingletonMap. count(Predicate<? super V> predicate)intImmutableShortObjectEmptyMap. count(Predicate<? super V> predicate)intImmutableShortObjectHashMap. count(Predicate<? super V> predicate)intImmutableShortObjectSingletonMap. count(Predicate<? super V> predicate)VImmutableByteObjectEmptyMap. detect(Predicate<? super V> predicate)VImmutableByteObjectHashMap. detect(Predicate<? super V> predicate)VImmutableByteObjectSingletonMap. detect(Predicate<? super V> predicate)VImmutableCharObjectEmptyMap. detect(Predicate<? super V> predicate)VImmutableCharObjectHashMap. detect(Predicate<? super V> predicate)VImmutableCharObjectSingletonMap. detect(Predicate<? super V> predicate)VImmutableDoubleObjectEmptyMap. detect(Predicate<? super V> predicate)VImmutableDoubleObjectHashMap. detect(Predicate<? super V> predicate)VImmutableDoubleObjectSingletonMap. detect(Predicate<? super V> predicate)VImmutableFloatObjectEmptyMap. detect(Predicate<? super V> predicate)VImmutableFloatObjectHashMap. detect(Predicate<? super V> predicate)VImmutableFloatObjectSingletonMap. detect(Predicate<? super V> predicate)VImmutableIntObjectEmptyMap. detect(Predicate<? super V> predicate)VImmutableIntObjectHashMap. detect(Predicate<? super V> predicate)VImmutableIntObjectSingletonMap. detect(Predicate<? super V> predicate)VImmutableLongObjectEmptyMap. detect(Predicate<? super V> predicate)VImmutableLongObjectHashMap. detect(Predicate<? super V> predicate)VImmutableLongObjectSingletonMap. detect(Predicate<? super V> predicate)VImmutableShortObjectEmptyMap. detect(Predicate<? super V> predicate)VImmutableShortObjectHashMap. detect(Predicate<? super V> predicate)VImmutableShortObjectSingletonMap. detect(Predicate<? super V> predicate)VImmutableByteObjectEmptyMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VImmutableByteObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VImmutableByteObjectSingletonMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VImmutableCharObjectEmptyMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VImmutableCharObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VImmutableCharObjectSingletonMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VImmutableDoubleObjectEmptyMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VImmutableDoubleObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VImmutableDoubleObjectSingletonMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VImmutableFloatObjectEmptyMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VImmutableFloatObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VImmutableFloatObjectSingletonMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VImmutableIntObjectEmptyMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VImmutableIntObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VImmutableIntObjectSingletonMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VImmutableLongObjectEmptyMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VImmutableLongObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VImmutableLongObjectSingletonMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VImmutableShortObjectEmptyMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VImmutableShortObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VImmutableShortObjectSingletonMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)java.util.Optional<V>ImmutableByteObjectEmptyMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>ImmutableByteObjectHashMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>ImmutableByteObjectSingletonMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>ImmutableCharObjectEmptyMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>ImmutableCharObjectHashMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>ImmutableCharObjectSingletonMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>ImmutableDoubleObjectEmptyMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>ImmutableDoubleObjectHashMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>ImmutableDoubleObjectSingletonMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>ImmutableFloatObjectEmptyMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>ImmutableFloatObjectHashMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>ImmutableFloatObjectSingletonMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>ImmutableIntObjectEmptyMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>ImmutableIntObjectHashMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>ImmutableIntObjectSingletonMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>ImmutableLongObjectEmptyMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>ImmutableLongObjectHashMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>ImmutableLongObjectSingletonMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>ImmutableShortObjectEmptyMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>ImmutableShortObjectHashMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>ImmutableShortObjectSingletonMap. detectOptional(Predicate<? super V> predicate)booleanImmutableByteObjectEmptyMap. noneSatisfy(Predicate<? super V> predicate)booleanImmutableByteObjectHashMap. noneSatisfy(Predicate<? super V> predicate)booleanImmutableByteObjectSingletonMap. noneSatisfy(Predicate<? super V> predicate)booleanImmutableCharObjectEmptyMap. noneSatisfy(Predicate<? super V> predicate)booleanImmutableCharObjectHashMap. noneSatisfy(Predicate<? super V> predicate)booleanImmutableCharObjectSingletonMap. noneSatisfy(Predicate<? super V> predicate)booleanImmutableDoubleObjectEmptyMap. noneSatisfy(Predicate<? super V> predicate)booleanImmutableDoubleObjectHashMap. noneSatisfy(Predicate<? super V> predicate)booleanImmutableDoubleObjectSingletonMap. noneSatisfy(Predicate<? super V> predicate)booleanImmutableFloatObjectEmptyMap. noneSatisfy(Predicate<? super V> predicate)booleanImmutableFloatObjectHashMap. noneSatisfy(Predicate<? super V> predicate)booleanImmutableFloatObjectSingletonMap. noneSatisfy(Predicate<? super V> predicate)booleanImmutableIntObjectEmptyMap. noneSatisfy(Predicate<? super V> predicate)booleanImmutableIntObjectHashMap. noneSatisfy(Predicate<? super V> predicate)booleanImmutableIntObjectSingletonMap. noneSatisfy(Predicate<? super V> predicate)booleanImmutableLongObjectEmptyMap. noneSatisfy(Predicate<? super V> predicate)booleanImmutableLongObjectHashMap. noneSatisfy(Predicate<? super V> predicate)booleanImmutableLongObjectSingletonMap. noneSatisfy(Predicate<? super V> predicate)booleanImmutableShortObjectEmptyMap. noneSatisfy(Predicate<? super V> predicate)booleanImmutableShortObjectHashMap. noneSatisfy(Predicate<? super V> predicate)booleanImmutableShortObjectSingletonMap. noneSatisfy(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableByteObjectEmptyMap. partition(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableByteObjectHashMap. partition(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableByteObjectSingletonMap. partition(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableCharObjectEmptyMap. partition(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableCharObjectHashMap. partition(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableCharObjectSingletonMap. partition(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableDoubleObjectEmptyMap. partition(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableDoubleObjectHashMap. partition(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableDoubleObjectSingletonMap. partition(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableFloatObjectEmptyMap. partition(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableFloatObjectHashMap. partition(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableFloatObjectSingletonMap. partition(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableIntObjectEmptyMap. partition(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableIntObjectHashMap. partition(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableIntObjectSingletonMap. partition(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableLongObjectEmptyMap. partition(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableLongObjectHashMap. partition(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableLongObjectSingletonMap. partition(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableShortObjectEmptyMap. partition(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableShortObjectHashMap. partition(Predicate<? super V> predicate)PartitionImmutableBag<V>ImmutableShortObjectSingletonMap. partition(Predicate<? super V> predicate)ImmutableBag<V>ImmutableByteObjectEmptyMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableByteObjectEmptyMap. reject(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableByteObjectHashMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableByteObjectHashMap. reject(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableByteObjectSingletonMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableByteObjectSingletonMap. reject(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableCharObjectEmptyMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableCharObjectEmptyMap. reject(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableCharObjectHashMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableCharObjectHashMap. reject(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableCharObjectSingletonMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableCharObjectSingletonMap. reject(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableDoubleObjectEmptyMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableDoubleObjectEmptyMap. reject(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableDoubleObjectHashMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableDoubleObjectHashMap. reject(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableDoubleObjectSingletonMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableDoubleObjectSingletonMap. reject(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableFloatObjectEmptyMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableFloatObjectEmptyMap. reject(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableFloatObjectHashMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableFloatObjectHashMap. reject(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableFloatObjectSingletonMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableFloatObjectSingletonMap. reject(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableIntObjectEmptyMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableIntObjectEmptyMap. reject(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableIntObjectHashMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableIntObjectHashMap. reject(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableIntObjectSingletonMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableIntObjectSingletonMap. reject(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableLongObjectEmptyMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableLongObjectEmptyMap. reject(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableLongObjectHashMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableLongObjectHashMap. reject(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableLongObjectSingletonMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableLongObjectSingletonMap. reject(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableShortObjectEmptyMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableShortObjectEmptyMap. reject(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableShortObjectHashMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableShortObjectHashMap. reject(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableShortObjectSingletonMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableShortObjectSingletonMap. reject(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableByteObjectEmptyMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableByteObjectEmptyMap. select(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableByteObjectHashMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableByteObjectHashMap. select(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableByteObjectSingletonMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableByteObjectSingletonMap. select(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableCharObjectEmptyMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableCharObjectEmptyMap. select(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableCharObjectHashMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableCharObjectHashMap. select(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableCharObjectSingletonMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableCharObjectSingletonMap. select(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableDoubleObjectEmptyMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableDoubleObjectEmptyMap. select(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableDoubleObjectHashMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableDoubleObjectHashMap. select(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableDoubleObjectSingletonMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableDoubleObjectSingletonMap. select(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableFloatObjectEmptyMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableFloatObjectEmptyMap. select(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableFloatObjectHashMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableFloatObjectHashMap. select(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableFloatObjectSingletonMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableFloatObjectSingletonMap. select(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableIntObjectEmptyMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableIntObjectEmptyMap. select(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableIntObjectHashMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableIntObjectHashMap. select(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableIntObjectSingletonMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableIntObjectSingletonMap. select(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableLongObjectEmptyMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableLongObjectEmptyMap. select(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableLongObjectHashMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableLongObjectHashMap. select(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableLongObjectSingletonMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableLongObjectSingletonMap. select(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableShortObjectEmptyMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableShortObjectEmptyMap. select(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableShortObjectHashMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableShortObjectHashMap. select(Predicate<? super V> predicate, R target)ImmutableBag<V>ImmutableShortObjectSingletonMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RImmutableShortObjectSingletonMap. select(Predicate<? super V> predicate, R target) -
Uses of Predicate in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with parameters of type Predicate Modifier and Type Method Description booleanUnifiedMap. allSatisfy(Predicate<? super V> predicate)booleanUnmodifiableMutableMap. allSatisfy(Predicate<? super V> predicate)booleanUnifiedMap. anySatisfy(Predicate<? super V> predicate)booleanUnmodifiableMutableMap. anySatisfy(Predicate<? super V> predicate)<R> MutableBag<R>AbstractMutableMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)<A> MutableBag<A>SynchronizedMutableMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends A> function)<R> MutableBag<R>UnmodifiableMutableMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)<R,C extends java.util.Collection<R>>
CUnmodifiableMutableMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function, C target)intUnmodifiableMutableMap. count(Predicate<? super V> predicate)VUnifiedMap. detect(Predicate<? super V> predicate)VUnmodifiableMutableMap. detect(Predicate<? super V> predicate)VUnifiedMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VUnmodifiableMutableMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)java.util.Optional<V>UnifiedMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>UnmodifiableMutableMap. detectOptional(Predicate<? super V> predicate)booleanUnifiedMap. noneSatisfy(Predicate<? super V> predicate)booleanUnmodifiableMutableMap. noneSatisfy(Predicate<? super V> predicate)PartitionMutableBag<V>AbstractMutableMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>SynchronizedMutableMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>UnmodifiableMutableMap. partition(Predicate<? super V> predicate)MutableBag<V>AbstractMutableMap. reject(Predicate<? super V> predicate)MutableBag<V>SynchronizedMutableMap. reject(Predicate<? super V> predicate)MutableBag<V>UnmodifiableMutableMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableMutableMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>AbstractMutableMap. select(Predicate<? super V> predicate)MutableBag<V>SynchronizedMutableMap. select(Predicate<? super V> predicate)MutableBag<V>UnmodifiableMutableMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableMutableMap. select(Predicate<? super V> predicate, R target)private booleanUnifiedMap. shortCircuit(Predicate<? super V> predicate, boolean expected, boolean onShortCircuit, boolean atEnd) -
Uses of Predicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type Predicate Modifier and Type Method Description booleanByteObjectHashMap. allSatisfy(Predicate<? super V> predicate)booleanCharObjectHashMap. allSatisfy(Predicate<? super V> predicate)booleanDoubleObjectHashMap. allSatisfy(Predicate<? super V> predicate)booleanFloatObjectHashMap. allSatisfy(Predicate<? super V> predicate)booleanIntObjectHashMap. allSatisfy(Predicate<? super V> predicate)booleanLongObjectHashMap. allSatisfy(Predicate<? super V> predicate)booleanShortObjectHashMap. allSatisfy(Predicate<? super V> predicate)booleanSynchronizedByteObjectMap. allSatisfy(Predicate<? super V> predicate)booleanSynchronizedCharObjectMap. allSatisfy(Predicate<? super V> predicate)booleanSynchronizedDoubleObjectMap. allSatisfy(Predicate<? super V> predicate)booleanSynchronizedFloatObjectMap. allSatisfy(Predicate<? super V> predicate)booleanSynchronizedIntObjectMap. allSatisfy(Predicate<? super V> predicate)booleanSynchronizedLongObjectMap. allSatisfy(Predicate<? super V> predicate)booleanSynchronizedShortObjectMap. allSatisfy(Predicate<? super V> predicate)booleanUnmodifiableByteObjectMap. allSatisfy(Predicate<? super V> predicate)booleanUnmodifiableCharObjectMap. allSatisfy(Predicate<? super V> predicate)booleanUnmodifiableDoubleObjectMap. allSatisfy(Predicate<? super V> predicate)booleanUnmodifiableFloatObjectMap. allSatisfy(Predicate<? super V> predicate)booleanUnmodifiableIntObjectMap. allSatisfy(Predicate<? super V> predicate)booleanUnmodifiableLongObjectMap. allSatisfy(Predicate<? super V> predicate)booleanUnmodifiableShortObjectMap. allSatisfy(Predicate<? super V> predicate)booleanByteObjectHashMap. anySatisfy(Predicate<? super V> predicate)booleanCharObjectHashMap. anySatisfy(Predicate<? super V> predicate)booleanDoubleObjectHashMap. anySatisfy(Predicate<? super V> predicate)booleanFloatObjectHashMap. anySatisfy(Predicate<? super V> predicate)booleanIntObjectHashMap. anySatisfy(Predicate<? super V> predicate)booleanLongObjectHashMap. anySatisfy(Predicate<? super V> predicate)booleanShortObjectHashMap. anySatisfy(Predicate<? super V> predicate)booleanSynchronizedByteObjectMap. anySatisfy(Predicate<? super V> predicate)booleanSynchronizedCharObjectMap. anySatisfy(Predicate<? super V> predicate)booleanSynchronizedDoubleObjectMap. anySatisfy(Predicate<? super V> predicate)booleanSynchronizedFloatObjectMap. anySatisfy(Predicate<? super V> predicate)booleanSynchronizedIntObjectMap. anySatisfy(Predicate<? super V> predicate)booleanSynchronizedLongObjectMap. anySatisfy(Predicate<? super V> predicate)booleanSynchronizedShortObjectMap. anySatisfy(Predicate<? super V> predicate)booleanUnmodifiableByteObjectMap. anySatisfy(Predicate<? super V> predicate)booleanUnmodifiableCharObjectMap. anySatisfy(Predicate<? super V> predicate)booleanUnmodifiableDoubleObjectMap. anySatisfy(Predicate<? super V> predicate)booleanUnmodifiableFloatObjectMap. anySatisfy(Predicate<? super V> predicate)booleanUnmodifiableIntObjectMap. anySatisfy(Predicate<? super V> predicate)booleanUnmodifiableLongObjectMap. anySatisfy(Predicate<? super V> predicate)booleanUnmodifiableShortObjectMap. anySatisfy(Predicate<? super V> predicate)<VV> MutableBag<VV>ByteObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RByteObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> MutableBag<VV>CharObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RCharObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> MutableBag<VV>DoubleObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RDoubleObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> MutableBag<VV>FloatObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RFloatObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> MutableBag<VV>IntObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RIntObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> MutableBag<VV>LongObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RLongObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> MutableBag<VV>ShortObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RShortObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> MutableBag<VV>SynchronizedByteObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RSynchronizedByteObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> MutableBag<VV>SynchronizedCharObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RSynchronizedCharObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> MutableBag<VV>SynchronizedDoubleObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RSynchronizedDoubleObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> MutableBag<VV>SynchronizedFloatObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RSynchronizedFloatObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> MutableBag<VV>SynchronizedIntObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RSynchronizedIntObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> MutableBag<VV>SynchronizedLongObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RSynchronizedLongObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> MutableBag<VV>SynchronizedShortObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RSynchronizedShortObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> MutableBag<VV>UnmodifiableByteObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RUnmodifiableByteObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> MutableBag<VV>UnmodifiableCharObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RUnmodifiableCharObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> MutableBag<VV>UnmodifiableDoubleObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RUnmodifiableDoubleObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> MutableBag<VV>UnmodifiableFloatObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RUnmodifiableFloatObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> MutableBag<VV>UnmodifiableIntObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RUnmodifiableIntObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> MutableBag<VV>UnmodifiableLongObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RUnmodifiableLongObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)<VV> MutableBag<VV>UnmodifiableShortObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RUnmodifiableShortObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)intByteObjectHashMap. count(Predicate<? super V> predicate)intCharObjectHashMap. count(Predicate<? super V> predicate)intDoubleObjectHashMap. count(Predicate<? super V> predicate)intFloatObjectHashMap. count(Predicate<? super V> predicate)intIntObjectHashMap. count(Predicate<? super V> predicate)intLongObjectHashMap. count(Predicate<? super V> predicate)intShortObjectHashMap. count(Predicate<? super V> predicate)intSynchronizedByteObjectMap. count(Predicate<? super V> predicate)intSynchronizedCharObjectMap. count(Predicate<? super V> predicate)intSynchronizedDoubleObjectMap. count(Predicate<? super V> predicate)intSynchronizedFloatObjectMap. count(Predicate<? super V> predicate)intSynchronizedIntObjectMap. count(Predicate<? super V> predicate)intSynchronizedLongObjectMap. count(Predicate<? super V> predicate)intSynchronizedShortObjectMap. count(Predicate<? super V> predicate)intUnmodifiableByteObjectMap. count(Predicate<? super V> predicate)intUnmodifiableCharObjectMap. count(Predicate<? super V> predicate)intUnmodifiableDoubleObjectMap. count(Predicate<? super V> predicate)intUnmodifiableFloatObjectMap. count(Predicate<? super V> predicate)intUnmodifiableIntObjectMap. count(Predicate<? super V> predicate)intUnmodifiableLongObjectMap. count(Predicate<? super V> predicate)intUnmodifiableShortObjectMap. count(Predicate<? super V> predicate)VByteObjectHashMap. detect(Predicate<? super V> predicate)VCharObjectHashMap. detect(Predicate<? super V> predicate)VDoubleObjectHashMap. detect(Predicate<? super V> predicate)VFloatObjectHashMap. detect(Predicate<? super V> predicate)VIntObjectHashMap. detect(Predicate<? super V> predicate)VLongObjectHashMap. detect(Predicate<? super V> predicate)VShortObjectHashMap. detect(Predicate<? super V> predicate)VSynchronizedByteObjectMap. detect(Predicate<? super V> predicate)VSynchronizedCharObjectMap. detect(Predicate<? super V> predicate)VSynchronizedDoubleObjectMap. detect(Predicate<? super V> predicate)VSynchronizedFloatObjectMap. detect(Predicate<? super V> predicate)VSynchronizedIntObjectMap. detect(Predicate<? super V> predicate)VSynchronizedLongObjectMap. detect(Predicate<? super V> predicate)VSynchronizedShortObjectMap. detect(Predicate<? super V> predicate)VUnmodifiableByteObjectMap. detect(Predicate<? super V> predicate)VUnmodifiableCharObjectMap. detect(Predicate<? super V> predicate)VUnmodifiableDoubleObjectMap. detect(Predicate<? super V> predicate)VUnmodifiableFloatObjectMap. detect(Predicate<? super V> predicate)VUnmodifiableIntObjectMap. detect(Predicate<? super V> predicate)VUnmodifiableLongObjectMap. detect(Predicate<? super V> predicate)VUnmodifiableShortObjectMap. detect(Predicate<? super V> predicate)VByteObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VCharObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VDoubleObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VFloatObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VIntObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VLongObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VShortObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VSynchronizedByteObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VSynchronizedCharObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VSynchronizedDoubleObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VSynchronizedFloatObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VSynchronizedIntObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VSynchronizedLongObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VSynchronizedShortObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VUnmodifiableByteObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VUnmodifiableCharObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VUnmodifiableDoubleObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VUnmodifiableFloatObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VUnmodifiableIntObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VUnmodifiableLongObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)VUnmodifiableShortObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)java.util.Optional<V>ByteObjectHashMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>CharObjectHashMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>DoubleObjectHashMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>FloatObjectHashMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>IntObjectHashMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>LongObjectHashMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>ShortObjectHashMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>SynchronizedByteObjectMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>SynchronizedCharObjectMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>SynchronizedDoubleObjectMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>SynchronizedFloatObjectMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>SynchronizedIntObjectMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>SynchronizedLongObjectMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>SynchronizedShortObjectMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>UnmodifiableByteObjectMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>UnmodifiableCharObjectMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>UnmodifiableDoubleObjectMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>UnmodifiableFloatObjectMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>UnmodifiableIntObjectMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>UnmodifiableLongObjectMap. detectOptional(Predicate<? super V> predicate)java.util.Optional<V>UnmodifiableShortObjectMap. detectOptional(Predicate<? super V> predicate)booleanByteObjectHashMap. noneSatisfy(Predicate<? super V> predicate)booleanCharObjectHashMap. noneSatisfy(Predicate<? super V> predicate)booleanDoubleObjectHashMap. noneSatisfy(Predicate<? super V> predicate)booleanFloatObjectHashMap. noneSatisfy(Predicate<? super V> predicate)booleanIntObjectHashMap. noneSatisfy(Predicate<? super V> predicate)booleanLongObjectHashMap. noneSatisfy(Predicate<? super V> predicate)booleanShortObjectHashMap. noneSatisfy(Predicate<? super V> predicate)booleanSynchronizedByteObjectMap. noneSatisfy(Predicate<? super V> predicate)booleanSynchronizedCharObjectMap. noneSatisfy(Predicate<? super V> predicate)booleanSynchronizedDoubleObjectMap. noneSatisfy(Predicate<? super V> predicate)booleanSynchronizedFloatObjectMap. noneSatisfy(Predicate<? super V> predicate)booleanSynchronizedIntObjectMap. noneSatisfy(Predicate<? super V> predicate)booleanSynchronizedLongObjectMap. noneSatisfy(Predicate<? super V> predicate)booleanSynchronizedShortObjectMap. noneSatisfy(Predicate<? super V> predicate)booleanUnmodifiableByteObjectMap. noneSatisfy(Predicate<? super V> predicate)booleanUnmodifiableCharObjectMap. noneSatisfy(Predicate<? super V> predicate)booleanUnmodifiableDoubleObjectMap. noneSatisfy(Predicate<? super V> predicate)booleanUnmodifiableFloatObjectMap. noneSatisfy(Predicate<? super V> predicate)booleanUnmodifiableIntObjectMap. noneSatisfy(Predicate<? super V> predicate)booleanUnmodifiableLongObjectMap. noneSatisfy(Predicate<? super V> predicate)booleanUnmodifiableShortObjectMap. noneSatisfy(Predicate<? super V> predicate)PartitionMutableBag<V>ByteObjectHashMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>CharObjectHashMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>DoubleObjectHashMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>FloatObjectHashMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>IntObjectHashMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>LongObjectHashMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>ShortObjectHashMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>SynchronizedByteObjectMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>SynchronizedCharObjectMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>SynchronizedDoubleObjectMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>SynchronizedFloatObjectMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>SynchronizedIntObjectMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>SynchronizedLongObjectMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>SynchronizedShortObjectMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>UnmodifiableByteObjectMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>UnmodifiableCharObjectMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>UnmodifiableDoubleObjectMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>UnmodifiableFloatObjectMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>UnmodifiableIntObjectMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>UnmodifiableLongObjectMap. partition(Predicate<? super V> predicate)PartitionMutableBag<V>UnmodifiableShortObjectMap. partition(Predicate<? super V> predicate)MutableBag<V>ByteObjectHashMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RByteObjectHashMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>CharObjectHashMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RCharObjectHashMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>DoubleObjectHashMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RDoubleObjectHashMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>FloatObjectHashMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RFloatObjectHashMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>IntObjectHashMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RIntObjectHashMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>LongObjectHashMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RLongObjectHashMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>ShortObjectHashMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RShortObjectHashMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>SynchronizedByteObjectMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RSynchronizedByteObjectMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>SynchronizedCharObjectMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RSynchronizedCharObjectMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>SynchronizedDoubleObjectMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RSynchronizedDoubleObjectMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>SynchronizedFloatObjectMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RSynchronizedFloatObjectMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>SynchronizedIntObjectMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RSynchronizedIntObjectMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>SynchronizedLongObjectMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RSynchronizedLongObjectMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>SynchronizedShortObjectMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RSynchronizedShortObjectMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>UnmodifiableByteObjectMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableByteObjectMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>UnmodifiableCharObjectMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableCharObjectMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>UnmodifiableDoubleObjectMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableDoubleObjectMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>UnmodifiableFloatObjectMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableFloatObjectMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>UnmodifiableIntObjectMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableIntObjectMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>UnmodifiableLongObjectMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableLongObjectMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>UnmodifiableShortObjectMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableShortObjectMap. reject(Predicate<? super V> predicate, R target)MutableBag<V>ByteObjectHashMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RByteObjectHashMap. select(Predicate<? super V> predicate, R target)MutableBag<V>CharObjectHashMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RCharObjectHashMap. select(Predicate<? super V> predicate, R target)MutableBag<V>DoubleObjectHashMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RDoubleObjectHashMap. select(Predicate<? super V> predicate, R target)MutableBag<V>FloatObjectHashMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RFloatObjectHashMap. select(Predicate<? super V> predicate, R target)MutableBag<V>IntObjectHashMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RIntObjectHashMap. select(Predicate<? super V> predicate, R target)MutableBag<V>LongObjectHashMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RLongObjectHashMap. select(Predicate<? super V> predicate, R target)MutableBag<V>ShortObjectHashMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RShortObjectHashMap. select(Predicate<? super V> predicate, R target)MutableBag<V>SynchronizedByteObjectMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RSynchronizedByteObjectMap. select(Predicate<? super V> predicate, R target)MutableBag<V>SynchronizedCharObjectMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RSynchronizedCharObjectMap. select(Predicate<? super V> predicate, R target)MutableBag<V>SynchronizedDoubleObjectMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RSynchronizedDoubleObjectMap. select(Predicate<? super V> predicate, R target)MutableBag<V>SynchronizedFloatObjectMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RSynchronizedFloatObjectMap. select(Predicate<? super V> predicate, R target)MutableBag<V>SynchronizedIntObjectMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RSynchronizedIntObjectMap. select(Predicate<? super V> predicate, R target)MutableBag<V>SynchronizedLongObjectMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RSynchronizedLongObjectMap. select(Predicate<? super V> predicate, R target)MutableBag<V>SynchronizedShortObjectMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RSynchronizedShortObjectMap. select(Predicate<? super V> predicate, R target)MutableBag<V>UnmodifiableByteObjectMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableByteObjectMap. select(Predicate<? super V> predicate, R target)MutableBag<V>UnmodifiableCharObjectMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableCharObjectMap. select(Predicate<? super V> predicate, R target)MutableBag<V>UnmodifiableDoubleObjectMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableDoubleObjectMap. select(Predicate<? super V> predicate, R target)MutableBag<V>UnmodifiableFloatObjectMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableFloatObjectMap. select(Predicate<? super V> predicate, R target)MutableBag<V>UnmodifiableIntObjectMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableIntObjectMap. select(Predicate<? super V> predicate, R target)MutableBag<V>UnmodifiableLongObjectMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableLongObjectMap. select(Predicate<? super V> predicate, R target)MutableBag<V>UnmodifiableShortObjectMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableShortObjectMap. select(Predicate<? super V> predicate, R target) -
Uses of Predicate in org.eclipse.collections.impl.map.ordered.immutable
Methods in org.eclipse.collections.impl.map.ordered.immutable with parameters of type Predicate Modifier and Type Method Description <VV> ImmutableList<VV>ImmutableOrderedMapAdapter. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)VImmutableOrderedMapAdapter. detect(Predicate<? super V> predicate)intImmutableOrderedMapAdapter. detectIndex(Predicate<? super V> predicate)intImmutableOrderedMapAdapter. detectLastIndex(Predicate<? super V> predicate)java.util.Optional<V>ImmutableOrderedMapAdapter. detectOptional(Predicate<? super V> predicate)ImmutableOrderedMap<K,V>ImmutableOrderedMapAdapter. dropWhile(Predicate<? super V> predicate)PartitionImmutableList<V>ImmutableOrderedMapAdapter. partition(Predicate<? super V> predicate)PartitionImmutableList<V>ImmutableOrderedMapAdapter. partitionWhile(Predicate<? super V> predicate)ImmutableList<V>ImmutableOrderedMapAdapter. reject(Predicate<? super V> predicate)ImmutableList<V>ImmutableOrderedMapAdapter. select(Predicate<? super V> predicate)ImmutableOrderedMap<K,V>ImmutableOrderedMapAdapter. takeWhile(Predicate<? super V> predicate) -
Uses of Predicate in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with parameters of type Predicate Modifier and Type Method Description booleanUnmodifiableMutableOrderedMap. allSatisfy(Predicate<? super V> predicate)booleanUnmodifiableMutableOrderedMap. anySatisfy(Predicate<? super V> predicate)<R> MutableList<R>OrderedMapAdapter. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)<VV> MutableList<VV>UnmodifiableMutableOrderedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV,R extends java.util.Collection<VV>>
RUnmodifiableMutableOrderedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)intUnmodifiableMutableOrderedMap. count(Predicate<? super V> predicate)VUnmodifiableMutableOrderedMap. detect(Predicate<? super V> predicate)VUnmodifiableMutableOrderedMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)intOrderedMapAdapter. detectIndex(Predicate<? super V> predicate)intUnmodifiableMutableOrderedMap. detectIndex(Predicate<? super V> predicate)intOrderedMapAdapter. detectLastIndex(Predicate<? super V> predicate)intUnmodifiableMutableOrderedMap. detectLastIndex(Predicate<? super V> predicate)java.util.Optional<V>UnmodifiableMutableOrderedMap. detectOptional(Predicate<? super V> predicate)MutableOrderedMap<K,V>OrderedMapAdapter. dropWhile(Predicate<? super V> predicate)MutableOrderedMap<K,V>UnmodifiableMutableOrderedMap. dropWhile(Predicate<? super V> predicate)booleanUnmodifiableMutableOrderedMap. noneSatisfy(Predicate<? super V> predicate)PartitionMutableList<V>OrderedMapAdapter. partition(Predicate<? super V> predicate)PartitionMutableList<V>UnmodifiableMutableOrderedMap. partition(Predicate<? super V> predicate)PartitionMutableList<V>OrderedMapAdapter. partitionWhile(Predicate<? super V> predicate)PartitionMutableList<V>UnmodifiableMutableOrderedMap. partitionWhile(Predicate<? super V> predicate)MutableList<V>OrderedMapAdapter. reject(Predicate<? super V> predicate)MutableList<V>UnmodifiableMutableOrderedMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableMutableOrderedMap. reject(Predicate<? super V> predicate, R target)MutableList<V>OrderedMapAdapter. select(Predicate<? super V> predicate)MutableList<V>UnmodifiableMutableOrderedMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableMutableOrderedMap. select(Predicate<? super V> predicate, R target)MutableOrderedMap<K,V>OrderedMapAdapter. takeWhile(Predicate<? super V> predicate)MutableOrderedMap<K,V>UnmodifiableMutableOrderedMap. takeWhile(Predicate<? super V> predicate) -
Uses of Predicate in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable with parameters of type Predicate Modifier and Type Method Description <R> ImmutableList<R>AbstractImmutableSortedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)intAbstractImmutableSortedMap. detectIndex(Predicate<? super V> predicate)intAbstractImmutableSortedMap. detectLastIndex(Predicate<? super V> predicate)ImmutableSortedMap<K,V>AbstractImmutableSortedMap. dropWhile(Predicate<? super V> predicate)PartitionImmutableList<V>AbstractImmutableSortedMap. partition(Predicate<? super V> predicate)PartitionImmutableList<V>AbstractImmutableSortedMap. partitionWhile(Predicate<? super V> predicate)ImmutableList<V>AbstractImmutableSortedMap. reject(Predicate<? super V> predicate)ImmutableList<V>AbstractImmutableSortedMap. select(Predicate<? super V> predicate)ImmutableSortedMap<K,V>AbstractImmutableSortedMap. takeWhile(Predicate<? super V> predicate) -
Uses of Predicate in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with parameters of type Predicate Modifier and Type Method Description booleanUnmodifiableTreeMap. allSatisfy(Predicate<? super V> predicate)booleanUnmodifiableTreeMap. anySatisfy(Predicate<? super V> predicate)<R> MutableList<R>AbstractMutableSortedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)<R> MutableList<R>SynchronizedSortedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)<R> MutableList<R>UnmodifiableTreeMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)<R,C extends java.util.Collection<R>>
CUnmodifiableTreeMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function, C target)intUnmodifiableTreeMap. count(Predicate<? super V> predicate)VUnmodifiableTreeMap. detect(Predicate<? super V> predicate)VUnmodifiableTreeMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)intAbstractMutableSortedMap. detectIndex(Predicate<? super V> predicate)intSynchronizedSortedMap. detectIndex(Predicate<? super V> predicate)intUnmodifiableTreeMap. detectIndex(Predicate<? super V> predicate)intAbstractMutableSortedMap. detectLastIndex(Predicate<? super V> predicate)intSynchronizedSortedMap. detectLastIndex(Predicate<? super V> predicate)intUnmodifiableTreeMap. detectLastIndex(Predicate<? super V> predicate)java.util.Optional<V>UnmodifiableTreeMap. detectOptional(Predicate<? super V> predicate)MutableSortedMap<K,V>SortedMapAdapter. dropWhile(Predicate<? super V> predicate)MutableSortedMap<K,V>SynchronizedSortedMap. dropWhile(Predicate<? super V> predicate)MutableSortedMap<K,V>TreeSortedMap. dropWhile(Predicate<? super V> predicate)MutableSortedMap<K,V>UnmodifiableTreeMap. dropWhile(Predicate<? super V> predicate)booleanUnmodifiableTreeMap. noneSatisfy(Predicate<? super V> predicate)PartitionMutableList<V>AbstractMutableSortedMap. partition(Predicate<? super V> predicate)PartitionMutableList<V>SynchronizedSortedMap. partition(Predicate<? super V> predicate)PartitionMutableList<V>UnmodifiableTreeMap. partition(Predicate<? super V> predicate)PartitionMutableList<V>SortedMapAdapter. partitionWhile(Predicate<? super V> predicate)PartitionMutableList<V>SynchronizedSortedMap. partitionWhile(Predicate<? super V> predicate)PartitionMutableList<V>TreeSortedMap. partitionWhile(Predicate<? super V> predicate)PartitionMutableList<V>UnmodifiableTreeMap. partitionWhile(Predicate<? super V> predicate)MutableList<V>AbstractMutableSortedMap. reject(Predicate<? super V> predicate)MutableList<V>SynchronizedSortedMap. reject(Predicate<? super V> predicate)MutableList<V>UnmodifiableTreeMap. reject(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableTreeMap. reject(Predicate<? super V> predicate, R target)MutableList<V>AbstractMutableSortedMap. select(Predicate<? super V> predicate)MutableList<V>SynchronizedSortedMap. select(Predicate<? super V> predicate)MutableList<V>UnmodifiableTreeMap. select(Predicate<? super V> predicate)<R extends java.util.Collection<V>>
RUnmodifiableTreeMap. select(Predicate<? super V> predicate, R target)MutableSortedMap<K,V>SortedMapAdapter. takeWhile(Predicate<? super V> predicate)MutableSortedMap<K,V>SynchronizedSortedMap. takeWhile(Predicate<? super V> predicate)MutableSortedMap<K,V>TreeSortedMap. takeWhile(Predicate<? super V> predicate)MutableSortedMap<K,V>UnmodifiableTreeMap. takeWhile(Predicate<? super V> predicate) -
Uses of Predicate in org.eclipse.collections.impl.map.strategy.mutable
Methods in org.eclipse.collections.impl.map.strategy.mutable with parameters of type Predicate Modifier and Type Method Description booleanUnifiedMapWithHashingStrategy. allSatisfy(Predicate<? super V> predicate)booleanUnifiedMapWithHashingStrategy. anySatisfy(Predicate<? super V> predicate)VUnifiedMapWithHashingStrategy. detect(Predicate<? super V> predicate)VUnifiedMapWithHashingStrategy. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)java.util.Optional<V>UnifiedMapWithHashingStrategy. detectOptional(Predicate<? super V> predicate)booleanUnifiedMapWithHashingStrategy. noneSatisfy(Predicate<? super V> predicate)private booleanUnifiedMapWithHashingStrategy. shortCircuit(Predicate<? super V> predicate, boolean expected, boolean onShortCircuit, boolean atEnd) -
Uses of Predicate in org.eclipse.collections.impl.parallel
Fields in org.eclipse.collections.impl.parallel declared as Predicate Modifier and Type Field Description private Predicate<? super T>CollectIfProcedureFactory. predicateprivate Predicate<? super T>CountProcedureFactory. predicateprivate Predicate<? super T>FastListCollectIfProcedureFactory. predicateprivate Predicate<? super T>FastListRejectProcedureFactory. predicateprivate Predicate<? super T>FastListSelectProcedureFactory. predicateprivate Predicate<? super T>RejectProcedureFactory. predicateprivate Predicate<? super T>SelectProcedureFactory. predicateMethods in org.eclipse.collections.impl.parallel with parameters of type Predicate Modifier and Type Method Description static <T,V>
java.util.Collection<V>ParallelIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,V> function)Same effect asIterate.collectIf(Iterable, Predicate, Function), but executed in parallel batches.static <T,V>
java.util.Collection<V>ParallelIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,V> function, boolean allowReorderedResult)Same effect asIterate.collectIf(Iterable, Predicate, Function), but executed in parallel batches, and with potentially reordered results.static <T,V,R extends java.util.Collection<V>>
RParallelIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,V> function, R target, boolean allowReorderedResult)Same effect asIterate.collectIf(Iterable, Predicate, Function), but executed in parallel batches, and writing output into the specified collection.static <T,V,R extends java.util.Collection<V>>
RParallelIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,V> function, R target, int batchSize, java.util.concurrent.Executor executor, boolean allowReorderedResult)static <T> intParallelIterate. count(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)Same effect asIterate.count(Iterable, Predicate), but executed in parallel batches.static <T> intParallelIterate. count(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, int batchSize, java.util.concurrent.Executor executor)Same effect asIterate.count(Iterable, Predicate), but executed in parallel batches.static <T> java.util.Collection<T>ParallelIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)Same effect asIterate.reject(Iterable, Predicate), but executed in parallel batches.static <T> java.util.Collection<T>ParallelIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, boolean allowReorderedResult)Same effect asIterate.reject(Iterable, Predicate), but executed in parallel batches, and with a potentially reordered result.static <T,R extends java.util.Collection<T>>
RParallelIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target, boolean allowReorderedResult)Same effect asIterate.reject(Iterable, Predicate), but executed in parallel batches, and writing output into the specified collection.static <T,R extends java.util.Collection<T>>
RParallelIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target, int batchSize, java.util.concurrent.Executor executor, boolean allowReorderedResult)static <T> java.util.Collection<T>ParallelIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)Same effect asIterate.select(Iterable, Predicate), but executed in parallel batches.static <T> java.util.Collection<T>ParallelIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, boolean allowReorderedResult)Same effect asIterate.select(Iterable, Predicate), but executed in parallel batches, and with a potentially reordered result.static <T,R extends java.util.Collection<T>>
RParallelIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target, boolean allowReorderedResult)Same effect asIterate.select(Iterable, Predicate), but executed in parallel batches, and writing output into the specified collection.static <T,R extends java.util.Collection<T>>
RParallelIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target, int batchSize, java.util.concurrent.Executor executor, boolean allowReorderedResult)Same effect asIterate.select(Iterable, Predicate), but executed in parallel batches, and writing output into the specified collection.Constructors in org.eclipse.collections.impl.parallel with parameters of type Predicate Constructor Description CollectIfProcedureFactory(Function<? super T,V> function, Predicate<? super T> predicate, int newTaskSize)CountProcedureFactory(Predicate<? super T> predicate)FastListCollectIfProcedureFactory(Function<? super T,V> function, Predicate<? super T> predicate, int newTaskSize)FastListRejectProcedureFactory(Predicate<? super T> newPredicate, int newInitialCapacity)FastListSelectProcedureFactory(Predicate<? super T> newPredicate, int newInitialCapacity)RejectProcedureFactory(Predicate<? super T> newPredicate, int newInitialCapacity)SelectProcedureFactory(Predicate<? super T> newPredicate, int newInitialCapacity) -
Uses of Predicate in org.eclipse.collections.impl.partition.stack
Fields in org.eclipse.collections.impl.partition.stack declared as Predicate Modifier and Type Field Description private Predicate<? super T>PartitionArrayStack.PartitionProcedure. predicateConstructors in org.eclipse.collections.impl.partition.stack with parameters of type Predicate Constructor Description PartitionProcedure(Predicate<? super T> predicate, PartitionArrayStack<T> partitionMutableStack) -
Uses of Predicate in org.eclipse.collections.impl.set
Methods in org.eclipse.collections.impl.set with parameters of type Predicate Modifier and Type Method Description booleanAbstractUnifiedSet. allSatisfy(Predicate<? super T> predicate)booleanAbstractUnifiedSet. anySatisfy(Predicate<? super T> predicate)<V> UnifiedSet<V>AbstractUnifiedSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)TAbstractUnifiedSet. detect(Predicate<? super T> predicate)protected abstract TAbstractUnifiedSet. detect(Predicate<? super T> predicate, int start, int end)java.util.Optional<T>AbstractUnifiedSet. detectOptional(Predicate<? super T> predicate)protected abstract java.util.Optional<T>AbstractUnifiedSet. detectOptional(Predicate<? super T> predicate, int start, int end)booleanAbstractUnifiedSet. noneSatisfy(Predicate<? super T> predicate)protected booleanAbstractUnifiedSet. shortCircuit(Predicate<? super T> predicate, boolean expected, boolean onShortCircuit, boolean atEnd)protected abstract booleanAbstractUnifiedSet. shortCircuit(Predicate<? super T> predicate, boolean expected, boolean onShortCircuit, boolean atEnd, int start, int end) -
Uses of Predicate in org.eclipse.collections.impl.set.fixed
Methods in org.eclipse.collections.impl.set.fixed with parameters of type Predicate Modifier and Type Method Description booleanAbstractMemoryEfficientMutableSet. removeIf(Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.impl.set.immutable
Methods in org.eclipse.collections.impl.set.immutable with parameters of type Predicate Modifier and Type Method Description booleanImmutableEmptySet. allSatisfy(Predicate<? super T> predicate)booleanImmutableEmptySet. anySatisfy(Predicate<? super T> predicate)<V> ImmutableSet<V>AbstractImmutableSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ImmutableSet<V>ImmutableEmptySet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V,R extends java.util.Collection<V>>
RImmutableEmptySet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)intImmutableEmptySet. count(Predicate<? super T> predicate)TImmutableEmptySet. detect(Predicate<? super T> predicate)TImmutableEmptySet. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)java.util.Optional<T>ImmutableEmptySet. detectOptional(Predicate<? super T> predicate)booleanImmutableEmptySet. noneSatisfy(Predicate<? super T> predicate)PartitionImmutableSet<T>AbstractImmutableSet. partition(Predicate<? super T> predicate)PartitionImmutableSet<T>ImmutableEmptySet. partition(Predicate<? super T> predicate)ImmutableSet<T>AbstractImmutableSet. reject(Predicate<? super T> predicate)ImmutableSet<T>ImmutableEmptySet. reject(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RImmutableEmptySet. reject(Predicate<? super T> predicate, R target)ImmutableSet<T>AbstractImmutableSet. select(Predicate<? super T> predicate)ImmutableSet<T>ImmutableEmptySet. select(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RImmutableEmptySet. select(Predicate<? super T> predicate, R target) -
Uses of Predicate in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable with parameters of type Predicate Modifier and Type Method Description booleanUnifiedSet.UnifiedSetParallelUnsortedIterable. allSatisfy(Predicate<? super T> predicate)booleanUnifiedSet.UnifiedUnsortedSetBatch. allSatisfy(Predicate<? super T> predicate)booleanUnifiedSet.UnifiedSetParallelUnsortedIterable. anySatisfy(Predicate<? super T> predicate)booleanUnifiedSet.UnifiedUnsortedSetBatch. anySatisfy(Predicate<? super T> predicate)private java.lang.ObjectUnifiedSet. chainedDetect(UnifiedSet.ChainedBucket bucket, Predicate<? super T> predicate)private booleanUnifiedSet. chainedShortCircuit(UnifiedSet.ChainedBucket bucket, Predicate<? super T> predicate, boolean expected)<V> MutableSet<V>AbstractMutableSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableSet<V>MultiReaderUnifiedSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableSet<V>MultiReaderUnifiedSet.UntouchableMutableSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableSet<V>SetAdapter. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableSet<V>SynchronizedMutableSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableSet<V>UnmodifiableMutableSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)protected TUnifiedSet. detect(Predicate<? super T> predicate, int start, int end)TUnifiedSet.UnifiedSetParallelUnsortedIterable. detect(Predicate<? super T> predicate)TUnifiedSet.UnifiedUnsortedSetBatch. detect(Predicate<? super T> predicate)protected java.util.Optional<T>UnifiedSet. detectOptional(Predicate<? super T> predicate, int start, int end)PartitionMutableSet<T>AbstractMutableSet. partition(Predicate<? super T> predicate)PartitionMutableSet<T>MultiReaderUnifiedSet. partition(Predicate<? super T> predicate)PartitionMutableSet<T>MultiReaderUnifiedSet.UntouchableMutableSet. partition(Predicate<? super T> predicate)PartitionMutableSet<T>SetAdapter. partition(Predicate<? super T> predicate)PartitionMutableSet<T>SynchronizedMutableSet. partition(Predicate<? super T> predicate)PartitionMutableSet<T>UnifiedSet. partition(Predicate<? super T> predicate)PartitionMutableSet<T>UnmodifiableMutableSet. partition(Predicate<? super T> predicate)MutableSet<T>AbstractMutableSet. reject(Predicate<? super T> predicate)MutableSet<T>MultiReaderUnifiedSet. reject(Predicate<? super T> predicate)MutableSet<T>MultiReaderUnifiedSet.UntouchableMutableSet. reject(Predicate<? super T> predicate)MutableSet<T>SetAdapter. reject(Predicate<? super T> predicate)MutableSet<T>SynchronizedMutableSet. reject(Predicate<? super T> predicate)UnifiedSet<T>UnifiedSet. reject(Predicate<? super T> predicate)MutableSet<T>UnmodifiableMutableSet. reject(Predicate<? super T> predicate)MutableSet<T>AbstractMutableSet. select(Predicate<? super T> predicate)MutableSet<T>MultiReaderUnifiedSet. select(Predicate<? super T> predicate)MutableSet<T>MultiReaderUnifiedSet.UntouchableMutableSet. select(Predicate<? super T> predicate)MutableSet<T>SetAdapter. select(Predicate<? super T> predicate)MutableSet<T>SynchronizedMutableSet. select(Predicate<? super T> predicate)UnifiedSet<T>UnifiedSet. select(Predicate<? super T> predicate)UnsortedSetBatch<T>UnifiedSet.UnifiedUnsortedSetBatch. select(Predicate<? super T> predicate)MutableSet<T>UnmodifiableMutableSet. select(Predicate<? super T> predicate)protected booleanUnifiedSet. shortCircuit(Predicate<? super T> predicate, boolean expected, boolean onShortCircuit, boolean atEnd, int start, int end) -
Uses of Predicate in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable with parameters of type Predicate Modifier and Type Method Description booleanImmutableTreeSet.ImmutableTreeSetBatch. allSatisfy(Predicate<? super T> predicate)booleanImmutableTreeSet.SortedSetIterableParallelIterable. allSatisfy(Predicate<? super T> predicate)booleanImmutableTreeSet.ImmutableTreeSetBatch. anySatisfy(Predicate<? super T> predicate)booleanImmutableTreeSet.SortedSetIterableParallelIterable. anySatisfy(Predicate<? super T> predicate)<V> ImmutableList<V>AbstractImmutableSortedSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)intImmutableTreeSet.ImmutableTreeSetBatch. count(Predicate<? super T> predicate)TImmutableTreeSet.ImmutableTreeSetBatch. detect(Predicate<? super T> predicate)TImmutableTreeSet.SortedSetIterableParallelIterable. detect(Predicate<? super T> predicate)intAbstractImmutableSortedSet. detectIndex(Predicate<? super T> predicate)intImmutableTreeSet. detectIndex(Predicate<? super T> predicate)intAbstractImmutableSortedSet. detectLastIndex(Predicate<? super T> predicate)ImmutableSortedSet<T>AbstractImmutableSortedSet. dropWhile(Predicate<? super T> predicate)PartitionImmutableSortedSet<T>AbstractImmutableSortedSet. partition(Predicate<? super T> predicate)PartitionImmutableSortedSet<T>AbstractImmutableSortedSet. partitionWhile(Predicate<? super T> predicate)ImmutableSortedSet<T>AbstractImmutableSortedSet. reject(Predicate<? super T> predicate)ImmutableSortedSet<T>ImmutableEmptySortedSet. reject(Predicate<? super T> predicate)ImmutableSortedSet<T>AbstractImmutableSortedSet. select(Predicate<? super T> predicate)ImmutableSortedSet<T>ImmutableEmptySortedSet. select(Predicate<? super T> predicate)SortedSetBatch<T>ImmutableTreeSet.ImmutableTreeSetBatch. select(Predicate<? super T> predicate)ImmutableSortedSet<T>AbstractImmutableSortedSet. takeWhile(Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable with parameters of type Predicate Modifier and Type Method Description <V> MutableList<V>SortedSetAdapter. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableList<V>SynchronizedSortedSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableList<V>TreeSortedSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableList<V>UnmodifiableSortedSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)intSortedSetAdapter. detectIndex(Predicate<? super T> predicate)intSynchronizedSortedSet. detectIndex(Predicate<? super T> predicate)intTreeSortedSet. detectIndex(Predicate<? super T> predicate)intUnmodifiableSortedSet. detectIndex(Predicate<? super T> predicate)intSortedSetAdapter. detectLastIndex(Predicate<? super T> predicate)intSynchronizedSortedSet. detectLastIndex(Predicate<? super T> predicate)intTreeSortedSet. detectLastIndex(Predicate<? super T> predicate)intUnmodifiableSortedSet. detectLastIndex(Predicate<? super T> predicate)MutableSortedSet<T>SortedSetAdapter. dropWhile(Predicate<? super T> predicate)MutableSortedSet<T>SynchronizedSortedSet. dropWhile(Predicate<? super T> predicate)MutableSortedSet<T>TreeSortedSet. dropWhile(Predicate<? super T> predicate)MutableSortedSet<T>UnmodifiableSortedSet. dropWhile(Predicate<? super T> predicate)PartitionMutableSortedSet<T>SortedSetAdapter. partition(Predicate<? super T> predicate)PartitionMutableSortedSet<T>SynchronizedSortedSet. partition(Predicate<? super T> predicate)PartitionMutableSortedSet<T>TreeSortedSet. partition(Predicate<? super T> predicate)PartitionMutableSortedSet<T>UnmodifiableSortedSet. partition(Predicate<? super T> predicate)PartitionMutableSortedSet<T>SortedSetAdapter. partitionWhile(Predicate<? super T> predicate)PartitionMutableSortedSet<T>SynchronizedSortedSet. partitionWhile(Predicate<? super T> predicate)PartitionMutableSortedSet<T>TreeSortedSet. partitionWhile(Predicate<? super T> predicate)PartitionMutableSortedSet<T>UnmodifiableSortedSet. partitionWhile(Predicate<? super T> predicate)MutableSortedSet<T>SortedSetAdapter. reject(Predicate<? super T> predicate)MutableSortedSet<T>SynchronizedSortedSet. reject(Predicate<? super T> predicate)TreeSortedSet<T>TreeSortedSet. reject(Predicate<? super T> predicate)MutableSortedSet<T>UnmodifiableSortedSet. reject(Predicate<? super T> predicate)MutableSortedSet<T>SortedSetAdapter. select(Predicate<? super T> predicate)MutableSortedSet<T>SynchronizedSortedSet. select(Predicate<? super T> predicate)TreeSortedSet<T>TreeSortedSet. select(Predicate<? super T> predicate)MutableSortedSet<T>UnmodifiableSortedSet. select(Predicate<? super T> predicate)MutableSortedSet<T>SortedSetAdapter. takeWhile(Predicate<? super T> predicate)MutableSortedSet<T>SynchronizedSortedSet. takeWhile(Predicate<? super T> predicate)MutableSortedSet<T>TreeSortedSet. takeWhile(Predicate<? super T> predicate)MutableSortedSet<T>UnmodifiableSortedSet. takeWhile(Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.impl.set.strategy.mutable
Methods in org.eclipse.collections.impl.set.strategy.mutable with parameters of type Predicate Modifier and Type Method Description booleanUnifiedSetWithHashingStrategy.UnifiedSetParallelUnsortedIterable. allSatisfy(Predicate<? super T> predicate)booleanUnifiedSetWithHashingStrategy.UnifiedUnsortedSetBatch. allSatisfy(Predicate<? super T> predicate)booleanUnifiedSetWithHashingStrategy.UnifiedSetParallelUnsortedIterable. anySatisfy(Predicate<? super T> predicate)booleanUnifiedSetWithHashingStrategy.UnifiedUnsortedSetBatch. anySatisfy(Predicate<? super T> predicate)private java.lang.ObjectUnifiedSetWithHashingStrategy. chainedDetect(UnifiedSetWithHashingStrategy.ChainedBucket bucket, Predicate<? super T> predicate)private booleanUnifiedSetWithHashingStrategy. chainedShortCircuit(UnifiedSetWithHashingStrategy.ChainedBucket bucket, Predicate<? super T> predicate, boolean expected)protected TUnifiedSetWithHashingStrategy. detect(Predicate<? super T> predicate, int start, int end)TUnifiedSetWithHashingStrategy.UnifiedSetParallelUnsortedIterable. detect(Predicate<? super T> predicate)TUnifiedSetWithHashingStrategy.UnifiedUnsortedSetBatch. detect(Predicate<? super T> predicate)protected java.util.Optional<T>UnifiedSetWithHashingStrategy. detectOptional(Predicate<? super T> predicate, int start, int end)LazyIterable<T>UnifiedSetWithHashingStrategy. lazyReject(Predicate<? super T> predicate)Deprecated.since 3.0.LazyIterable<T>UnifiedSetWithHashingStrategy. lazySelect(Predicate<? super T> predicate)Deprecated.since 3.0.PartitionMutableSet<T>UnifiedSetWithHashingStrategy. partition(Predicate<? super T> predicate)UnifiedSetWithHashingStrategy<T>UnifiedSetWithHashingStrategy. reject(Predicate<? super T> predicate)UnifiedSetWithHashingStrategy<T>UnifiedSetWithHashingStrategy. select(Predicate<? super T> predicate)UnsortedSetBatch<T>UnifiedSetWithHashingStrategy.UnifiedUnsortedSetBatch. select(Predicate<? super T> predicate)protected booleanUnifiedSetWithHashingStrategy. shortCircuit(Predicate<? super T> predicate, boolean expected, boolean onShortCircuit, boolean atEnd, int start, int end) -
Uses of Predicate in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable with parameters of type Predicate Modifier and Type Method Description booleanImmutableArrayStack. allSatisfy(Predicate<? super T> predicate)Deprecated.booleanImmutableArrayStack. anySatisfy(Predicate<? super T> predicate)Deprecated.<V> ImmutableStack<V>ImmutableArrayStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)Deprecated.<V,R extends java.util.Collection<V>>
RImmutableArrayStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)Deprecated.<V> ImmutableStack<V>ImmutableEmptyStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V,R extends java.util.Collection<V>>
RImmutableEmptyStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)<V> ImmutableStack<V>ImmutableNotEmptyStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)intImmutableArrayStack. count(Predicate<? super T> predicate)Deprecated.intImmutableEmptyStack. count(Predicate<? super T> predicate)TImmutableArrayStack. detect(Predicate<? super T> predicate)Deprecated.TImmutableEmptyStack. detect(Predicate<? super T> predicate)TImmutableArrayStack. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)Deprecated.TImmutableEmptyStack. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)intImmutableArrayStack. detectIndex(Predicate<? super T> predicate)Deprecated.intImmutableEmptyStack. detectIndex(Predicate<? super T> predicate)intImmutableNotEmptyStack. detectIndex(Predicate<? super T> predicate)java.util.Optional<T>ImmutableArrayStack. detectOptional(Predicate<? super T> predicate)Deprecated.java.util.Optional<T>ImmutableEmptyStack. detectOptional(Predicate<? super T> predicate)ImmutableStack<T>ImmutableArrayStack. dropWhile(Predicate<? super T> predicate)Deprecated.ImmutableStack<T>ImmutableEmptyStack. dropWhile(Predicate<? super T> predicate)ImmutableStack<T>ImmutableNotEmptyStack. dropWhile(Predicate<? super T> predicate)booleanImmutableArrayStack. noneSatisfy(Predicate<? super T> predicate)Deprecated.PartitionImmutableStack<T>ImmutableArrayStack. partition(Predicate<? super T> predicate)Deprecated.PartitionImmutableStack<T>ImmutableEmptyStack. partition(Predicate<? super T> predicate)PartitionImmutableStack<T>ImmutableNotEmptyStack. partition(Predicate<? super T> predicate)PartitionImmutableStack<T>ImmutableArrayStack. partitionWhile(Predicate<? super T> predicate)Deprecated.PartitionImmutableStack<T>ImmutableEmptyStack. partitionWhile(Predicate<? super T> predicate)PartitionImmutableStack<T>ImmutableNotEmptyStack. partitionWhile(Predicate<? super T> predicate)ImmutableStack<T>ImmutableArrayStack. reject(Predicate<? super T> predicate)Deprecated.<R extends java.util.Collection<T>>
RImmutableArrayStack. reject(Predicate<? super T> predicate, R target)Deprecated.ImmutableStack<T>ImmutableEmptyStack. reject(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RImmutableEmptyStack. reject(Predicate<? super T> predicate, R target)ImmutableStack<T>ImmutableNotEmptyStack. reject(Predicate<? super T> predicate)ImmutableStack<T>ImmutableArrayStack. select(Predicate<? super T> predicate)Deprecated.<R extends java.util.Collection<T>>
RImmutableArrayStack. select(Predicate<? super T> predicate, R target)Deprecated.ImmutableStack<T>ImmutableEmptyStack. select(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RImmutableEmptyStack. select(Predicate<? super T> predicate, R target)ImmutableStack<T>ImmutableNotEmptyStack. select(Predicate<? super T> predicate)ImmutableStack<T>ImmutableArrayStack. takeWhile(Predicate<? super T> predicate)Deprecated.ImmutableStack<T>ImmutableEmptyStack. takeWhile(Predicate<? super T> predicate)ImmutableStack<T>ImmutableNotEmptyStack. takeWhile(Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with parameters of type Predicate Modifier and Type Method Description booleanArrayStack. allSatisfy(Predicate<? super T> predicate)booleanSynchronizedStack. allSatisfy(Predicate<? super T> predicate)booleanUnmodifiableStack. allSatisfy(Predicate<? super T> predicate)booleanArrayStack. anySatisfy(Predicate<? super T> predicate)booleanSynchronizedStack. anySatisfy(Predicate<? super T> predicate)booleanUnmodifiableStack. anySatisfy(Predicate<? super T> predicate)<V> ArrayStack<V>ArrayStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V,R extends java.util.Collection<V>>
RArrayStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)<V> MutableStack<V>SynchronizedStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V,R extends java.util.Collection<V>>
RSynchronizedStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)<V> MutableStack<V>UnmodifiableStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V,R extends java.util.Collection<V>>
RUnmodifiableStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)intArrayStack. count(Predicate<? super T> predicate)intSynchronizedStack. count(Predicate<? super T> predicate)intUnmodifiableStack. count(Predicate<? super T> predicate)TArrayStack. detect(Predicate<? super T> predicate)TSynchronizedStack. detect(Predicate<? super T> predicate)TUnmodifiableStack. detect(Predicate<? super T> predicate)TArrayStack. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)TSynchronizedStack. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)TUnmodifiableStack. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)intArrayStack. detectIndex(Predicate<? super T> predicate)intSynchronizedStack. detectIndex(Predicate<? super T> predicate)intUnmodifiableStack. detectIndex(Predicate<? super T> predicate)java.util.Optional<T>ArrayStack. detectOptional(Predicate<? super T> predicate)java.util.Optional<T>SynchronizedStack. detectOptional(Predicate<? super T> predicate)java.util.Optional<T>UnmodifiableStack. detectOptional(Predicate<? super T> predicate)MutableStack<T>ArrayStack. dropWhile(Predicate<? super T> predicate)MutableStack<T>SynchronizedStack. dropWhile(Predicate<? super T> predicate)MutableStack<T>UnmodifiableStack. dropWhile(Predicate<? super T> predicate)booleanArrayStack. noneSatisfy(Predicate<? super T> predicate)booleanSynchronizedStack. noneSatisfy(Predicate<? super T> predicate)booleanUnmodifiableStack. noneSatisfy(Predicate<? super T> predicate)PartitionMutableStack<T>ArrayStack. partition(Predicate<? super T> predicate)PartitionMutableStack<T>SynchronizedStack. partition(Predicate<? super T> predicate)PartitionMutableStack<T>UnmodifiableStack. partition(Predicate<? super T> predicate)PartitionMutableStack<T>ArrayStack. partitionWhile(Predicate<? super T> predicate)PartitionMutableStack<T>SynchronizedStack. partitionWhile(Predicate<? super T> predicate)PartitionMutableStack<T>UnmodifiableStack. partitionWhile(Predicate<? super T> predicate)ArrayStack<T>ArrayStack. reject(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RArrayStack. reject(Predicate<? super T> predicate, R target)MutableStack<T>SynchronizedStack. reject(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RSynchronizedStack. reject(Predicate<? super T> predicate, R target)MutableStack<T>UnmodifiableStack. reject(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RUnmodifiableStack. reject(Predicate<? super T> predicate, R target)ArrayStack<T>ArrayStack. select(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RArrayStack. select(Predicate<? super T> predicate, R target)MutableStack<T>SynchronizedStack. select(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RSynchronizedStack. select(Predicate<? super T> predicate, R target)MutableStack<T>UnmodifiableStack. select(Predicate<? super T> predicate)<R extends java.util.Collection<T>>
RUnmodifiableStack. select(Predicate<? super T> predicate, R target)MutableStack<T>ArrayStack. takeWhile(Predicate<? super T> predicate)MutableStack<T>SynchronizedStack. takeWhile(Predicate<? super T> predicate)MutableStack<T>UnmodifiableStack. takeWhile(Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.impl.test
Methods in org.eclipse.collections.impl.test with parameters of type Predicate Modifier and Type Method Description static <T> voidVerify. assertAllSatisfy(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)static <T> voidVerify. assertAllSatisfy(java.lang.String message, java.lang.Iterable<T> iterable, Predicate<? super T> predicate)static <K,V>
voidVerify. assertAllSatisfy(java.util.Map<K,V> map, Predicate<? super V> predicate)static <T> voidVerify. assertAnySatisfy(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)static <T> voidVerify. assertAnySatisfy(java.lang.String message, java.lang.Iterable<T> iterable, Predicate<? super T> predicate)static <K,V>
voidVerify. assertAnySatisfy(java.util.Map<K,V> map, Predicate<? super V> predicate)static <T> voidVerify. assertCount(int expectedCount, java.lang.Iterable<T> iterable, Predicate<? super T> predicate)static <T> voidVerify. assertNoneSatisfy(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)static <T> voidVerify. assertNoneSatisfy(java.lang.String message, java.lang.Iterable<T> iterable, Predicate<? super T> predicate)static <K,V>
voidVerify. assertNoneSatisfy(java.util.Map<K,V> map, Predicate<? super V> predicate) -
Uses of Predicate in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with parameters of type Predicate Modifier and Type Method Description static <T> booleanArrayIterate. allSatisfy(T[] objectArray, Predicate<? super T> predicate)static <T> booleanArrayListIterate. allSatisfy(java.util.ArrayList<T> list, Predicate<? super T> predicate)static <T> booleanIterate. allSatisfy(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)Returns true if the predicate evaluates to true for every element of the iterable, or returns false.static <T> booleanListIterate. allSatisfy(java.util.List<T> list, Predicate<? super T> predicate)static <K,V>
booleanMapIterate. allSatisfy(java.util.Map<K,V> map, Predicate<? super V> predicate)static <T> booleanArrayIterate. anySatisfy(T[] objectArray, Predicate<? super T> predicate)static <T> booleanArrayListIterate. anySatisfy(java.util.ArrayList<T> list, Predicate<? super T> predicate)static <T> booleanIterate. anySatisfy(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)Returns true if the predicate evaluates to true for any element of the iterable.static <T> booleanListIterate. anySatisfy(java.util.List<T> list, Predicate<? super T> predicate)static <K,V>
booleanMapIterate. anySatisfy(java.util.Map<K,V> map, Predicate<? super V> predicate)static <T,V>
MutableList<V>ArrayIterate. collectIf(T[] objectArray, Predicate<? super T> predicate, Function<? super T,? extends V> function)static <T,V,R extends java.util.Collection<V>>
RArrayIterate. collectIf(T[] objectArray, Predicate<? super T> predicate, Function<? super T,? extends V> function, R targetCollection)static <T,A>
java.util.ArrayList<A>ArrayListIterate. collectIf(java.util.ArrayList<T> list, Predicate<? super T> predicate, Function<? super T,? extends A> function)static <T,A,R extends java.util.Collection<A>>
RArrayListIterate. collectIf(java.util.ArrayList<T> list, Predicate<? super T> predicate, Function<? super T,? extends A> function, R targetCollection)static <T,V>
java.util.Collection<V>Iterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,? extends V> function)static <T,V,R extends java.util.Collection<V>>
RIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)static <T,V>
LazyIterable<V>LazyIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,? extends V> function)Creates a deferred filtering and transforming iterable for the specified iterable.static <T,A>
MutableList<A>ListIterate. collectIf(java.util.List<T> list, Predicate<? super T> predicate, Function<? super T,? extends A> function)static <T,A,R extends java.util.Collection<A>>
RListIterate. collectIf(java.util.List<T> list, Predicate<? super T> predicate, Function<? super T,? extends A> function, R targetCollection)static <T> intArrayIterate. count(T[] objectArray, Predicate<? super T> predicate)static <T> intArrayListIterate. count(java.util.ArrayList<T> list, Predicate<? super T> predicate)static <T> intIterate. count(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)Returns the total number of elements that evaluate to true for the specified predicate.static <T> intListIterate. count(java.util.List<T> list, Predicate<? super T> predicate)static <K,V>
intMapIterate. count(java.util.Map<K,V> map, Predicate<? super V> predicate)static <T> TArrayIterate. detect(T[] objectArray, Predicate<? super T> predicate)static <T> TArrayListIterate. detect(java.util.ArrayList<T> list, Predicate<? super T> predicate)static <T> TIterate. detect(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)Returns the first element of the iterable that evaluates to true for the specified predicate, or null if no element evaluates to true.static <T> TListIterate. detect(java.util.List<T> list, Predicate<? super T> predicate)static <K,V>
VMapIterate. detect(java.util.Map<K,V> map, Predicate<? super V> predicate)static <T> TArrayIterate. detectIfNone(T[] objectArray, Predicate<? super T> predicate, T ifNone)static <T> TArrayListIterate. detectIfNone(java.util.ArrayList<T> list, Predicate<? super T> predicate, T ifNone)static <T> TIterate. detectIfNone(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, T ifNone)Returns the first element of the iterable that evaluates to true for the specified predicate, or returns the result ifNone if no element evaluates to true.static <T> TListIterate. detectIfNone(java.util.List<T> list, Predicate<? super T> predicate, T ifNone)static <K,V>
VMapIterate. detectIfNone(java.util.Map<K,V> map, Predicate<? super V> predicate, V ifNone)static <T> intArrayIterate. detectIndex(T[] objectArray, Predicate<? super T> predicate)Returns the first index where the predicate evaluates totrue.static <T> intArrayListIterate. detectIndex(java.util.ArrayList<T> list, Predicate<? super T> predicate)static <T> intIterate. detectIndex(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)Searches for the first occurrence where the predicate evaluates to true, returns -1 if the predicate does not evaluate to true.static <T> intListIterate. detectIndex(java.util.List<T> list, Predicate<? super T> predicate)Searches for the first index where the predicate evaluates to true.static <T> intArrayIterate. detectLastIndex(T[] objectArray, Predicate<? super T> predicate)Returns the last index where the predicate evaluates totrue.static <T> intArrayListIterate. detectLastIndex(java.util.ArrayList<T> list, Predicate<? super T> predicate)static <T> intListIterate. detectLastIndex(java.util.List<T> list, Predicate<? super T> predicate)Returns the last index where the predicate evaluates to true.static <T> java.util.Optional<T>ArrayIterate. detectOptional(T[] objectArray, Predicate<? super T> predicate)static <T> java.util.Optional<T>ArrayListIterate. detectOptional(java.util.ArrayList<T> list, Predicate<? super T> predicate)static <T> java.util.Optional<T>Iterate. detectOptional(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)Returns the first element of the iterable that evaluates to true for the specified predicate as an Optional.static <T> java.util.Optional<T>ListIterate. detectOptional(java.util.List<T> list, Predicate<? super T> predicate)static <K,V>
java.util.Optional<V>MapIterate. detectOptional(java.util.Map<K,V> map, Predicate<? super V> predicate)static <T> MutableList<T>ArrayListIterate. dropWhile(java.util.ArrayList<T> list, Predicate<? super T> predicate)static <T> LazyIterable<T>LazyIterate. dropWhile(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)Creates a deferred dropWhile iterable for the specified iterable using the specified count as the size to drop.static <T> MutableList<T>ListIterate. dropWhile(java.util.List<T> list, Predicate<? super T> predicate)static <IV,K,V>
IVMapIterate. injectIntoIf(IV initialValue, java.util.Map<K,V> map, Predicate<? super V> predicate, Function2<? super IV,? super V,? extends IV> function)Same asMapIterate.injectInto(Object, Map, Function2), but only applies the value to the function if the predicate returns true for the value.static <T> booleanArrayIterate. noneSatisfy(T[] objectArray, Predicate<? super T> predicate)static <T> booleanArrayListIterate. noneSatisfy(java.util.ArrayList<T> list, Predicate<? super T> predicate)static <T> booleanIterate. noneSatisfy(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)Returns true if the predicate evaluates to false for every element of the iterable, or returns false.static <T> booleanListIterate. noneSatisfy(java.util.List<T> list, Predicate<? super T> predicate)static <K,V>
booleanMapIterate. noneSatisfy(java.util.Map<K,V> map, Predicate<? super V> predicate)static <T> PartitionFastList<T>ArrayIterate. partition(T[] array, Predicate<? super T> predicate)static <T> PartitionMutableList<T>ArrayListIterate. partition(java.util.ArrayList<T> list, Predicate<? super T> predicate)static <T> PartitionIterable<T>Iterate. partition(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)Filters a collection into a PartitionIterable based on a predicate.static <T> PartitionMutableList<T>ListIterate. partition(java.util.List<T> list, Predicate<? super T> predicate)static <T> PartitionMutableList<T>ArrayListIterate. partitionWhile(java.util.ArrayList<T> list, Predicate<? super T> predicate)static <T> PartitionMutableList<T>ListIterate. partitionWhile(java.util.List<T> list, Predicate<? super T> predicate)static <T> MutableList<T>ArrayIterate. reject(T[] objectArray, Predicate<? super T> predicate)static <T,R extends java.util.Collection<T>>
RArrayIterate. reject(T[] objectArray, Predicate<? super T> predicate, R targetCollection)static <T> java.util.ArrayList<T>ArrayListIterate. reject(java.util.ArrayList<T> list, Predicate<? super T> predicate)static <T,R extends java.util.Collection<T>>
RArrayListIterate. reject(java.util.ArrayList<T> list, Predicate<? super T> predicate, R targetCollection)static <T> java.util.Collection<T>Iterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)Returns all elements of the iterable that evaluate to false for the specified predicate.static <T,R extends java.util.Collection<T>>
RIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R targetCollection)Same as the reject method with one parameter but uses the specified target collection for the results.static <T> LazyIterable<T>LazyIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)Creates a deferred negative filtering iterable for the specified iterable.static <T> MutableList<T>ListIterate. reject(java.util.List<T> list, Predicate<? super T> predicate)static <T,R extends java.util.Collection<T>>
RListIterate. reject(java.util.List<T> list, Predicate<? super T> predicate, R targetCollection)static <K,V>
MutableList<V>MapIterate. reject(java.util.Map<K,V> map, Predicate<? super V> predicate)static <K,V,R extends java.util.Collection<V>>
RMapIterate. reject(java.util.Map<K,V> map, Predicate<? super V> predicate, R targetCollection)static <T> booleanArrayListIterate. removeIf(java.util.ArrayList<T> list, Predicate<? super T> predicate)static <T> booleanIterate. removeIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)Removes all elements from the iterable that evaluate to true for the specified predicate.static <T> booleanListIterate. removeIf(java.util.List<T> list, Predicate<? super T> predicate)static <T> booleanListIterate. removeIf(java.util.List<T> list, Predicate<? super T> predicate, Procedure<? super T> procedure)static <T> MutableList<T>ArrayIterate. select(T[] objectArray, Predicate<? super T> predicate)static <T,R extends java.util.Collection<T>>
RArrayIterate. select(T[] objectArray, Predicate<? super T> predicate, R targetCollection)static <T> java.util.ArrayList<T>ArrayListIterate. select(java.util.ArrayList<T> list, Predicate<? super T> predicate)static <T,R extends java.util.Collection<T>>
RArrayListIterate. select(java.util.ArrayList<T> list, Predicate<? super T> predicate, R targetCollection)static <T> java.util.Collection<T>Iterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)Returns a new collection with only the elements that evaluated to true for the specified predicate.static <T,R extends java.util.Collection<T>>
RIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R targetCollection)Same as the select method with two parameters but uses the specified target collectionstatic <T> LazyIterable<T>LazyIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)Creates a deferred filtering iterable for the specified iterable.static <T> MutableList<T>ListIterate. select(java.util.List<T> list, Predicate<? super T> predicate)static <T,R extends java.util.Collection<T>>
RListIterate. select(java.util.List<T> list, Predicate<? super T> predicate, R targetCollection)static <K,V>
MutableList<V>MapIterate. select(java.util.Map<K,V> map, Predicate<? super V> predicate)static <K,V,R extends java.util.Collection<V>>
RMapIterate. select(java.util.Map<K,V> map, Predicate<? super V> predicate, R targetCollection)static <K,V>
MutableMap<K,V>MapIterate. selectMapOnKey(java.util.Map<K,V> map, Predicate<? super K> predicate)For each key of the source map, the Predicate is evaluated.static <K,V>
MutableMap<K,V>MapIterate. selectMapOnValue(java.util.Map<K,V> map, Predicate<? super V> predicate)For each value of the source map, the Predicate is evaluated.static <T> MutableList<T>ArrayListIterate. takeWhile(java.util.ArrayList<T> list, Predicate<? super T> predicate)static <T> LazyIterable<T>LazyIterate. takeWhile(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)Creates a deferred takeWhile iterable for the specified iterable using the specified predicate.static <T> MutableList<T>ListIterate. takeWhile(java.util.List<T> list, Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type Predicate Modifier and Type Method Description static <T> booleanInternalArrayIterate. allSatisfy(T[] array, int size, Predicate<? super T> predicate)static <T> booleanIterableIterate. allSatisfy(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)static <T> booleanIteratorIterate. allSatisfy(java.util.Iterator<T> iterator, Predicate<? super T> predicate)static <T> booleanRandomAccessListIterate. allSatisfy(java.util.List<T> list, Predicate<? super T> predicate)static <T> booleanInternalArrayIterate. anySatisfy(T[] array, int size, Predicate<? super T> predicate)static <T> booleanIterableIterate. anySatisfy(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)static <T> booleanIteratorIterate. anySatisfy(java.util.Iterator<T> iterator, Predicate<? super T> predicate)static <T> booleanRandomAccessListIterate. anySatisfy(java.util.List<T> list, Predicate<? super T> predicate)static <T,V,R extends java.util.Collection<V>>
RInternalArrayIterate. collectIf(T[] array, int size, Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)static <T,V>
MutableList<V>IterableIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,? extends V> function)static <T,V,R extends java.util.Collection<V>>
RIterableIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,? extends V> function, R targetCollection)static <T,V,R extends java.util.Collection<V>>
RIteratorIterate. collectIf(java.util.Iterator<T> iterator, Predicate<? super T> predicate, Function<? super T,? extends V> function, R targetCollection)static <T,A>
MutableList<A>RandomAccessListIterate. collectIf(java.util.List<T> list, Predicate<? super T> predicate, Function<? super T,? extends A> function)static <T,A,R extends java.util.Collection<A>>
RRandomAccessListIterate. collectIf(java.util.List<T> list, Predicate<? super T> predicate, Function<? super T,? extends A> function, R targetCollection)static <T> intInternalArrayIterate. count(T[] array, int size, Predicate<? super T> predicate)static <T> intIterableIterate. count(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)static <T> intIteratorIterate. count(java.util.Iterator<T> iterator, Predicate<? super T> predicate)static <T> intRandomAccessListIterate. count(java.util.List<T> list, Predicate<? super T> predicate)static <T> TInternalArrayIterate. detect(T[] array, int size, Predicate<? super T> predicate)static <T> TIterableIterate. detect(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)static <T> TIteratorIterate. detect(java.util.Iterator<T> iterator, Predicate<? super T> predicate)static <T> TRandomAccessListIterate. detect(java.util.List<T> list, Predicate<? super T> predicate)static <T> intInternalArrayIterate. detectIndex(T[] objectArray, int size, Predicate<? super T> predicate)static <T> intIterableIterate. detectIndex(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)static <T> intIteratorIterate. detectIndex(java.util.Iterator<T> iterator, Predicate<? super T> predicate)static <T> intRandomAccessListIterate. detectIndex(java.util.List<T> list, Predicate<? super T> predicate)Searches for the first occurrence where the predicate evaluates to true.static <T> intInternalArrayIterate. detectLastIndex(T[] objectArray, int size, Predicate<? super T> predicate)static <T> intRandomAccessListIterate. detectLastIndex(java.util.List<T> list, Predicate<? super T> predicate)static <T> java.util.Optional<T>InternalArrayIterate. detectOptional(T[] array, int size, Predicate<? super T> predicate)static <T> java.util.Optional<T>IterableIterate. detectOptional(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)static <T> java.util.Optional<T>IteratorIterate. detectOptional(java.util.Iterator<T> iterator, Predicate<? super T> predicate)static <T> java.util.Optional<T>RandomAccessListIterate. detectOptional(java.util.List<T> list, Predicate<? super T> predicate)static <T,R extends MutableCollection<T>>
RIterableIterate. dropWhile(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target)static <T,R extends MutableCollection<T>>
RIteratorIterate. dropWhile(java.util.Iterator<T> iterator, Predicate<? super T> predicate, R target)static <T> MutableList<T>RandomAccessListIterate. dropWhile(java.util.List<T> list, Predicate<? super T> predicate)static <T> booleanInternalArrayIterate. noneSatisfy(T[] array, int size, Predicate<? super T> predicate)static <T> booleanIterableIterate. noneSatisfy(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)static <T> booleanIteratorIterate. noneSatisfy(java.util.Iterator<T> iterator, Predicate<? super T> predicate)static <T> booleanRandomAccessListIterate. noneSatisfy(java.util.List<T> list, Predicate<? super T> predicate)static <T> PartitionFastList<T>InternalArrayIterate. partition(T[] array, int size, Predicate<? super T> predicate)static <T> PartitionMutableList<T>IterableIterate. partition(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)static <T> PartitionMutableList<T>IteratorIterate. partition(java.util.Iterator<T> iterator, Predicate<? super T> predicate)static <T> PartitionMutableList<T>RandomAccessListIterate. partition(java.util.List<T> list, Predicate<? super T> predicate)static <T,R extends PartitionMutableCollection<T>>
RIterableIterate. partitionWhile(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target)static <T,R extends PartitionMutableCollection<T>>
RIteratorIterate. partitionWhile(java.util.Iterator<T> iterator, Predicate<? super T> predicate, R target)static <T> PartitionMutableList<T>RandomAccessListIterate. partitionWhile(java.util.List<T> list, Predicate<? super T> predicate)static <T,R extends java.util.Collection<T>>
RInternalArrayIterate. reject(T[] array, int size, Predicate<? super T> predicate, R target)static <T> MutableList<T>IterableIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)static <T,R extends java.util.Collection<T>>
RIterableIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R targetCollection)static <T,R extends java.util.Collection<T>>
RIteratorIterate. reject(java.util.Iterator<T> iterator, Predicate<? super T> predicate, R targetCollection)static <T> MutableList<T>RandomAccessListIterate. reject(java.util.List<T> list, Predicate<? super T> predicate)static <T,R extends java.util.Collection<T>>
RRandomAccessListIterate. reject(java.util.List<T> list, Predicate<? super T> predicate, R targetCollection)static <T> booleanIterableIterate. removeIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)static <T> booleanIterableIterate. removeIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Procedure<? super T> procedure)static <T> booleanIteratorIterate. removeIf(java.util.Iterator<T> iterator, Predicate<? super T> predicate)static <T> booleanIteratorIterate. removeIf(java.util.Iterator<T> iterator, Predicate<? super T> predicate, Procedure<? super T> procedure)static <T> booleanRandomAccessListIterate. removeIf(java.util.List<T> list, Predicate<? super T> predicate)static <T> booleanRandomAccessListIterate. removeIf(java.util.List<T> list, Predicate<? super T> predicate, Procedure<? super T> procedure)static <T,R extends java.util.Collection<T>>
RInternalArrayIterate. select(T[] array, int size, Predicate<? super T> predicate, R target)static <T> MutableList<T>IterableIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)static <T,R extends java.util.Collection<T>>
RIterableIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R targetCollection)static <T,R extends java.util.Collection<T>>
RIteratorIterate. select(java.util.Iterator<T> iterator, Predicate<? super T> predicate, R targetCollection)static <T> MutableList<T>RandomAccessListIterate. select(java.util.List<T> list, Predicate<? super T> predicate)static <T,R extends java.util.Collection<T>>
RRandomAccessListIterate. select(java.util.List<T> list, Predicate<? super T> predicate, R targetCollection)static <T> booleanInternalArrayIterate. shortCircuit(T[] array, int size, Predicate<? super T> predicate, boolean expected, boolean onShortCircuit, boolean atEnd)static <T> booleanIteratorIterate. shortCircuit(java.util.Iterator<T> iterator, Predicate<? super T> predicate, boolean expected, boolean onShortCircuit, boolean atEnd)static <T> booleanRandomAccessListIterate. shortCircuit(java.util.List<T> list, Predicate<? super T> predicate, boolean expected, boolean onShortCircuit, boolean atEnd)static <T,R extends MutableCollection<T>>
RIterableIterate. takeWhile(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target)static <T,R extends MutableCollection<T>>
RIteratorIterate. takeWhile(java.util.Iterator<T> iterator, Predicate<? super T> predicate, R target)static <T> MutableList<T>RandomAccessListIterate. takeWhile(java.util.List<T> list, Predicate<? super T> predicate)
-