Uses of Interface
org.eclipse.collections.api.block.predicate.Predicate
Packages that use Predicate
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for Bag API.
This package contains interfaces for SortedBag API.
This package contains interfaces for BiMap API.
This package contains interfaces for list API which enhance the performance and functionality of
List.This package contains interfaces for map API which enhance the performance and functionality of
MapThis package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains mutable and immutable sorted map interfaces.
This package contains interfaces for set API which enhance the performance and functionality of
Set.This package contains interfaces for sorted set API.
This package contains interfaces for stack API.
This package contains implementations for Eclipse Collections API.
This package contains implementations of the
ImmutableBag interface.This package contains implementations of the
MutableBag interface.This package contains implementations of
MutableSortedBag.This package contains implementations of the
MutableBiMap interface.This package contains factory implementations for
Function, Predicate, SerializableComparator and Procedure.This package contains implementations of
Predicate and Predicate2.This package contains abstract implementations of
Predicate and Predicate2.This package contains implementations of
Procedure and Procedure2.This package contains implementations of the
MutableCollection interface.This package contains static utilities for creating mutable and immutable collection factories.
This package contains implementations which has several parallel algorithms that work with Collections and make use of Java's fork-join
framework.
This package contains implementations of the
LazyIterable interface.This package contains implementations of the
Iterator interface.This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of the
ListIterable interface.This package contains implementations of the
FixedSizeList interface.This package contains implementations of the
ImmutableList interface.This package contains implementations of the
MutableList interface.This package contains implementations of the
MapIterable interface.This package contains implementations of the
ImmutableMap interface.This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableMap interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap interface.This package contains implementations of the
MutableSortedMap interface.This package contains mutable map implementations backed by hashtables that rely on
HashingStrategys provided by
the developer to compute the hashCode and equals for the objects stored in the map.This package contains classes which is used for parallel iteration through the containers.
This package contains implementations of the
PartitionStack interface.This package contains implementations of
FixedSizeSet.This package contains the implementations of
ImmutableSet.This package contains implementations of
MutableSet.This package contains implementations of
ImmutableSortedSet.This package contains implementations of
MutableSortedSet.This package contains implementations of sets with user defined
HashingStrategys.This package contains implementations of the
ImmutableStack interface.This package contains implementations of the
MutableStack interface.This package contains
SerializeTestHelper and Verify classes.This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of Predicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type PredicateModifier and TypeMethodDescriptionbooleanParallelIterable.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> 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> 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 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.intintReturn the total number of elements that answer true to the specified 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.ParallelIterable.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.RichIterable.detectOptional(Predicate<? super T> predicate) Returns the first element of the iterable for which the predicate evaluates to true as an Optional.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.Filters a collection into a PartitionedIterable based on the evaluation of the predicate.Creates a deferred iterable for rejecting elements from the current iterable.Creates a parallel iterable for rejecting elements from the current iterable.Returns all elements of the source collection that return false when evaluating of the predicate.<R extends Collection<T>>
RSame as the reject method with one parameter but uses the specified target collection for the results.Creates a deferred iterable for selecting elements from the current iterable.Creates a parallel iterable for selecting elements from the current iterable.Returns all elements of the source collection that return true when evaluating the predicate.<R extends Collection<T>>
RSame as the select method with one parameter but uses the specified target collection for the results. -
Uses of Predicate in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type PredicateModifier and TypeMethodDescription<V> ImmutableBag<V> <V> MutableBag<V> <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> Creates a parallel iterable for rejecting elements from the current iterable.Creates a parallel iterable for rejecting elements from the current iterable.Creates a parallel iterable for selecting elements from the current iterable.Creates a parallel iterable for selecting elements from the current iterable. -
Uses of Predicate in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted with parameters of type PredicateModifier and TypeMethodDescription<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> MutableSortedBag.partitionWhile(Predicate<? super T> predicate) SortedBag.partitionWhile(Predicate<? super T> predicate) Creates a parallel iterable for rejecting elements from the current iterable.Creates a parallel iterable for selecting elements from the current iterable. -
Uses of Predicate in org.eclipse.collections.api.bimap
Methods in org.eclipse.collections.api.bimap with parameters of type Predicate -
Uses of Predicate in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection with parameters of type PredicateModifier and TypeMethodDescription<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.Filters a collection into a PartitionedIterable based on the evaluation of the predicate.Returns a MutableCollection with all elements that evaluate to false for the specified predicate.booleanbooleanRemoves all elements in the collection that evaluate to true for the specified 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 PredicateModifier and TypeMethodDescription<V> ImmutableList<V> <V> ListIterable<V> default <V> MutableList<V> <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.Returns the final elements that do not satisfy the Predicate.ImmutableList.partitionWhile(Predicate<? super T> predicate) ListIterable.partitionWhile(Predicate<? super T> predicate) Returns a Partition of the initial elements that satisfy the Predicate and the remaining elements.MutableList.partitionWhile(Predicate<? super T> predicate) default MutableList<T> Creates a parallel iterable for rejecting elements from the current iterable.default MutableList<T> Creates a parallel iterable for selecting elements from the current iterable.Returns the initial elements that satisfy the Predicate. -
Uses of Predicate in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map with parameters of type PredicateModifier and TypeMethodDescription<R> ImmutableBag<R> <V1> ImmutableList<V1> ImmutableOrderedMap.collectIf(Predicate<? super V> predicate, Function<? super V, ? extends V1> function) <R> MutableBag<R> <V1> MutableList<V1> MutableOrderedMap.collectIf(Predicate<? super V> predicate, Function<? super V, ? extends V1> function) <V1> ListIterable<V1> <V1> Bag<V1> UnsortedMapIterable.collectIf(Predicate<? super V> predicate, Function<? super V, ? extends V1> function) OrderedMap<K, V> ImmutableOrderedMap.partitionWhile(Predicate<? super V> predicate) MutableOrderedMap.partitionWhile(Predicate<? super V> predicate) OrderedMap.partitionWhile(Predicate<? super V> predicate) OrderedMap<K, V> -
Uses of Predicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type PredicateModifier and TypeMethodDescription<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) -
Uses of Predicate in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted with parameters of type PredicateModifier and TypeMethodDescription<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.partitionWhile(Predicate<? super V> predicate) SortedMapIterable.partitionWhile(Predicate<? super V> predicate) -
Uses of Predicate in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type PredicateModifier and TypeMethodDescription<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.Returns the final elements that do not satisfy the Predicate.Returns the final elements that do not satisfy the Predicate.Returns the final elements that do not satisfy the Predicate.OrderedIterable.partitionWhile(Predicate<? super T> predicate) Returns a Partition of the initial elements that satisfy the Predicate and the remaining elements.ReversibleIterable.partitionWhile(Predicate<? super T> predicate) SortedIterable.partitionWhile(Predicate<? super T> predicate) Returns a Partition of the initial elements that satisfy the Predicate and the remaining elements.Returns the initial elements that satisfy the Predicate.Returns the initial elements that satisfy the 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 PredicateModifier and TypeMethodDescription<V> ImmutableSet<V> <V> MutableSet<V> <V> UnsortedSetIterable<V> UnsortedSetIterable.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) Creates a parallel iterable for rejecting elements from the current iterable.Creates a parallel iterable for rejecting elements from the current iterable.Creates a parallel iterable for selecting elements from the current iterable.Creates a parallel iterable for selecting elements from the current iterable. -
Uses of Predicate in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted with parameters of type PredicateModifier and TypeMethodDescription<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.partitionWhile(Predicate<? super T> predicate) MutableSortedSet.partitionWhile(Predicate<? super T> predicate) SortedSetIterable.partitionWhile(Predicate<? super T> predicate) Creates a parallel iterable for rejecting elements from the current iterable.Creates a parallel iterable for selecting elements from the current iterable. -
Uses of Predicate in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack with parameters of type PredicateModifier and TypeMethodDescription<V> ImmutableStack<V> <V> MutableStack<V> <V> StackIterable<V> ImmutableStack.partitionWhile(Predicate<? super T> predicate) MutableStack.partitionWhile(Predicate<? super T> predicate) StackIterable.partitionWhile(Predicate<? super T> predicate) -
Uses of Predicate in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with parameters of type PredicateModifier and TypeMethodDescriptionbooleanAbstractRichIterable.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 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 Collection<V>>
RUnmodifiableRichIterable.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function, R target) intintUnmodifiableRichIterable.detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function) AbstractRichIterable.detectOptional(Predicate<? super T> predicate) UnmodifiableRichIterable.detectOptional(Predicate<? super T> predicate) booleanAbstractRichIterable.noneSatisfy(Predicate<? super T> predicate) booleanUnmodifiableRichIterable.noneSatisfy(Predicate<? super T> predicate) <R extends Collection<T>>
R<R extends Collection<T>>
R<R extends Collection<T>>
R<R extends Collection<T>>
R -
Uses of Predicate in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag with parameters of type PredicateModifier and TypeMethodDescription<V, R extends Collection<V>>
RAbstractBag.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function, R target) int<R extends Collection<T>>
R<R extends Collection<T>>
R -
Uses of Predicate in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable with parameters of type PredicateModifier and TypeMethodDescriptionbooleanImmutableArrayBag.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 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 Collection<V>>
RImmutableSingletonBag.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function, R target) intintintImmutableEmptyBag.detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function) ImmutableHashBag.detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function) ImmutableSingletonBag.detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function) ImmutableArrayBag.detectOptional(Predicate<? super T> predicate) ImmutableEmptyBag.detectOptional(Predicate<? super T> predicate) ImmutableHashBag.detectOptional(Predicate<? super T> predicate) ImmutableSingletonBag.detectOptional(Predicate<? super T> predicate) private ImmutableBag<T> ImmutableSingletonBag.emptyIfMatchesOrThis(Predicate<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) <R extends Collection<T>>
R<R extends Collection<T>>
R<R extends Collection<T>>
R<R extends Collection<T>>
R -
Uses of Predicate in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable with parameters of type PredicateModifier and TypeMethodDescriptionbooleanAbstractMutableBagIterable.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) AbstractMutableBagIterable.detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function) AbstractMutableBagIterable.detectOptional(Predicate<? super T> predicate) booleanAbstractMutableBagIterable.noneSatisfy(Predicate<? super T> predicate) boolean -
Uses of Predicate in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable with parameters of type PredicateModifier and TypeMethodDescriptionbooleanImmutableSortedBagImpl.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) intintImmutableEmptySortedBag.detectIndex(Predicate<? super T> predicate) intImmutableSortedBagImpl.detectIndex(Predicate<? super T> predicate) intAbstractImmutableSortedBag.detectLastIndex(Predicate<? super T> predicate) private intImmutableSortedBagImpl.detectNotIndex(Predicate<? super T> predicate) ImmutableSortedBagImpl.detectOptional(Predicate<? super T> predicate) booleanImmutableSortedBagImpl.noneSatisfy(Predicate<? super T> predicate) ImmutableEmptySortedBag.partitionWhile(Predicate<? super T> predicate) ImmutableSortedBagImpl.partitionWhile(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 PredicateModifier and TypeMethodDescription<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) AbstractMutableSortedBag.partitionWhile(Predicate<? super T> predicate) SynchronizedSortedBag.partitionWhile(Predicate<? super T> predicate) UnmodifiableSortedBag.partitionWhile(Predicate<? super T> predicate) boolean -
Uses of Predicate in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with parameters of type PredicateModifier and TypeMethodDescriptionbooleanAbstractBiMap.allSatisfy(Predicate<? super V> predicate) booleanAbstractBiMap.anySatisfy(Predicate<? super V> predicate) <VV, R extends Collection<VV>>
RAbstractBiMap.collectIf(Predicate<? super V> predicate, Function<? super V, ? extends VV> function, R target) intAbstractBiMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) AbstractBiMap.detectOptional(Predicate<? super V> predicate) booleanAbstractBiMap.noneSatisfy(Predicate<? super V> predicate) <R extends Collection<V>>
R<R extends Collection<V>>
R -
Uses of Predicate in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable with parameters of type Predicate -
Uses of Predicate in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with parameters of type PredicateModifier and TypeMethodDescriptionbooleanUnmodifiableBiMap.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 Collection<VV>>
RUnmodifiableBiMap.collectIf(Predicate<? super V> predicate, Function<? super V, ? extends VV> function, R target) intUnmodifiableBiMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) UnmodifiableBiMap.detectOptional(Predicate<? super V> predicate) booleanUnmodifiableBiMap.noneSatisfy(Predicate<? super V> predicate) <R extends Collection<V>>
R<R extends Collection<V>>
R -
Uses of Predicate in org.eclipse.collections.impl.block.factory
Classes in org.eclipse.collections.impl.block.factory that implement PredicateModifier and TypeClassDescriptionprivate static classprivate static classprivate static classprivate static classprivate static classprivate static classprivate static classprivate static classprivate static classprivate static classclassPredicates<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 classstatic classprivate static final classprivate static final classprivate static final classprivate static final classstatic classprivate static final classprivate static final classprotected static classprivate static final classprivate static final classPredicates.BetweenExclusive<T extends Comparable<? super T>>private static final classPredicates.BetweenInclusive<T extends Comparable<? super T>>private static final classPredicates.BetweenInclusiveFrom<T extends Comparable<? super T>>private static final classPredicates.BetweenInclusiveTo<T extends Comparable<? super T>>private static final classprivate static classPredicates.CompareToPredicate<T extends Comparable<? super T>>private static final classprivate static classprotected static classPredicates.GreaterThanOrEqualPredicate<T extends Comparable<? super T>>protected static classPredicates.GreaterThanPredicate<T extends Comparable<? super T>>private static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprotected static classPredicates.LessThanOrEqualPredicate<T extends Comparable<? super T>>protected static classPredicates.LessThanPredicate<T extends Comparable<? super T>>private static final classprivate static final classstatic classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprotected static classPredicates.RangePredicate<T extends Comparable<? super T>>private static final classprivate static final classprivate static final classprivate static final classprivate static classprivate static final classprivate static final classprivate static classprivate static final classprivate static final classprivate static final classprivate static final classprivate static classprivate static classprivate static classprivate static classprivate static classprivate static classprivate static classprivate static classprivate static classprivate static classprivate static classprivate static classprivate static final classprivate static final classprivate static final classprivate static classprivate static final classprivate static classprivate static final classprivate static final classFields in org.eclipse.collections.impl.block.factory declared as PredicateModifier and TypeFieldDescriptionPredicates.AndPredicate.leftPredicates.NeitherPredicate.leftPredicates.OrPredicate.leftPredicates.AllSatisfy.predicatePredicates.AnySatisfy.predicatePredicates.AttributePredicate.predicatePredicates.NoneSatisfy.predicatePredicates.NotPredicate.predicatePredicates.PredicateAdapter.predicatePredicates.SynchronizedPredicate.predicatePredicates.AndPredicate.rightPredicates.NeitherPredicate.rightPredicates.OrPredicate.rightFields in org.eclipse.collections.impl.block.factory with type parameters of type PredicateMethods in org.eclipse.collections.impl.block.factory that return PredicateModifier and TypeMethodDescriptionstatic <P,T> Predicate <T> Predicates.bind(Predicate2<? super T, ? super P> predicate, P parameter) static <T> Predicate<T> 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 Throwable, ? extends 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 PredicateModifier and TypeMethodDescriptionstatic <T> Predicates<T> static <T> Predicates<Iterable<T>> Predicates.allSatisfy(Predicate<? super T> predicate) static <T> Predicates<T> static <T> Predicates<T> static <T> Predicates<Iterable<T>> Predicates.anySatisfy(Predicate<? super T> predicate) static <T,V> Predicates <T> Predicates.attributeAllSatisfy(Function<? super T, ? extends Iterable<V>> function, Predicate<? super V> predicate) static <T,V> Predicates <T> Predicates.attributeAnySatisfy(Function<? super T, ? extends Iterable<V>> function, Predicate<? super V> predicate) static <T,V> Predicates <T> Predicates.attributeNoneSatisfy(Function<? super T, ? extends 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 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> 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> static <T> Procedure<T> static <T> Predicates<T> static <T> Predicates<T> static <T> Predicates<Iterable<T>> Predicates.noneSatisfy(Predicate<? super T> predicate) static <T> Predicates<T> static <T> Predicates<T> static <T> Predicates<T> static <T> Predicate<T> Predicates.synchronizedEach(Predicate<T> predicate) Method parameters in org.eclipse.collections.impl.block.factory with type arguments of type PredicateModifier and TypeMethodDescriptionstatic <T> Predicates<T> static <T> Predicates<T> static <T> Predicates<T> Constructors in org.eclipse.collections.impl.block.factory with parameters of type PredicateModifierConstructorDescriptionAllSatisfy(Predicate<? super T> predicate) privateAndPredicate(Predicate<? super T> one, Predicate<? super T> two) AnySatisfy(Predicate<? super T> predicate) protectedprivateNeitherPredicate(Predicate<? super T> one, Predicate<? super T> two) NoneSatisfy(Predicate<? super T> predicate) privateNotPredicate(Predicate<T> newPredicate) privateOrPredicate(Predicate<? super T> one, Predicate<? super T> two) privatePredicateAdapter(Predicate<T> newPredicate) privateSynchronizedPredicate(Predicate<T> predicate) Constructor parameters in org.eclipse.collections.impl.block.factory with type arguments of type PredicateModifierConstructorDescriptionprivateAbstractIterablePredicate(Iterable<? extends Predicate<? super T>> predicates) privateAndIterablePredicate(Iterable<? extends Predicate<? super T>> predicates) privateNoneOfIterablePredicate(Iterable<? extends Predicate<? super T>> predicates) privateOrIterablePredicate(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 PredicateFields in org.eclipse.collections.impl.block.function with type parameters of type PredicateMethods in org.eclipse.collections.impl.block.function with parameters of type PredicateModifier and TypeMethodDescriptionConstructors in org.eclipse.collections.impl.block.function with parameters of type Predicate -
Uses of Predicate in org.eclipse.collections.impl.block.predicate
Classes in org.eclipse.collections.impl.block.predicate that implement PredicateModifier and TypeClassDescriptionclassclassclassMapEntryPredicate<T1,T2> classPairPredicate<T1,T2> Fields in org.eclipse.collections.impl.block.predicate declared as PredicateConstructors in org.eclipse.collections.impl.block.predicate with parameters of type Predicate -
Uses of Predicate in org.eclipse.collections.impl.block.predicate.checked
Classes in org.eclipse.collections.impl.block.predicate.checked that implement Predicate -
Uses of Predicate in org.eclipse.collections.impl.block.procedure
Fields in org.eclipse.collections.impl.block.procedure declared as PredicateModifier and TypeFieldDescriptionAtomicCountProcedure.predicateCollectIfProcedure.predicateCountProcedure.predicateFastListCollectIfProcedure.predicateFastListRejectProcedure.predicateFastListSelectProcedure.predicateIfObjectIntProcedure.predicateIfProcedure.predicateIfProcedureWith.predicatePartitionProcedure.predicateRejectProcedure.predicateSelectProcedure.predicateFields in org.eclipse.collections.impl.block.procedure with type parameters of type PredicateMethods in org.eclipse.collections.impl.block.procedure with parameters of type PredicateModifier and TypeMethodDescriptionConstructors in org.eclipse.collections.impl.block.procedure with parameters of type PredicateModifierConstructorDescriptionAtomicCountProcedure(Predicate<? super T> predicate) CollectIfProcedure(int taskSize, Function<? super T, ? extends V> function, Predicate<? super T> predicate) CollectIfProcedure(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, Collection<T> targetCollection) SelectProcedure(Predicate<? super T> newPredicate, Collection<T> targetCollection) -
Uses of Predicate in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with parameters of type PredicateModifier and TypeMethodDescriptionbooleanAbstractSynchronizedRichIterable.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 Collection<V>>
RAbstractSynchronizedRichIterable.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function, R target) intAbstractSynchronizedRichIterable.detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function) AbstractSynchronizedRichIterable.detectOptional(Predicate<? super T> predicate) booleanAbstractSynchronizedRichIterable.noneSatisfy(Predicate<? super T> predicate) <R extends Collection<T>>
R<R extends Collection<T>>
R -
Uses of Predicate in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with parameters of type PredicateModifier and TypeMethodDescriptionbooleanAbstractCollectionAdapter.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 Collection<V>>
RAbstractCollectionAdapter.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function, R target) <V, R extends Collection<V>>
RAbstractMultiReaderMutableCollection.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function, R target) <V, R extends 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 Collection<V>>
RAbstractUnmodifiableMutableCollection.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function, R target) intintintAbstractMultiReaderMutableCollection.UntouchableMutableCollection.count(Predicate<? super T> predicate) intAbstractMultiReaderMutableCollection.UntouchableMutableCollection.detect(Predicate<? super T> predicate) AbstractCollectionAdapter.detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function) AbstractMultiReaderMutableCollection.detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function) AbstractMultiReaderMutableCollection.UntouchableMutableCollection.detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function) AbstractUnmodifiableMutableCollection.detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function) AbstractCollectionAdapter.detectOptional(Predicate<? super T> predicate) AbstractMultiReaderMutableCollection.detectOptional(Predicate<? super T> predicate) AbstractMultiReaderMutableCollection.UntouchableMutableCollection.detectOptional(Predicate<? super T> predicate) 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) <R extends Collection<T>>
R<R extends Collection<T>>
R<R extends Collection<T>>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection.reject(Predicate<? super T> predicate, R target) <R extends Collection<T>>
RbooleanbooleanbooleanAbstractMultiReaderMutableCollection.UntouchableMutableCollection.removeIf(Predicate<? super T> predicate) booleanbooleanboolean<R extends Collection<T>>
R<R extends Collection<T>>
R<R extends Collection<T>>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection.select(Predicate<? super T> predicate, R target) <R extends Collection<T>>
R -
Uses of Predicate in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with parameters of type PredicateModifier and TypeMethodDescriptionstatic <T, R extends PartitionMutableCollection<T>>
Collector<T, ?, R> Returns all elements of the stream split into a PartitionMutableCollection after evaluating the predicate.static <T, R extends Collection<T>>
Collector<T, ?, R> Returns all elements of the stream that return false when evaluating the predicate.static <T, R extends Collection<T>>
Collector<T, ?, R> 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 PredicateModifier and TypeFieldDescription -
Uses of Predicate in org.eclipse.collections.impl.forkjoin
Methods in org.eclipse.collections.impl.forkjoin with parameters of type PredicateModifier and TypeMethodDescriptionstatic <T,V> Collection <V> FJIterate.collectIf(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> Collection <V> FJIterate.collectIf(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 Collection<V>>
RFJIterate.collectIf(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 Collection<V>>
RFJIterate.collectIf(Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T, V> function, R target, int batchSize, ForkJoinPool executor, boolean allowReorderedResult) static <T> intSame effect asIterate.count(Iterable, Predicate), but executed in parallel batches.static <T> intFJIterate.count(Iterable<T> iterable, Predicate<? super T> predicate, int batchSize, ForkJoinPool executor) Same effect asIterate.count(Iterable, Predicate), but executed in parallel batches.static <T> Collection<T> Same effect asIterate.reject(Iterable, Predicate), but executed in parallel batches.static <T> Collection<T> FJIterate.reject(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 Collection<T>>
RFJIterate.reject(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 Collection<T>>
RFJIterate.reject(Iterable<T> iterable, Predicate<? super T> predicate, R target, int batchSize, ForkJoinPool executor, boolean allowReorderedResult) static <T> Collection<T> Same effect asIterate.select(Iterable, Predicate), but executed in parallel batches.static <T> Collection<T> FJIterate.select(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 Collection<T>>
RFJIterate.select(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 Collection<T>>
RFJIterate.select(Iterable<T> iterable, Predicate<? super T> predicate, R target, int batchSize, 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 PredicateModifier and TypeClassDescription(package private) final classprivate static final classFields in org.eclipse.collections.impl.lazy declared as PredicateModifier and TypeFieldDescriptionAllSatisfyPredicate.leftCollectIterable.AttributePredicate.predicateDropWhileIterable.predicateRejectIterable.predicateSelectIterable.predicateTakeWhileIterable.predicateAllSatisfyPredicate.rightMethods in org.eclipse.collections.impl.lazy with parameters of type PredicateModifier and TypeMethodDescriptionbooleanCollectIterable.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) CollectIterable.detectOptional(Predicate<? super V> predicate) CompositeIterable.detectOptional(Predicate<? super E> predicate) DistinctIterable.detectOptional(Predicate<? super T> predicate) DropIterable.detectOptional(Predicate<? super T> predicate) DropWhileIterable.detectOptional(Predicate<? super T> predicate) FlatCollectIterable.detectOptional(Predicate<? super V> predicate) LazyIterableAdapter.detectOptional(Predicate<? super T> predicate) RejectIterable.detectOptional(Predicate<? super T> predicate) SelectInstancesOfIterable.detectOptional(Predicate<? super T> predicate) SelectIterable.detectOptional(Predicate<? super T> predicate) TapIterable.detectOptional(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) Constructors in org.eclipse.collections.impl.lazy with parameters of type PredicateModifierConstructorDescription(package private)AllSatisfyPredicate(Predicate<? super T> left, Predicate<? super T> right) privateDropWhileIterable(Iterable<T> newAdapted, Predicate<? super T> predicate) RejectIterable(Iterable<T> newAdapted, Predicate<? super T> newPredicate) SelectIterable(Iterable<T> newAdapted, Predicate<? super T> newPredicate) TakeWhileIterable(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 PredicateConstructors in org.eclipse.collections.impl.lazy.iterator with parameters of type PredicateModifierConstructorDescriptionSelectIterator(Iterable<T> iterable, Predicate<? super T> predicate) SelectIterator(Iterator<T> iterator, Predicate<? super T> predicate) TakeWhileIterator(Iterable<T> iterable, Predicate<? super T> predicate) TakeWhileIterator(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 PredicateModifier and TypeClassDescriptionprivate static final classprivate static final classprivate static final classFields in org.eclipse.collections.impl.lazy.parallel declared as PredicateModifier and TypeFieldDescriptionParallelSelectIterable.SelectAllSatisfyPredicate.leftParallelDistinctIterable.DistinctAndPredicate.predicateParallelDistinctIterable.DistinctOrPredicate.predicateParallelSelectIterable.predicateParallelSelectIterable.SelectAllSatisfyPredicate.rightMethods in org.eclipse.collections.impl.lazy.parallel with parameters of type PredicateModifier and TypeMethodDescriptionbooleanAbstractMultiReaderParallelIterable.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) intintintintintintprotected static <T> TAbstractParallelIterable.detect(AbstractParallelIterable<T, ? extends RootBatch<T>> parallelIterable, Predicate<? super T> predicate) AbstractMultiReaderParallelIterable.detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function) AbstractParallelIterable.detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function) AbstractSynchronizedParallelIterable.detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function) NonParallelIterable.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) Constructors in org.eclipse.collections.impl.lazy.parallel with parameters of type PredicateModifierConstructorDescriptionprivateDistinctAndPredicate(Predicate<? super T> predicate) privateDistinctOrPredicate(Predicate<? super T> predicate) ParallelSelectIterable(AbstractParallelIterable<T, ? extends Batch<T>> parallelIterable, Predicate<? super T> predicate) privateSelectAllSatisfyPredicate(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 PredicateModifier and TypeClassDescriptionprivate static final classFields in org.eclipse.collections.impl.lazy.parallel.bag declared as PredicateModifier and TypeFieldDescriptionParallelSelectUnsortedBag.SelectAllSatisfyPredicate.leftParallelSelectUnsortedBag.predicateSelectUnsortedBagBatch.IfProcedureWithOccurrences.predicateSelectUnsortedBagBatch.predicateParallelSelectUnsortedBag.SelectAllSatisfyPredicate.rightMethods in org.eclipse.collections.impl.lazy.parallel.bag with parameters of type PredicateModifier and TypeMethodDescriptionbooleanParallelCollectUnsortedBag.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) Constructors in org.eclipse.collections.impl.lazy.parallel.bag with parameters of type PredicateModifierConstructorDescriptionprivateIfProcedureWithOccurrences(Predicate<? super T> predicate, ObjectIntProcedure<? super T> procedure) (package private)ParallelSelectUnsortedBag(AbstractParallelUnsortedBag<T, ? extends UnsortedBagBatch<T>> parallelIterable, Predicate<? super T> predicate) privateSelectAllSatisfyPredicate(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 PredicateModifier and TypeClassDescriptionprivate static final classprivate static final classprivate static final classFields in org.eclipse.collections.impl.lazy.parallel.list declared as PredicateModifier and TypeFieldDescriptionParallelSelectListIterable.SelectAllSatisfyPredicate.leftParallelDistinctListIterable.DistinctAndPredicate.predicateParallelDistinctListIterable.DistinctOrPredicate.predicateParallelSelectListIterable.predicateSelectListBatch.predicateParallelSelectListIterable.SelectAllSatisfyPredicate.rightMethods in org.eclipse.collections.impl.lazy.parallel.list with parameters of type PredicateModifier and TypeMethodDescriptionbooleanListIterableBatch.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) intConstructors in org.eclipse.collections.impl.lazy.parallel.list with parameters of type PredicateModifierConstructorDescriptionprivateDistinctAndPredicate(Predicate<? super T> predicate) privateDistinctOrPredicate(Predicate<? super T> predicate) (package private)ParallelSelectListIterable(AbstractParallelListIterable<T, ? extends ListBatch<T>> parallelIterable, Predicate<? super T> predicate) privateSelectAllSatisfyPredicate(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 PredicateModifier and TypeClassDescriptionprivate static final classFields in org.eclipse.collections.impl.lazy.parallel.set declared as PredicateModifier and TypeFieldDescriptionParallelSelectUnsortedSetIterable.SelectAllSatisfyPredicate.leftParallelSelectUnsortedSetIterable.predicateSelectUnsortedSetBatch.predicateParallelSelectUnsortedSetIterable.SelectAllSatisfyPredicate.rightMethods in org.eclipse.collections.impl.lazy.parallel.set with parameters of type PredicateModifier and TypeMethodDescriptionbooleanParallelCollectIterable.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) Constructors in org.eclipse.collections.impl.lazy.parallel.set with parameters of type PredicateModifierConstructorDescription(package private)ParallelSelectUnsortedSetIterable(AbstractParallelUnsortedSetIterable<T, ? extends UnsortedSetBatch<T>> delegate, Predicate<? super T> predicate) privateSelectAllSatisfyPredicate(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 PredicateModifier and TypeClassDescriptionprivate static final classFields in org.eclipse.collections.impl.lazy.parallel.set.sorted declared as PredicateModifier and TypeFieldDescriptionParallelSelectSortedSetIterable.SelectAllSatisfyPredicate.leftParallelSelectSortedSetIterable.predicateSelectSortedSetBatch.predicateParallelSelectSortedSetIterable.SelectAllSatisfyPredicate.rightMethods in org.eclipse.collections.impl.lazy.parallel.set.sorted with parameters of type PredicateModifier and TypeMethodDescriptionbooleanParallelSelectSortedSetIterable.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) Constructors in org.eclipse.collections.impl.lazy.parallel.set.sorted with parameters of type PredicateModifierConstructorDescription(package private)ParallelSelectSortedSetIterable(AbstractParallelSortedSetIterable<T, ? extends SortedSetBatch<T>> parallelIterable, Predicate<? super T> predicate) privateSelectAllSatisfyPredicate(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 PredicateModifier and TypeMethodDescriptionbooleanFlatCollectBooleanToObjectIterable.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) FlatCollectBooleanToObjectIterable.detectOptional(Predicate<? super V> predicate) FlatCollectByteToObjectIterable.detectOptional(Predicate<? super V> predicate) FlatCollectCharToObjectIterable.detectOptional(Predicate<? super V> predicate) FlatCollectDoubleToObjectIterable.detectOptional(Predicate<? super V> predicate) FlatCollectFloatToObjectIterable.detectOptional(Predicate<? super V> predicate) FlatCollectIntToObjectIterable.detectOptional(Predicate<? super V> predicate) FlatCollectLongToObjectIterable.detectOptional(Predicate<? super V> predicate) 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 PredicateModifier and TypeMethodDescription<R extends Collection<Integer>>
R<R extends Collection<Integer>>
R -
Uses of Predicate in org.eclipse.collections.impl.list.fixed
Methods in org.eclipse.collections.impl.list.fixed with parameters of type PredicateModifier and TypeMethodDescriptionbooleanAbstractArrayAdapter.allSatisfy(Predicate<? super T> predicate) booleanAbstractArrayAdapter.anySatisfy(Predicate<? super T> predicate) <V, R extends Collection<V>>
RAbstractArrayAdapter.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function, R target) intintAbstractArrayAdapter.detectIndex(Predicate<? super T> predicate) intAbstractArrayAdapter.detectLastIndex(Predicate<? super T> predicate) AbstractArrayAdapter.detectOptional(Predicate<? super T> predicate) booleanAbstractArrayAdapter.noneSatisfy(Predicate<? super T> predicate) <R extends Collection<T>>
Rbooleanbooleanboolean<R extends Collection<T>>
R -
Uses of Predicate in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable with parameters of type PredicateModifier and TypeMethodDescriptionbooleanImmutableArrayList.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 Collection<V>>
RImmutableEmptyList.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function, R target) intintintImmutableEmptyList.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) ImmutableArrayList.detectOptional(Predicate<? super T> predicate) ImmutableEmptyList.detectOptional(Predicate<? super T> predicate) booleanImmutableArrayList.noneSatisfy(Predicate<? super T> predicate) booleanImmutableEmptyList.noneSatisfy(Predicate<? super T> predicate) AbstractImmutableList.partitionWhile(Predicate<? super T> predicate) ImmutableArrayList.partitionWhile(Predicate<? super T> predicate) ImmutableEmptyList.partitionWhile(Predicate<? super T> predicate) <R extends Collection<T>>
R<R extends Collection<T>>
R -
Uses of Predicate in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with parameters of type PredicateModifier and TypeMethodDescriptionbooleanAbstractMutableList.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 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> <V, R extends 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) intintintintintintArrayListAdapter.detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function) ListAdapter.detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function) RandomAccessListAdapter.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) AbstractMutableList.detectOptional(Predicate<? super T> predicate) FastList.detectOptional(Predicate<? super T> predicate) voidbooleanAbstractMutableList.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) AbstractMutableList.partitionWhile(Predicate<? super T> predicate) ArrayListAdapter.partitionWhile(Predicate<? super T> predicate) FastList.partitionWhile(Predicate<? super T> predicate) ListAdapter.partitionWhile(Predicate<? super T> predicate) MultiReaderFastList.partitionWhile(Predicate<? super T> predicate) MultiReaderFastList.UntouchableMutableList.partitionWhile(Predicate<? super T> predicate) RandomAccessListAdapter.partitionWhile(Predicate<? super T> predicate) SynchronizedMutableList.partitionWhile(Predicate<? super T> predicate) UnmodifiableMutableList.partitionWhile(Predicate<? super T> predicate) <R extends Collection<T>>
R<R extends Collection<E>>
R<R extends Collection<T>>
Rbooleanboolean<R extends Collection<T>>
R<R extends Collection<E>>
R<R extends Collection<T>>
R -
Uses of Predicate in org.eclipse.collections.impl.map
Methods in org.eclipse.collections.impl.map with parameters of type PredicateModifier and TypeMethodDescriptionbooleanAbstractMapIterable.allSatisfy(Predicate<? super V> predicate) booleanAbstractMapIterable.anySatisfy(Predicate<? super V> predicate) AbstractMapIterable.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) AbstractMapIterable.detectOptional(Predicate<? super V> predicate) booleanAbstractMapIterable.noneSatisfy(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 -
Uses of Predicate in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type PredicateModifier and TypeMethodDescriptionbooleanImmutableByteObjectEmptyMap.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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 Collection<VV>>
RImmutableShortObjectSingletonMap.collectIf(Predicate<? super V> predicate, Function<? super V, ? extends VV> function, R target) intintintintintintintintintintintintintintintintintintintintintImmutableByteObjectEmptyMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ImmutableByteObjectHashMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ImmutableByteObjectSingletonMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ImmutableCharObjectEmptyMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ImmutableCharObjectHashMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ImmutableCharObjectSingletonMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ImmutableDoubleObjectEmptyMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ImmutableDoubleObjectHashMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ImmutableDoubleObjectSingletonMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ImmutableFloatObjectEmptyMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ImmutableFloatObjectHashMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ImmutableFloatObjectSingletonMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ImmutableIntObjectEmptyMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ImmutableIntObjectHashMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ImmutableIntObjectSingletonMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ImmutableLongObjectEmptyMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ImmutableLongObjectHashMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ImmutableLongObjectSingletonMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ImmutableShortObjectEmptyMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ImmutableShortObjectHashMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ImmutableShortObjectSingletonMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ImmutableByteObjectEmptyMap.detectOptional(Predicate<? super V> predicate) ImmutableByteObjectHashMap.detectOptional(Predicate<? super V> predicate) ImmutableByteObjectSingletonMap.detectOptional(Predicate<? super V> predicate) ImmutableCharObjectEmptyMap.detectOptional(Predicate<? super V> predicate) ImmutableCharObjectHashMap.detectOptional(Predicate<? super V> predicate) ImmutableCharObjectSingletonMap.detectOptional(Predicate<? super V> predicate) ImmutableDoubleObjectEmptyMap.detectOptional(Predicate<? super V> predicate) ImmutableDoubleObjectHashMap.detectOptional(Predicate<? super V> predicate) ImmutableDoubleObjectSingletonMap.detectOptional(Predicate<? super V> predicate) ImmutableFloatObjectEmptyMap.detectOptional(Predicate<? super V> predicate) ImmutableFloatObjectHashMap.detectOptional(Predicate<? super V> predicate) ImmutableFloatObjectSingletonMap.detectOptional(Predicate<? super V> predicate) ImmutableIntObjectEmptyMap.detectOptional(Predicate<? super V> predicate) ImmutableIntObjectHashMap.detectOptional(Predicate<? super V> predicate) ImmutableIntObjectSingletonMap.detectOptional(Predicate<? super V> predicate) ImmutableLongObjectEmptyMap.detectOptional(Predicate<? super V> predicate) ImmutableLongObjectHashMap.detectOptional(Predicate<? super V> predicate) ImmutableLongObjectSingletonMap.detectOptional(Predicate<? super V> predicate) ImmutableShortObjectEmptyMap.detectOptional(Predicate<? super V> predicate) ImmutableShortObjectHashMap.detectOptional(Predicate<? super V> predicate) 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) <R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R -
Uses of Predicate in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with parameters of type PredicateModifier and TypeMethodDescriptionbooleanUnifiedMap.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 Collection<R>>
CUnmodifiableMutableMap.collectIf(Predicate<? super V> predicate, Function<? super V, ? extends R> function, C target) intUnifiedMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) UnmodifiableMutableMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) UnifiedMap.detectOptional(Predicate<? super V> predicate) UnmodifiableMutableMap.detectOptional(Predicate<? super V> predicate) booleanUnifiedMap.noneSatisfy(Predicate<? super V> predicate) booleanUnmodifiableMutableMap.noneSatisfy(Predicate<? super V> predicate) <R extends Collection<V>>
R<R extends Collection<V>>
Rprivate 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 PredicateModifier and TypeMethodDescriptionbooleanByteObjectHashMap.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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 Collection<VV>>
RUnmodifiableShortObjectMap.collectIf(Predicate<? super V> predicate, Function<? super V, ? extends VV> function, R target) intintintintintintintintintintintintintintintintintintintintintByteObjectHashMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) CharObjectHashMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) DoubleObjectHashMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) FloatObjectHashMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) IntObjectHashMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) LongObjectHashMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ShortObjectHashMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) SynchronizedByteObjectMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) SynchronizedCharObjectMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) SynchronizedDoubleObjectMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) SynchronizedFloatObjectMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) SynchronizedIntObjectMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) SynchronizedLongObjectMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) SynchronizedShortObjectMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) UnmodifiableByteObjectMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) UnmodifiableCharObjectMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) UnmodifiableDoubleObjectMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) UnmodifiableFloatObjectMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) UnmodifiableIntObjectMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) UnmodifiableLongObjectMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) UnmodifiableShortObjectMap.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) ByteObjectHashMap.detectOptional(Predicate<? super V> predicate) CharObjectHashMap.detectOptional(Predicate<? super V> predicate) DoubleObjectHashMap.detectOptional(Predicate<? super V> predicate) FloatObjectHashMap.detectOptional(Predicate<? super V> predicate) IntObjectHashMap.detectOptional(Predicate<? super V> predicate) LongObjectHashMap.detectOptional(Predicate<? super V> predicate) ShortObjectHashMap.detectOptional(Predicate<? super V> predicate) SynchronizedByteObjectMap.detectOptional(Predicate<? super V> predicate) SynchronizedCharObjectMap.detectOptional(Predicate<? super V> predicate) SynchronizedDoubleObjectMap.detectOptional(Predicate<? super V> predicate) SynchronizedFloatObjectMap.detectOptional(Predicate<? super V> predicate) SynchronizedIntObjectMap.detectOptional(Predicate<? super V> predicate) SynchronizedLongObjectMap.detectOptional(Predicate<? super V> predicate) SynchronizedShortObjectMap.detectOptional(Predicate<? super V> predicate) UnmodifiableByteObjectMap.detectOptional(Predicate<? super V> predicate) UnmodifiableCharObjectMap.detectOptional(Predicate<? super V> predicate) UnmodifiableDoubleObjectMap.detectOptional(Predicate<? super V> predicate) UnmodifiableFloatObjectMap.detectOptional(Predicate<? super V> predicate) UnmodifiableIntObjectMap.detectOptional(Predicate<? super V> predicate) UnmodifiableLongObjectMap.detectOptional(Predicate<? super V> predicate) 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) <R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R<R extends Collection<V>>
R -
Uses of Predicate in org.eclipse.collections.impl.map.ordered.immutable
Methods in org.eclipse.collections.impl.map.ordered.immutable with parameters of type PredicateModifier and TypeMethodDescription<VV> ImmutableList<VV> ImmutableOrderedMapAdapter.collectIf(Predicate<? super V> predicate, Function<? super V, ? extends VV> function) intImmutableOrderedMapAdapter.detectIndex(Predicate<? super V> predicate) intImmutableOrderedMapAdapter.detectLastIndex(Predicate<? super V> predicate) ImmutableOrderedMapAdapter.detectOptional(Predicate<? super V> predicate) ImmutableOrderedMapAdapter.partitionWhile(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 PredicateModifier and TypeMethodDescriptionbooleanUnmodifiableMutableOrderedMap.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 Collection<VV>>
RUnmodifiableMutableOrderedMap.collectIf(Predicate<? super V> predicate, Function<? super V, ? extends VV> function, R target) intUnmodifiableMutableOrderedMap.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) UnmodifiableMutableOrderedMap.detectOptional(Predicate<? super V> predicate) booleanUnmodifiableMutableOrderedMap.noneSatisfy(Predicate<? super V> predicate) OrderedMapAdapter.partitionWhile(Predicate<? super V> predicate) UnmodifiableMutableOrderedMap.partitionWhile(Predicate<? super V> predicate) <R extends Collection<V>>
R<R extends Collection<V>>
R -
Uses of Predicate in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable with parameters of type PredicateModifier and TypeMethodDescription<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) AbstractImmutableSortedMap.partitionWhile(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 PredicateModifier and TypeMethodDescriptionbooleanUnmodifiableTreeMap.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 Collection<R>>
CUnmodifiableTreeMap.collectIf(Predicate<? super V> predicate, Function<? super V, ? extends R> function, C target) intUnmodifiableTreeMap.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) UnmodifiableTreeMap.detectOptional(Predicate<? super V> predicate) booleanUnmodifiableTreeMap.noneSatisfy(Predicate<? super V> predicate) SortedMapAdapter.partitionWhile(Predicate<? super V> predicate) SynchronizedSortedMap.partitionWhile(Predicate<? super V> predicate) TreeSortedMap.partitionWhile(Predicate<? super V> predicate) UnmodifiableTreeMap.partitionWhile(Predicate<? super V> predicate) <R extends Collection<V>>
R<R extends Collection<V>>
R -
Uses of Predicate in org.eclipse.collections.impl.map.strategy.mutable
Methods in org.eclipse.collections.impl.map.strategy.mutable with parameters of type PredicateModifier and TypeMethodDescriptionbooleanUnifiedMapWithHashingStrategy.allSatisfy(Predicate<? super V> predicate) booleanUnifiedMapWithHashingStrategy.anySatisfy(Predicate<? super V> predicate) UnifiedMapWithHashingStrategy.detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function) 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 PredicateModifier and TypeFieldDescriptionCollectIfProcedureFactory.predicateCountProcedureFactory.predicateFastListCollectIfProcedureFactory.predicateFastListRejectProcedureFactory.predicateFastListSelectProcedureFactory.predicateRejectProcedureFactory.predicateSelectProcedureFactory.predicateMethods in org.eclipse.collections.impl.parallel with parameters of type PredicateModifier and TypeMethodDescriptionstatic <T,V> Collection <V> ParallelIterate.collectIf(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> Collection <V> ParallelIterate.collectIf(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 Collection<V>>
RParallelIterate.collectIf(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 Collection<V>>
RParallelIterate.collectIf(Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T, V> function, R target, int batchSize, Executor executor, boolean allowReorderedResult) static <T> intSame effect asIterate.count(Iterable, Predicate), but executed in parallel batches.static <T> intParallelIterate.count(Iterable<T> iterable, Predicate<? super T> predicate, int batchSize, Executor executor) Same effect asIterate.count(Iterable, Predicate), but executed in parallel batches.static <T> Collection<T> Same effect asIterate.reject(Iterable, Predicate), but executed in parallel batches.static <T> Collection<T> ParallelIterate.reject(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 Collection<T>>
RParallelIterate.reject(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 Collection<T>>
RParallelIterate.reject(Iterable<T> iterable, Predicate<? super T> predicate, R target, int batchSize, Executor executor, boolean allowReorderedResult) static <T> Collection<T> Same effect asIterate.select(Iterable, Predicate), but executed in parallel batches.static <T> Collection<T> ParallelIterate.select(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 Collection<T>>
RParallelIterate.select(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 Collection<T>>
RParallelIterate.select(Iterable<T> iterable, Predicate<? super T> predicate, R target, int batchSize, 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 PredicateModifierConstructorDescriptionCollectIfProcedureFactory(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 PredicateConstructors in org.eclipse.collections.impl.partition.stack with parameters of type PredicateModifierConstructorDescriptionPartitionProcedure(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 PredicateModifier and TypeMethodDescriptionbooleanAbstractUnifiedSet.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) protected abstract TAbstractUnifiedSet.detectOptional(Predicate<? super T> predicate) 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 -
Uses of Predicate in org.eclipse.collections.impl.set.immutable
Methods in org.eclipse.collections.impl.set.immutable with parameters of type PredicateModifier and TypeMethodDescriptionbooleanImmutableEmptySet.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 Collection<V>>
RImmutableEmptySet.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function, R target) intImmutableEmptySet.detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function) ImmutableEmptySet.detectOptional(Predicate<? super T> predicate) booleanImmutableEmptySet.noneSatisfy(Predicate<? super T> predicate) <R extends Collection<T>>
R<R extends Collection<T>>
R -
Uses of Predicate in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable with parameters of type PredicateModifier and TypeMethodDescriptionbooleanUnifiedSet.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 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> <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.detectOptional(Predicate<? super T> predicate, int start, int end) 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 PredicateModifier and TypeMethodDescriptionbooleanImmutableTreeSet.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) intintAbstractImmutableSortedSet.detectIndex(Predicate<? super T> predicate) intImmutableTreeSet.detectIndex(Predicate<? super T> predicate) intAbstractImmutableSortedSet.detectLastIndex(Predicate<? super T> predicate) AbstractImmutableSortedSet.partitionWhile(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 PredicateModifier and TypeMethodDescription<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> <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) SortedSetAdapter.partitionWhile(Predicate<? super T> predicate) SynchronizedSortedSet.partitionWhile(Predicate<? super T> predicate) TreeSortedSet.partitionWhile(Predicate<? super T> predicate) UnmodifiableSortedSet.partitionWhile(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 PredicateModifier and TypeMethodDescriptionbooleanUnifiedSetWithHashingStrategy.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 ObjectUnifiedSetWithHashingStrategy.chainedDetect(UnifiedSetWithHashingStrategy.ChainedBucket bucket, Predicate<? super T> predicate) private booleanUnifiedSetWithHashingStrategy.chainedShortCircuit(UnifiedSetWithHashingStrategy.ChainedBucket bucket, Predicate<? super T> predicate, boolean expected) protected TUnifiedSetWithHashingStrategy.UnifiedSetParallelUnsortedIterable.detect(Predicate<? super T> predicate) UnifiedSetWithHashingStrategy.detectOptional(Predicate<? super T> predicate, int start, int end) UnifiedSetWithHashingStrategy.lazyReject(Predicate<? super T> predicate) Deprecated.since 3.0.UnifiedSetWithHashingStrategy.lazySelect(Predicate<? super T> predicate) Deprecated.since 3.0.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 PredicateModifier and TypeMethodDescriptionbooleanImmutableArrayStack.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 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 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) intDeprecated.intDeprecated.ImmutableArrayStack.detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function) Deprecated.ImmutableEmptyStack.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) ImmutableArrayStack.detectOptional(Predicate<? super T> predicate) Deprecated.ImmutableEmptyStack.detectOptional(Predicate<? super T> predicate) Deprecated.booleanImmutableArrayStack.noneSatisfy(Predicate<? super T> predicate) Deprecated.Deprecated.ImmutableArrayStack.partitionWhile(Predicate<? super T> predicate) Deprecated.ImmutableEmptyStack.partitionWhile(Predicate<? super T> predicate) ImmutableNotEmptyStack.partitionWhile(Predicate<? super T> predicate) Deprecated.<R extends Collection<T>>
RDeprecated.<R extends Collection<T>>
RDeprecated.<R extends Collection<T>>
RDeprecated.<R extends Collection<T>>
RDeprecated. -
Uses of Predicate in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with parameters of type PredicateModifier and TypeMethodDescriptionbooleanArrayStack.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> <V, R extends 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 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 Collection<V>>
RUnmodifiableStack.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function, R target) intintintArrayStack.detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function) SynchronizedStack.detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function) UnmodifiableStack.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) ArrayStack.detectOptional(Predicate<? super T> predicate) SynchronizedStack.detectOptional(Predicate<? super T> predicate) UnmodifiableStack.detectOptional(Predicate<? super T> predicate) booleanArrayStack.noneSatisfy(Predicate<? super T> predicate) booleanSynchronizedStack.noneSatisfy(Predicate<? super T> predicate) booleanUnmodifiableStack.noneSatisfy(Predicate<? super T> predicate) ArrayStack.partitionWhile(Predicate<? super T> predicate) SynchronizedStack.partitionWhile(Predicate<? super T> predicate) UnmodifiableStack.partitionWhile(Predicate<? super T> predicate) <R extends Collection<T>>
R<R extends Collection<T>>
R<R extends Collection<T>>
R<R extends Collection<T>>
R<R extends Collection<T>>
R<R extends Collection<T>>
R -
Uses of Predicate in org.eclipse.collections.impl.test
Methods in org.eclipse.collections.impl.test with parameters of type PredicateModifier and TypeMethodDescriptionstatic <T> voidVerify.assertAllSatisfy(Iterable<T> iterable, Predicate<? super T> predicate) static <T> voidVerify.assertAllSatisfy(String message, Iterable<T> iterable, Predicate<? super T> predicate) static <K,V> void Verify.assertAllSatisfy(Map<K, V> map, Predicate<? super V> predicate) static <T> voidVerify.assertAnySatisfy(Iterable<T> iterable, Predicate<? super T> predicate) static <T> voidVerify.assertAnySatisfy(String message, Iterable<T> iterable, Predicate<? super T> predicate) static <K,V> void Verify.assertAnySatisfy(Map<K, V> map, Predicate<? super V> predicate) static <T> voidVerify.assertCount(int expectedCount, Iterable<T> iterable, Predicate<? super T> predicate) static <T> voidVerify.assertNoneSatisfy(Iterable<T> iterable, Predicate<? super T> predicate) static <T> voidVerify.assertNoneSatisfy(String message, Iterable<T> iterable, Predicate<? super T> predicate) static <K,V> void Verify.assertNoneSatisfy(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 PredicateModifier and TypeMethodDescriptionstatic <T> booleanArrayIterate.allSatisfy(T[] objectArray, Predicate<? super T> predicate) static <T> booleanArrayListIterate.allSatisfy(ArrayList<T> list, Predicate<? super T> predicate) static <T> booleanIterate.allSatisfy(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(List<T> list, Predicate<? super T> predicate) static <K,V> boolean MapIterate.allSatisfy(Map<K, V> map, Predicate<? super V> predicate) static <T> booleanArrayIterate.anySatisfy(T[] objectArray, Predicate<? super T> predicate) static <T> booleanArrayListIterate.anySatisfy(ArrayList<T> list, Predicate<? super T> predicate) static <T> booleanIterate.anySatisfy(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(List<T> list, Predicate<? super T> predicate) static <K,V> boolean MapIterate.anySatisfy(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 Collection<V>>
RArrayIterate.collectIf(T[] objectArray, Predicate<? super T> predicate, Function<? super T, ? extends V> function, R targetCollection) static <T,A> ArrayList <A> ArrayListIterate.collectIf(ArrayList<T> list, Predicate<? super T> predicate, Function<? super T, ? extends A> function) static <T, A, R extends Collection<A>>
RArrayListIterate.collectIf(ArrayList<T> list, Predicate<? super T> predicate, Function<? super T, ? extends A> function, R targetCollection) static <T,V> Collection <V> Iterate.collectIf(Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T, ? extends V> function) static <T, V, R extends Collection<V>>
RIterate.collectIf(Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T, ? extends V> function, R target) static <T,V> LazyIterable <V> LazyIterate.collectIf(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(List<T> list, Predicate<? super T> predicate, Function<? super T, ? extends A> function) static <T, A, R extends Collection<A>>
RListIterate.collectIf(List<T> list, Predicate<? super T> predicate, Function<? super T, ? extends A> function, R targetCollection) static <T> intstatic <T> intstatic <T> intReturns the total number of elements that evaluate to true for the specified predicate.static <T> intstatic <K,V> int static <T> Tstatic <T> Tstatic <T> TReturns the first element of the iterable that evaluates to true for the specified predicate, or null if no element evaluates to true.static <T> Tstatic <K,V> V static <T> TArrayIterate.detectIfNone(T[] objectArray, Predicate<? super T> predicate, T ifNone) static <T> TArrayListIterate.detectIfNone(ArrayList<T> list, Predicate<? super T> predicate, T ifNone) static <T> TIterate.detectIfNone(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(List<T> list, Predicate<? super T> predicate, T ifNone) static <K,V> V MapIterate.detectIfNone(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(ArrayList<T> list, Predicate<? super T> predicate) static <T> intIterate.detectIndex(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(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(ArrayList<T> list, Predicate<? super T> predicate) static <T> intListIterate.detectLastIndex(List<T> list, Predicate<? super T> predicate) Returns the last index where the predicate evaluates to true.static <T> Optional<T> ArrayIterate.detectOptional(T[] objectArray, Predicate<? super T> predicate) static <T> Optional<T> ArrayListIterate.detectOptional(ArrayList<T> list, Predicate<? super T> predicate) static <T> Optional<T> Iterate.detectOptional(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> Optional<T> ListIterate.detectOptional(List<T> list, Predicate<? super T> predicate) static <K,V> Optional <V> MapIterate.detectOptional(Map<K, V> map, Predicate<? super V> predicate) static <T> MutableList<T> static <T> LazyIterable<T> Creates a deferred dropWhile iterable for the specified iterable using the specified count as the size to drop.static <T> MutableList<T> static <IV,K, V> IV MapIterate.injectIntoIf(IV initialValue, 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(ArrayList<T> list, Predicate<? super T> predicate) static <T> booleanIterate.noneSatisfy(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(List<T> list, Predicate<? super T> predicate) static <K,V> boolean MapIterate.noneSatisfy(Map<K, V> map, Predicate<? super V> predicate) static <T> PartitionFastList<T> static <T> PartitionMutableList<T> static <T> PartitionIterable<T> Filters a collection into a PartitionIterable based on a predicate.static <T> PartitionMutableList<T> static <T> PartitionMutableList<T> ArrayListIterate.partitionWhile(ArrayList<T> list, Predicate<? super T> predicate) static <T> PartitionMutableList<T> ListIterate.partitionWhile(List<T> list, Predicate<? super T> predicate) static <T> MutableList<T> static <T, R extends Collection<T>>
Rstatic <T> ArrayList<T> static <T, R extends Collection<T>>
Rstatic <T> Collection<T> Returns all elements of the iterable that evaluate to false for the specified predicate.static <T, R extends Collection<T>>
RSame as the reject method with one parameter but uses the specified target collection for the results.static <T> LazyIterable<T> Creates a deferred negative filtering iterable for the specified iterable.static <T> MutableList<T> static <T, R extends Collection<T>>
Rstatic <K,V> MutableList <V> static <K, V, R extends Collection<V>>
Rstatic <T> booleanstatic <T> booleanRemoves all elements from the iterable that evaluate to true for the specified predicate.static <T> booleanstatic <T> booleanstatic <T> MutableList<T> static <T, R extends Collection<T>>
Rstatic <T> ArrayList<T> static <T, R extends Collection<T>>
Rstatic <T> Collection<T> Returns a new collection with only the elements that evaluated to true for the specified predicate.static <T, R extends Collection<T>>
RSame as the select method with two parameters but uses the specified target collectionstatic <T> LazyIterable<T> Creates a deferred filtering iterable for the specified iterable.static <T> MutableList<T> static <T, R extends Collection<T>>
Rstatic <K,V> MutableList <V> static <K, V, R extends Collection<V>>
Rstatic <K,V> MutableMap <K, V> MapIterate.selectMapOnKey(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(Map<K, V> map, Predicate<? super V> predicate) For each value of the source map, the Predicate is evaluated.static <T> MutableList<T> static <T> LazyIterable<T> Creates a deferred takeWhile iterable for the specified iterable using the specified predicate.static <T> MutableList<T> -
Uses of Predicate in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type PredicateModifier and TypeMethodDescriptionstatic <T> booleanInternalArrayIterate.allSatisfy(T[] array, int size, Predicate<? super T> predicate) static <T> booleanIterableIterate.allSatisfy(Iterable<T> iterable, Predicate<? super T> predicate) static <T> booleanIteratorIterate.allSatisfy(Iterator<T> iterator, Predicate<? super T> predicate) static <T> booleanRandomAccessListIterate.allSatisfy(List<T> list, Predicate<? super T> predicate) static <T> booleanInternalArrayIterate.anySatisfy(T[] array, int size, Predicate<? super T> predicate) static <T> booleanIterableIterate.anySatisfy(Iterable<T> iterable, Predicate<? super T> predicate) static <T> booleanIteratorIterate.anySatisfy(Iterator<T> iterator, Predicate<? super T> predicate) static <T> booleanRandomAccessListIterate.anySatisfy(List<T> list, Predicate<? super T> predicate) static <T, V, R extends 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(Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T, ? extends V> function) static <T, V, R extends Collection<V>>
RIterableIterate.collectIf(Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T, ? extends V> function, R targetCollection) static <T, V, R extends Collection<V>>
RIteratorIterate.collectIf(Iterator<T> iterator, Predicate<? super T> predicate, Function<? super T, ? extends V> function, R targetCollection) static <T,A> MutableList <A> RandomAccessListIterate.collectIf(List<T> list, Predicate<? super T> predicate, Function<? super T, ? extends A> function) static <T, A, R extends Collection<A>>
RRandomAccessListIterate.collectIf(List<T> list, Predicate<? super T> predicate, Function<? super T, ? extends A> function, R targetCollection) static <T> intstatic <T> intstatic <T> intstatic <T> intstatic <T> Tstatic <T> Tstatic <T> Tstatic <T> Tstatic <T> intInternalArrayIterate.detectIndex(T[] objectArray, int size, Predicate<? super T> predicate) static <T> intIterableIterate.detectIndex(Iterable<T> iterable, Predicate<? super T> predicate) static <T> intIteratorIterate.detectIndex(Iterator<T> iterator, Predicate<? super T> predicate) static <T> intRandomAccessListIterate.detectIndex(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(List<T> list, Predicate<? super T> predicate) static <T> Optional<T> InternalArrayIterate.detectOptional(T[] array, int size, Predicate<? super T> predicate) static <T> Optional<T> IterableIterate.detectOptional(Iterable<T> iterable, Predicate<? super T> predicate) static <T> Optional<T> IteratorIterate.detectOptional(Iterator<T> iterator, Predicate<? super T> predicate) static <T> Optional<T> RandomAccessListIterate.detectOptional(List<T> list, Predicate<? super T> predicate) static <T, R extends MutableCollection<T>>
Rstatic <T, R extends MutableCollection<T>>
Rstatic <T> MutableList<T> static <T> booleanInternalArrayIterate.noneSatisfy(T[] array, int size, Predicate<? super T> predicate) static <T> booleanIterableIterate.noneSatisfy(Iterable<T> iterable, Predicate<? super T> predicate) static <T> booleanIteratorIterate.noneSatisfy(Iterator<T> iterator, Predicate<? super T> predicate) static <T> booleanRandomAccessListIterate.noneSatisfy(List<T> list, Predicate<? super T> predicate) static <T> PartitionFastList<T> static <T> PartitionMutableList<T> static <T> PartitionMutableList<T> static <T> PartitionMutableList<T> static <T, R extends PartitionMutableCollection<T>>
RIterableIterate.partitionWhile(Iterable<T> iterable, Predicate<? super T> predicate, R target) static <T, R extends PartitionMutableCollection<T>>
RIteratorIterate.partitionWhile(Iterator<T> iterator, Predicate<? super T> predicate, R target) static <T> PartitionMutableList<T> RandomAccessListIterate.partitionWhile(List<T> list, Predicate<? super T> predicate) static <T, R extends Collection<T>>
Rstatic <T> MutableList<T> static <T, R extends Collection<T>>
Rstatic <T, R extends Collection<T>>
Rstatic <T> MutableList<T> static <T, R extends Collection<T>>
Rstatic <T> booleanstatic <T> booleanIterableIterate.removeIf(Iterable<T> iterable, Predicate<? super T> predicate, Procedure<? super T> procedure) static <T> booleanstatic <T> booleanIteratorIterate.removeIf(Iterator<T> iterator, Predicate<? super T> predicate, Procedure<? super T> procedure) static <T> booleanstatic <T> booleanRandomAccessListIterate.removeIf(List<T> list, Predicate<? super T> predicate, Procedure<? super T> procedure) static <T, R extends Collection<T>>
Rstatic <T> MutableList<T> static <T, R extends Collection<T>>
Rstatic <T, R extends Collection<T>>
Rstatic <T> MutableList<T> static <T, R extends Collection<T>>
Rstatic <T> booleanInternalArrayIterate.shortCircuit(T[] array, int size, Predicate<? super T> predicate, boolean expected, boolean onShortCircuit, boolean atEnd) static <T> booleanIteratorIterate.shortCircuit(Iterator<T> iterator, Predicate<? super T> predicate, boolean expected, boolean onShortCircuit, boolean atEnd) static <T> booleanRandomAccessListIterate.shortCircuit(List<T> list, Predicate<? super T> predicate, boolean expected, boolean onShortCircuit, boolean atEnd) static <T, R extends MutableCollection<T>>
Rstatic <T, R extends MutableCollection<T>>
Rstatic <T> MutableList<T>