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.
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
ImmutableList interface.This package contains implementations of the
MutableList interface.This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
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
MutableSortedSet.This package contains implementations of the
MutableStack interface.This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
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. -
Uses of ObjectIntPredicate in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable with parameters of type ObjectIntPredicateModifier and TypeMethodDescriptionbooleanImmutableArrayBag.allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanImmutableEmptyBag.allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanImmutableHashBag.allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanImmutableSingletonBag.allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanImmutableArrayBag.anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanImmutableEmptyBag.anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanImmutableHashBag.anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanImmutableSingletonBag.anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) ImmutableArrayBag.detectWithOccurrences(ObjectIntPredicate<? super T> predicate) ImmutableEmptyBag.detectWithOccurrences(ObjectIntPredicate<? super T> predicate) ImmutableHashBag.detectWithOccurrences(ObjectIntPredicate<? super T> predicate) ImmutableSingletonBag.detectWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanImmutableArrayBag.noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanImmutableEmptyBag.noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanImmutableHashBag.noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanImmutableSingletonBag.noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) protected booleanAbstractImmutableBagIterable.shortCircuit(T[] elements, int[] occurrences, ObjectIntPredicate<? super T> predicate, boolean expected, boolean onShortCircuit, boolean atEnd) -
Uses of ObjectIntPredicate in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable with parameters of type ObjectIntPredicateModifier and TypeMethodDescriptionbooleanAbstractHashBag.allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanMultiReaderHashBag.allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanMultiReaderHashBag.UntouchableMutableBag.allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanSynchronizedBag.allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanUnmodifiableBag.allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanAbstractHashBag.anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanMultiReaderHashBag.anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanMultiReaderHashBag.UntouchableMutableBag.anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanSynchronizedBag.anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanUnmodifiableBag.anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) AbstractHashBag.detectWithOccurrences(ObjectIntPredicate<? super T> predicate) MultiReaderHashBag.detectWithOccurrences(ObjectIntPredicate<? super T> predicate) MultiReaderHashBag.UntouchableMutableBag.detectWithOccurrences(ObjectIntPredicate<? super T> predicate) SynchronizedBag.detectWithOccurrences(ObjectIntPredicate<? super T> predicate) UnmodifiableBag.detectWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanAbstractHashBag.noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanMultiReaderHashBag.noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanMultiReaderHashBag.UntouchableMutableBag.noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanSynchronizedBag.noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanUnmodifiableBag.noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) -
Uses of ObjectIntPredicate in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable with parameters of type ObjectIntPredicateModifier and TypeMethodDescriptionbooleanImmutableEmptySortedBag.allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanImmutableSortedBagImpl.allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanImmutableEmptySortedBag.anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanImmutableSortedBagImpl.anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) ImmutableEmptySortedBag.detectWithOccurrences(ObjectIntPredicate<? super T> predicate) ImmutableSortedBagImpl.detectWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanImmutableEmptySortedBag.noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanImmutableSortedBagImpl.noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) -
Uses of ObjectIntPredicate in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable with parameters of type ObjectIntPredicateModifier and TypeMethodDescriptionbooleanSynchronizedSortedBag.allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanTreeBag.allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanUnmodifiableSortedBag.allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanSynchronizedSortedBag.anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanTreeBag.anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanUnmodifiableSortedBag.anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) SynchronizedSortedBag.detectWithOccurrences(ObjectIntPredicate<? super T> predicate) TreeBag.detectWithOccurrences(ObjectIntPredicate<? super T> predicate) UnmodifiableSortedBag.detectWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanSynchronizedSortedBag.noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanTreeBag.noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) booleanUnmodifiableSortedBag.noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate) -
Uses of ObjectIntPredicate in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable with parameters of type ObjectIntPredicateModifier and TypeMethodDescriptionImmutableArrayList.rejectWithIndex(ObjectIntPredicate<? super T> predicate) <R extends Collection<T>>
RImmutableArrayList.rejectWithIndex(ObjectIntPredicate<? super T> predicate, R target) ImmutableArrayList.selectWithIndex(ObjectIntPredicate<? super T> predicate) <R extends Collection<T>>
RImmutableArrayList.selectWithIndex(ObjectIntPredicate<? super T> predicate, R target) -
Uses of ObjectIntPredicate in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with parameters of type ObjectIntPredicateModifier and TypeMethodDescriptionFastList.rejectWithIndex(ObjectIntPredicate<? super T> predicate) <R extends Collection<T>>
RFastList.rejectWithIndex(ObjectIntPredicate<? super T> predicate, R target) SynchronizedMutableList.rejectWithIndex(ObjectIntPredicate<? super T> predicate) <R extends Collection<T>>
RSynchronizedMutableList.rejectWithIndex(ObjectIntPredicate<? super T> predicate, R target) FastList.selectWithIndex(ObjectIntPredicate<? super T> predicate) <R extends Collection<T>>
RFastList.selectWithIndex(ObjectIntPredicate<? super T> predicate, R target) SynchronizedMutableList.selectWithIndex(ObjectIntPredicate<? super T> predicate) <R extends Collection<T>>
RSynchronizedMutableList.selectWithIndex(ObjectIntPredicate<? super T> predicate, R target) -
Uses of ObjectIntPredicate in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type ObjectIntPredicateModifier and TypeMethodDescriptionbooleanImmutableObjectIntHashMap.allSatisfyKeyValue(ObjectIntPredicate<K> predicate) booleanImmutableObjectIntSingletonMap.allSatisfyKeyValue(ObjectIntPredicate<K> predicate) ImmutableObjectIntEmptyMap.reject(ObjectIntPredicate<? super K> objectIntPredicate) ImmutableObjectIntHashMap.reject(ObjectIntPredicate<? super K> objectIntPredicate) ImmutableObjectIntSingletonMap.reject(ObjectIntPredicate<? super K> objectIntPredicate) ImmutableObjectIntEmptyMap.select(ObjectIntPredicate<? super K> objectIntPredicate) ImmutableObjectIntHashMap.select(ObjectIntPredicate<? super K> objectIntPredicate) ImmutableObjectIntSingletonMap.select(ObjectIntPredicate<? super K> objectIntPredicate) -
Uses of ObjectIntPredicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ObjectIntPredicateModifier and TypeMethodDescriptionbooleanObjectIntHashMap.allSatisfyKeyValue(ObjectIntPredicate<K> predicate) booleanObjectIntHashMapWithHashingStrategy.allSatisfyKeyValue(ObjectIntPredicate<K> predicate) booleanSynchronizedObjectIntMap.allSatisfyKeyValue(ObjectIntPredicate<K> predicate) ObjectIntHashMap.reject(ObjectIntPredicate<? super K> predicate) ObjectIntHashMapWithHashingStrategy.reject(ObjectIntPredicate<? super K> predicate) SynchronizedObjectIntMap.reject(ObjectIntPredicate<? super K> predicate) UnmodifiableObjectIntMap.reject(ObjectIntPredicate<? super K> predicate) ObjectIntHashMap.select(ObjectIntPredicate<? super K> predicate) ObjectIntHashMapWithHashingStrategy.select(ObjectIntPredicate<? super K> predicate) SynchronizedObjectIntMap.select(ObjectIntPredicate<? super K> predicate) UnmodifiableObjectIntMap.select(ObjectIntPredicate<? super K> predicate) -
Uses of ObjectIntPredicate in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with parameters of type ObjectIntPredicateModifier and TypeMethodDescription<R extends Collection<V>>
RSynchronizedSortedMap.rejectWithIndex(ObjectIntPredicate<? super V> predicate, R target) <R extends Collection<V>>
RSynchronizedSortedMap.selectWithIndex(ObjectIntPredicate<? super V> predicate, R target) -
Uses of ObjectIntPredicate in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable with parameters of type ObjectIntPredicateModifier and TypeMethodDescription<R extends Collection<T>>
RSynchronizedSortedSet.rejectWithIndex(ObjectIntPredicate<? super T> predicate, R target) <R extends Collection<T>>
RSynchronizedSortedSet.selectWithIndex(ObjectIntPredicate<? super T> predicate, R target) -
Uses of ObjectIntPredicate in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with parameters of type ObjectIntPredicateModifier and TypeMethodDescription<R extends Collection<T>>
RSynchronizedStack.rejectWithIndex(ObjectIntPredicate<? super T> predicate, R target) <R extends Collection<T>>
RSynchronizedStack.selectWithIndex(ObjectIntPredicate<? super T> predicate, R target) -
Uses of ObjectIntPredicate in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type ObjectIntPredicateModifier and TypeMethodDescriptionstatic <R extends Collection<T>, T>
RInternalArrayIterate.rejectWithIndex(T[] array, int size, ObjectIntPredicate<? super T> predicate, R target) Adds all array elements to the target Collection that return false when evaluating the specified predicate which is supplied each element and its relative index.static <R extends Collection<T>, T>
RInternalArrayIterate.selectWithIndex(T[] array, int size, ObjectIntPredicate<? super T> predicate, R target) Adds all array elements to the target Collection that return true when evaluating the specified predicate which is supplied each element and its relative index.