Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate
Packages that use ObjectIntPredicate
Package
Description
This package contains interfaces for Bag API.
This package contains interfaces for list API which enhance the performance and functionality of
List.This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
-
Uses of ObjectIntPredicate in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type ObjectIntPredicateModifier and TypeMethodDescriptionbooleanBag.allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) Returns true if the predicate evaluates to true for all elements of the Bag.booleanBag.anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) Returns true if the predicate evaluates to true for any element of the Bag.Bag.detectWithOccurrences(ObjectIntPredicate<? super T> predicate) Returns an element of the Bag that satisfies the predicate or null if such an element does not existbooleanBag.noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) Returns true if the Bag is empty or if the predicate evaluates to false for all elements of the Bag. -
Uses of ObjectIntPredicate in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list with parameters of type ObjectIntPredicateModifier and TypeMethodDescriptiondefault ImmutableList<T>ImmutableList.rejectWithIndex(ObjectIntPredicate<? super T> predicate) Returns a new ImmutableList with all elements of the collection that return false when evaluating the specified predicate which is supplied each element and its relative index.default ListIterable<T>ListIterable.rejectWithIndex(ObjectIntPredicate<? super T> predicate) Returns a new ListIterable with all elements of the collection that return false when evaluating the specified predicate which is supplied each element and its relative index.default MutableList<T>MutableList.rejectWithIndex(ObjectIntPredicate<? super T> predicate) Returns a new MutableList with all elements of the collection that return false when evaluating the specified predicate which is supplied each element and its relative index.default ImmutableList<T>ImmutableList.selectWithIndex(ObjectIntPredicate<? super T> predicate) Returns a new ImmutableList with all elements of the collection that return true when evaluating the specified predicate which is supplied each element and its relative index.default ListIterable<T>ListIterable.selectWithIndex(ObjectIntPredicate<? super T> predicate) Returns a new ListIterable with all elements of the collection that return true when evaluating the specified predicate which is supplied each element and its relative index.default MutableList<T>MutableList.selectWithIndex(ObjectIntPredicate<? super T> predicate) Returns a new MutableList with all elements of the collection that return true when evaluating the specified predicate which is supplied each element and its relative index. -
Uses of ObjectIntPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type ObjectIntPredicateModifier and TypeMethodDescriptiondefault booleanObjectIntMap.allSatisfyKeyValue(ObjectIntPredicate<K> predicate) ImmutableObjectIntMap.reject(ObjectIntPredicate<? super K> predicate) MutableObjectIntMap.reject(ObjectIntPredicate<? super K> predicate) ObjectIntMap.reject(ObjectIntPredicate<? super K> predicate) Return a copy of this map containing only the key/value pairs that do not match the predicate.ImmutableObjectIntMap.select(ObjectIntPredicate<? super K> predicate) MutableObjectIntMap.select(ObjectIntPredicate<? super K> predicate) ObjectIntMap.select(ObjectIntPredicate<? super K> predicate) Return a copy of this map containing only the key/value pairs that match the predicate. -
Uses of ObjectIntPredicate in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type ObjectIntPredicateModifier and TypeMethodDescriptiondefault <R extends Collection<T>>
ROrderedIterable.rejectWithIndex(ObjectIntPredicate<? super T> predicate, R target) Adds all elements to the target Collection that return false when evaluating the specified predicate which is supplied each element and its relative index.default <R extends Collection<T>>
ROrderedIterable.selectWithIndex(ObjectIntPredicate<? super T> predicate, R target) Adds all elements to the target Collection that return true when evaluating the specified predicate which is supplied each element and its relative index.