Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate
-
Packages that use ObjectIntPredicate Package Description org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList
.org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.ordered org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBag
interface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBag
interface.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag
.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableList
interface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet
.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.org.eclipse.collections.impl.utility.internal 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 ObjectIntPredicate Modifier and Type Method Description boolean
Bag. allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
Returns true if the predicate evaluates to true for all elements of the Bag.boolean
Bag. anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
Returns true if the predicate evaluates to true for any element of the Bag.T
Bag. detectWithOccurrences(ObjectIntPredicate<? super T> predicate)
Returns an element of the Bag that satisfies the predicate or null if such an element does not existboolean
Bag. 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 ObjectIntPredicate Modifier and Type Method Description default 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 ObjectIntPredicate Modifier and Type Method Description ImmutableObjectIntMap<K>
ImmutableObjectIntMap. reject(ObjectIntPredicate<? super K> predicate)
MutableObjectIntMap<K>
MutableObjectIntMap. reject(ObjectIntPredicate<? super K> predicate)
ObjectIntMap<K>
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<K>
ImmutableObjectIntMap. select(ObjectIntPredicate<? super K> predicate)
MutableObjectIntMap<K>
MutableObjectIntMap. select(ObjectIntPredicate<? super K> predicate)
ObjectIntMap<K>
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 ObjectIntPredicate Modifier and Type Method Description default <R extends java.util.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 java.util.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 ObjectIntPredicate Modifier and Type Method Description boolean
ImmutableArrayBag. allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
ImmutableEmptyBag. allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
ImmutableHashBag. allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
ImmutableSingletonBag. allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
ImmutableArrayBag. anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
ImmutableEmptyBag. anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
ImmutableHashBag. anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
ImmutableSingletonBag. anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
T
ImmutableArrayBag. detectWithOccurrences(ObjectIntPredicate<? super T> predicate)
T
ImmutableEmptyBag. detectWithOccurrences(ObjectIntPredicate<? super T> predicate)
T
ImmutableHashBag. detectWithOccurrences(ObjectIntPredicate<? super T> predicate)
T
ImmutableSingletonBag. detectWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
ImmutableArrayBag. noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
ImmutableEmptyBag. noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
ImmutableHashBag. noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
ImmutableSingletonBag. noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
protected boolean
AbstractImmutableBagIterable. 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 ObjectIntPredicate Modifier and Type Method Description boolean
AbstractHashBag. allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
MultiReaderHashBag. allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
MultiReaderHashBag.UntouchableMutableBag. allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
SynchronizedBag. allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
UnmodifiableBag. allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
AbstractHashBag. anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
MultiReaderHashBag. anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
MultiReaderHashBag.UntouchableMutableBag. anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
SynchronizedBag. anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
UnmodifiableBag. anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
T
AbstractHashBag. detectWithOccurrences(ObjectIntPredicate<? super T> predicate)
T
MultiReaderHashBag. detectWithOccurrences(ObjectIntPredicate<? super T> predicate)
T
MultiReaderHashBag.UntouchableMutableBag. detectWithOccurrences(ObjectIntPredicate<? super T> predicate)
T
SynchronizedBag. detectWithOccurrences(ObjectIntPredicate<? super T> predicate)
T
UnmodifiableBag. detectWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
AbstractHashBag. noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
MultiReaderHashBag. noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
MultiReaderHashBag.UntouchableMutableBag. noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
SynchronizedBag. noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
UnmodifiableBag. 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 ObjectIntPredicate Modifier and Type Method Description boolean
ImmutableEmptySortedBag. allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
ImmutableSortedBagImpl. allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
ImmutableEmptySortedBag. anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
ImmutableSortedBagImpl. anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
T
ImmutableEmptySortedBag. detectWithOccurrences(ObjectIntPredicate<? super T> predicate)
T
ImmutableSortedBagImpl. detectWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
ImmutableEmptySortedBag. noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
ImmutableSortedBagImpl. 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 ObjectIntPredicate Modifier and Type Method Description boolean
SynchronizedSortedBag. allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
TreeBag. allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
UnmodifiableSortedBag. allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
SynchronizedSortedBag. anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
TreeBag. anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
UnmodifiableSortedBag. anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
T
SynchronizedSortedBag. detectWithOccurrences(ObjectIntPredicate<? super T> predicate)
T
TreeBag. detectWithOccurrences(ObjectIntPredicate<? super T> predicate)
T
UnmodifiableSortedBag. detectWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
SynchronizedSortedBag. noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
TreeBag. noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)
boolean
UnmodifiableSortedBag. 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 ObjectIntPredicate Modifier and Type Method Description ImmutableList<T>
ImmutableArrayList. rejectWithIndex(ObjectIntPredicate<? super T> predicate)
<R extends java.util.Collection<T>>
RImmutableArrayList. rejectWithIndex(ObjectIntPredicate<? super T> predicate, R target)
ImmutableList<T>
ImmutableArrayList. selectWithIndex(ObjectIntPredicate<? super T> predicate)
<R extends java.util.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 ObjectIntPredicate Modifier and Type Method Description MutableList<T>
FastList. rejectWithIndex(ObjectIntPredicate<? super T> predicate)
<R extends java.util.Collection<T>>
RFastList. rejectWithIndex(ObjectIntPredicate<? super T> predicate, R target)
MutableList<T>
SynchronizedMutableList. rejectWithIndex(ObjectIntPredicate<? super T> predicate)
<R extends java.util.Collection<T>>
RSynchronizedMutableList. rejectWithIndex(ObjectIntPredicate<? super T> predicate, R target)
MutableList<T>
FastList. selectWithIndex(ObjectIntPredicate<? super T> predicate)
<R extends java.util.Collection<T>>
RFastList. selectWithIndex(ObjectIntPredicate<? super T> predicate, R target)
MutableList<T>
SynchronizedMutableList. selectWithIndex(ObjectIntPredicate<? super T> predicate)
<R extends java.util.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 ObjectIntPredicate Modifier and Type Method Description ImmutableObjectIntMap<K>
ImmutableObjectIntEmptyMap. reject(ObjectIntPredicate<? super K> objectIntPredicate)
ImmutableObjectIntMap<K>
ImmutableObjectIntHashMap. reject(ObjectIntPredicate<? super K> objectIntPredicate)
ImmutableObjectIntMap<K>
ImmutableObjectIntSingletonMap. reject(ObjectIntPredicate<? super K> objectIntPredicate)
ImmutableObjectIntMap<K>
ImmutableObjectIntEmptyMap. select(ObjectIntPredicate<? super K> objectIntPredicate)
ImmutableObjectIntMap<K>
ImmutableObjectIntHashMap. select(ObjectIntPredicate<? super K> objectIntPredicate)
ImmutableObjectIntMap<K>
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 ObjectIntPredicate Modifier and Type Method Description ObjectIntHashMap<K>
ObjectIntHashMap. reject(ObjectIntPredicate<? super K> predicate)
ObjectIntHashMapWithHashingStrategy<K>
ObjectIntHashMapWithHashingStrategy. reject(ObjectIntPredicate<? super K> predicate)
MutableObjectIntMap<K>
SynchronizedObjectIntMap. reject(ObjectIntPredicate<? super K> predicate)
MutableObjectIntMap<K>
UnmodifiableObjectIntMap. reject(ObjectIntPredicate<? super K> predicate)
ObjectIntHashMap<K>
ObjectIntHashMap. select(ObjectIntPredicate<? super K> predicate)
ObjectIntHashMapWithHashingStrategy<K>
ObjectIntHashMapWithHashingStrategy. select(ObjectIntPredicate<? super K> predicate)
MutableObjectIntMap<K>
SynchronizedObjectIntMap. select(ObjectIntPredicate<? super K> predicate)
MutableObjectIntMap<K>
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 ObjectIntPredicate Modifier and Type Method Description <R extends java.util.Collection<V>>
RSynchronizedSortedMap. rejectWithIndex(ObjectIntPredicate<? super V> predicate, R target)
<R extends java.util.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 ObjectIntPredicate Modifier and Type Method Description <R extends java.util.Collection<T>>
RSynchronizedSortedSet. rejectWithIndex(ObjectIntPredicate<? super T> predicate, R target)
<R extends java.util.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 ObjectIntPredicate Modifier and Type Method Description <R extends java.util.Collection<T>>
RSynchronizedStack. rejectWithIndex(ObjectIntPredicate<? super T> predicate, R target)
<R extends java.util.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 ObjectIntPredicate Modifier and Type Method Description static <R extends java.util.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 java.util.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.
-