Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.IntPredicate
Package | Description |
---|---|
org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
org.eclipse.collections.api.bag |
This package contains interfaces for Bag API.
|
org.eclipse.collections.api.bag.primitive |
This package contains API for Primitive Bags with Mutable and Immutable variants.
|
org.eclipse.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
org.eclipse.collections.api.collection.primitive |
This package contains mutable and immutable primitive collection API.
|
org.eclipse.collections.api.list.primitive |
This package contains mutable and immutable primitive list API.
|
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.primitive | |
org.eclipse.collections.api.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
org.eclipse.collections.api.stack.primitive |
This package contains mutable and immutable primitive stack API.
|
org.eclipse.collections.impl.bag.immutable |
This package contains implementations of the
ImmutableBag interface. |
org.eclipse.collections.impl.bag.mutable |
This package contains implementations of the
MutableBag interface. |
org.eclipse.collections.impl.bag.mutable.primitive |
This package contains implementations of the mutable primitive bag interfaces.
|
org.eclipse.collections.impl.bag.sorted.mutable |
This package contains implementations of
MutableSortedBag . |
org.eclipse.collections.impl.bag.strategy.mutable |
This package contains implementations of bags with user defined
HashingStrategy s. |
org.eclipse.collections.impl.block.factory.primitive |
This package contains factory implementations for primitive functions, primitive predicates, primitive procedures and primitive comparators.
|
org.eclipse.collections.impl.block.function.primitive |
This package contains implementations of primitive functions.
|
org.eclipse.collections.impl.block.procedure.primitive |
This package contains implementations of primitive procedures.
|
org.eclipse.collections.impl.collection.mutable.primitive |
This package contains implementations of the mutable primitive collection interfaces.
|
org.eclipse.collections.impl.lazy.primitive |
This package contains implementations of the lazy primitive iterator interfaces.
|
org.eclipse.collections.impl.list.mutable.primitive |
This package contains implementations of the mutable primitive list interfaces.
|
org.eclipse.collections.impl.list.primitive |
This package contains implementations of the primitive list 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.primitive | |
org.eclipse.collections.impl.set.mutable.primitive |
This package contains implementations of the mutable primitive set interfaces.
|
org.eclipse.collections.impl.stack.mutable.primitive |
This package contains implementations of the mutable primitive stack interfaces.
|
org.eclipse.collections.impl.stack.primitive | |
org.eclipse.collections.impl.string.immutable | |
org.eclipse.collections.impl.utility.internal.primitive | |
org.eclipse.collections.impl.utility.primitive |
-
Uses of IntPredicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type IntPredicate Modifier and Type Method Description boolean
IntIterable. allSatisfy(IntPredicate predicate)
Returns true if all of the elements in the IntIterable return true for the specified predicate, otherwise returns false.boolean
IntIterable. anySatisfy(IntPredicate predicate)
Returns true if any of the elements in the IntIterable return true for the specified predicate, otherwise returns false.int
IntIterable. count(IntPredicate predicate)
Returns a count of the number of elements in the IntIterable that return true for the specified predicate.int
IntIterable. detectIfNone(IntPredicate predicate, int ifNone)
boolean
IntIterable. noneSatisfy(IntPredicate predicate)
Returns true if none of the elements in the IntIterable return true for the specified predicate, otherwise returns false.IntIterable
IntIterable. reject(IntPredicate predicate)
Returns a new IntIterable with all of the elements in the IntIterable that return false for the specified predicate.default <R extends MutableIntCollection>
RIntIterable. reject(IntPredicate predicate, R target)
Same asIntIterable.reject(IntPredicate)
, only the results are added to the target MutableIntCollection.LazyIntIterable
LazyIntIterable. reject(IntPredicate predicate)
IntIterable
IntIterable. select(IntPredicate predicate)
Returns a new IntIterable with all of the elements in the IntIterable that return true for the specified predicate.default <R extends MutableIntCollection>
RIntIterable. select(IntPredicate predicate, R target)
Same asIntIterable.select(IntPredicate)
, only the results are added to the target MutableIntCollection.LazyIntIterable
LazyIntIterable. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type IntPredicate Modifier and Type Method Description Bag<T>
Bag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableBag<T>
ImmutableBag. selectByOccurrences(IntPredicate predicate)
ImmutableBagIterable<T>
ImmutableBagIterable. selectByOccurrences(IntPredicate predicate)
MutableBag<T>
MutableBag. selectByOccurrences(IntPredicate predicate)
MutableBagIterable<T>
MutableBagIterable. selectByOccurrences(IntPredicate predicate)
UnsortedBag<T>
UnsortedBag. selectByOccurrences(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type IntPredicate Modifier and Type Method Description ImmutableIntBag
ImmutableIntBag. reject(IntPredicate predicate)
IntBag
IntBag. reject(IntPredicate predicate)
MutableIntBag
MutableIntBag. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableIntBag. select(IntPredicate predicate)
IntBag
IntBag. select(IntPredicate predicate)
MutableIntBag
MutableIntBag. select(IntPredicate predicate)
BooleanBag
BooleanBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ByteBag
ByteBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.CharBag
CharBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.DoubleBag
DoubleBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.FloatBag
FloatBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableBooleanBag
ImmutableBooleanBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableByteBag
ImmutableByteBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableCharBag
ImmutableCharBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableDoubleBag
ImmutableDoubleBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableFloatBag
ImmutableFloatBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableIntBag
ImmutableIntBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableLongBag
ImmutableLongBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableShortBag
ImmutableShortBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.IntBag
IntBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.LongBag
LongBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableBooleanBag
MutableBooleanBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableByteBag
MutableByteBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableCharBag
MutableCharBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableDoubleBag
MutableDoubleBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableFloatBag
MutableFloatBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableIntBag
MutableIntBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableLongBag
MutableLongBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableShortBag
MutableShortBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ShortBag
ShortBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate. -
Uses of IntPredicate in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted with parameters of type IntPredicate Modifier and Type Method Description ImmutableSortedBag<T>
ImmutableSortedBag. selectByOccurrences(IntPredicate predicate)
MutableSortedBag<T>
MutableSortedBag. selectByOccurrences(IntPredicate predicate)
SortedBag<T>
SortedBag. selectByOccurrences(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type IntPredicate Modifier and Type Method Description ImmutableIntCollection
ImmutableIntCollection. reject(IntPredicate predicate)
MutableIntCollection
MutableIntCollection. reject(IntPredicate predicate)
default boolean
MutableIntCollection. removeIf(IntPredicate predicate)
ImmutableIntCollection
ImmutableIntCollection. select(IntPredicate predicate)
MutableIntCollection
MutableIntCollection. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type IntPredicate Modifier and Type Method Description ImmutableIntList
ImmutableIntList. reject(IntPredicate predicate)
IntList
IntList. reject(IntPredicate predicate)
MutableIntList
MutableIntList. reject(IntPredicate predicate)
ImmutableIntList
ImmutableIntList. select(IntPredicate predicate)
IntList
IntList. select(IntPredicate predicate)
MutableIntList
MutableIntList. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type IntPredicate Modifier and Type Method Description ImmutableIntBag
ImmutableByteIntMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableCharIntMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableDoubleIntMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableFloatIntMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableIntIntMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableLongIntMap. reject(IntPredicate predicate)
ImmutableIntCollection
ImmutableObjectIntMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableShortIntMap. reject(IntPredicate predicate)
IntBag
IntValuesMap. reject(IntPredicate predicate)
MutableIntBag
MutableIntValuesMap. reject(IntPredicate predicate)
MutableIntCollection
MutableObjectIntMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableByteIntMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableCharIntMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableDoubleIntMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableFloatIntMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableIntIntMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableLongIntMap. select(IntPredicate predicate)
ImmutableIntCollection
ImmutableObjectIntMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableShortIntMap. select(IntPredicate predicate)
IntBag
IntValuesMap. select(IntPredicate predicate)
MutableIntBag
MutableIntValuesMap. select(IntPredicate predicate)
MutableIntCollection
MutableObjectIntMap. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type IntPredicate Modifier and Type Method Description OrderedIntIterable
OrderedIntIterable. reject(IntPredicate predicate)
ReversibleIntIterable
ReversibleIntIterable. reject(IntPredicate predicate)
OrderedIntIterable
OrderedIntIterable. select(IntPredicate predicate)
ReversibleIntIterable
ReversibleIntIterable. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type IntPredicate Modifier and Type Method Description ImmutableIntSet
ImmutableIntSet. reject(IntPredicate predicate)
IntSet
IntSet. reject(IntPredicate predicate)
MutableIntSet
MutableIntSet. reject(IntPredicate predicate)
ImmutableIntSet
ImmutableIntSet. select(IntPredicate predicate)
IntSet
IntSet. select(IntPredicate predicate)
MutableIntSet
MutableIntSet. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type IntPredicate Modifier and Type Method Description ImmutableIntStack
ImmutableIntStack. reject(IntPredicate predicate)
IntStack
IntStack. reject(IntPredicate predicate)
MutableIntStack
MutableIntStack. reject(IntPredicate predicate)
ImmutableIntStack
ImmutableIntStack. select(IntPredicate predicate)
IntStack
IntStack. select(IntPredicate predicate)
MutableIntStack
MutableIntStack. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable with parameters of type IntPredicate Modifier and Type Method Description ImmutableBag<T>
ImmutableArrayBag. selectByOccurrences(IntPredicate predicate)
ImmutableBag<T>
ImmutableHashBag. selectByOccurrences(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable with parameters of type IntPredicate Modifier and Type Method Description MutableBag<T>
HashBag. selectByOccurrences(IntPredicate predicate)
MutableBag<T>
MultiReaderHashBag. selectByOccurrences(IntPredicate predicate)
MutableBag<T>
SynchronizedBag. selectByOccurrences(IntPredicate predicate)
MutableBag<T>
UnmodifiableBag. selectByOccurrences(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.bag.mutable.primitive
-
Uses of IntPredicate in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable with parameters of type IntPredicate Modifier and Type Method Description MutableSortedBag<T>
SynchronizedSortedBag. selectByOccurrences(IntPredicate predicate)
MutableSortedBag<T>
TreeBag. selectByOccurrences(IntPredicate predicate)
MutableSortedBag<T>
UnmodifiableSortedBag. selectByOccurrences(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.bag.strategy.mutable
Methods in org.eclipse.collections.impl.bag.strategy.mutable with parameters of type IntPredicate Modifier and Type Method Description MutableBag<T>
HashBagWithHashingStrategy. selectByOccurrences(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.block.factory.primitive
Methods in org.eclipse.collections.impl.block.factory.primitive that return IntPredicate Modifier and Type Method Description static IntPredicate
IntPredicates. alwaysFalse()
static IntPredicate
IntPredicates. alwaysTrue()
static IntPredicate
IntPredicates. and(IntPredicate one, IntPredicate two)
static IntPredicate
IntPredicates. equal(int expected)
static IntPredicate
IntPredicates. greaterThan(int expected)
static IntPredicate
IntPredicates. isEven()
static IntPredicate
IntPredicates. isOdd()
static IntPredicate
IntPredicates. lessThan(int expected)
static IntPredicate
IntPredicates. not(IntPredicate negate)
static IntPredicate
IntPredicates. or(IntPredicate one, IntPredicate two)
Methods in org.eclipse.collections.impl.block.factory.primitive with parameters of type IntPredicate Modifier and Type Method Description static IntPredicate
IntPredicates. and(IntPredicate one, IntPredicate two)
static IntPredicate
IntPredicates. not(IntPredicate negate)
static IntPredicate
IntPredicates. or(IntPredicate one, IntPredicate two)
-
Uses of IntPredicate in org.eclipse.collections.impl.block.function.primitive
Methods in org.eclipse.collections.impl.block.function.primitive with parameters of type IntPredicate Modifier and Type Method Description IntCaseFunction<V>
IntCaseFunction. addCase(IntPredicate predicate, IntToObjectFunction<? extends V> function)
-
Uses of IntPredicate in org.eclipse.collections.impl.block.procedure.primitive
Methods in org.eclipse.collections.impl.block.procedure.primitive with parameters of type IntPredicate Modifier and Type Method Description IntCaseProcedure
IntCaseProcedure. addCase(IntPredicate predicate, IntProcedure procedure)
-
Uses of IntPredicate in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
AbstractSynchronizedIntCollection. allSatisfy(IntPredicate predicate)
boolean
AbstractUnmodifiableIntCollection. allSatisfy(IntPredicate predicate)
boolean
AbstractSynchronizedIntCollection. anySatisfy(IntPredicate predicate)
boolean
AbstractUnmodifiableIntCollection. anySatisfy(IntPredicate predicate)
int
AbstractSynchronizedIntCollection. count(IntPredicate predicate)
int
AbstractUnmodifiableIntCollection. count(IntPredicate predicate)
int
AbstractSynchronizedIntCollection. detectIfNone(IntPredicate predicate, int ifNone)
int
AbstractUnmodifiableIntCollection. detectIfNone(IntPredicate predicate, int ifNone)
boolean
AbstractSynchronizedIntCollection. noneSatisfy(IntPredicate predicate)
boolean
AbstractUnmodifiableIntCollection. noneSatisfy(IntPredicate predicate)
MutableIntCollection
AbstractSynchronizedIntCollection. reject(IntPredicate predicate)
MutableIntCollection
AbstractUnmodifiableIntCollection. reject(IntPredicate predicate)
boolean
AbstractSynchronizedIntCollection. removeIf(IntPredicate predicate)
boolean
AbstractUnmodifiableIntCollection. removeIf(IntPredicate predicate)
MutableIntCollection
AbstractSynchronizedIntCollection. select(IntPredicate predicate)
MutableIntCollection
AbstractUnmodifiableIntCollection. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
AbstractLazyIntIterable. allSatisfy(IntPredicate predicate)
boolean
CollectIntIterable. allSatisfy(IntPredicate predicate)
boolean
LazyIntIterableAdapter. allSatisfy(IntPredicate predicate)
boolean
SelectIntIterable. allSatisfy(IntPredicate predicate)
boolean
TapIntIterable. allSatisfy(IntPredicate predicate)
boolean
AbstractLazyIntIterable. anySatisfy(IntPredicate predicate)
boolean
CollectIntIterable. anySatisfy(IntPredicate predicate)
boolean
LazyIntIterableAdapter. anySatisfy(IntPredicate predicate)
boolean
SelectIntIterable. anySatisfy(IntPredicate predicate)
boolean
TapIntIterable. anySatisfy(IntPredicate predicate)
int
AbstractLazyIntIterable. count(IntPredicate predicate)
int
CollectIntIterable. count(IntPredicate predicate)
int
LazyIntIterableAdapter. count(IntPredicate predicate)
int
SelectIntIterable. count(IntPredicate predicate)
int
AbstractLazyIntIterable. detectIfNone(IntPredicate predicate, int ifNone)
int
LazyIntIterableAdapter. detectIfNone(IntPredicate predicate, int ifNone)
int
TapIntIterable. detectIfNone(IntPredicate predicate, int ifNone)
boolean
AbstractLazyIntIterable. noneSatisfy(IntPredicate predicate)
boolean
CollectIntIterable. noneSatisfy(IntPredicate predicate)
boolean
LazyIntIterableAdapter. noneSatisfy(IntPredicate predicate)
boolean
SelectIntIterable. noneSatisfy(IntPredicate predicate)
boolean
TapIntIterable. noneSatisfy(IntPredicate predicate)
LazyIntIterable
AbstractLazyIntIterable. reject(IntPredicate predicate)
LazyIntIterable
AbstractLazyIntIterable. select(IntPredicate predicate)
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type IntPredicate Constructor Description SelectIntIterable(IntIterable delegate, IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
IntArrayList. allSatisfy(IntPredicate predicate)
boolean
IntArrayList. anySatisfy(IntPredicate predicate)
int
IntArrayList. count(IntPredicate predicate)
int
IntArrayList. detectIfNone(IntPredicate predicate, int ifNone)
boolean
IntArrayList. noneSatisfy(IntPredicate predicate)
IntArrayList
IntArrayList. reject(IntPredicate predicate)
<R extends MutableIntCollection>
RIntArrayList. reject(IntPredicate predicate, R target)
MutableIntList
SynchronizedIntList. reject(IntPredicate predicate)
MutableIntList
UnmodifiableIntList. reject(IntPredicate predicate)
boolean
IntArrayList. removeIf(IntPredicate predicate)
IntArrayList
IntArrayList. select(IntPredicate predicate)
<R extends MutableIntCollection>
RIntArrayList. select(IntPredicate predicate, R target)
MutableIntList
SynchronizedIntList. select(IntPredicate predicate)
MutableIntList
UnmodifiableIntList. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.list.primitive
Methods in org.eclipse.collections.impl.list.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
IntInterval. allSatisfy(IntPredicate predicate)
boolean
IntInterval. anySatisfy(IntPredicate predicate)
int
IntInterval. count(IntPredicate predicate)
int
IntInterval. detectIfNone(IntPredicate predicate, int ifNone)
boolean
IntInterval. noneSatisfy(IntPredicate predicate)
ImmutableIntList
IntInterval. reject(IntPredicate predicate)
ImmutableIntList
IntInterval. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
AbstractMutableIntKeySet. allSatisfy(IntPredicate predicate)
boolean
AbstractMutableIntValuesMap. allSatisfy(IntPredicate predicate)
boolean
ObjectIntHashMap. allSatisfy(IntPredicate predicate)
boolean
ObjectIntHashMapWithHashingStrategy. allSatisfy(IntPredicate predicate)
boolean
SynchronizedByteIntMap. allSatisfy(IntPredicate predicate)
boolean
SynchronizedCharIntMap. allSatisfy(IntPredicate predicate)
boolean
SynchronizedDoubleIntMap. allSatisfy(IntPredicate predicate)
boolean
SynchronizedFloatIntMap. allSatisfy(IntPredicate predicate)
boolean
SynchronizedIntIntMap. allSatisfy(IntPredicate predicate)
boolean
SynchronizedLongIntMap. allSatisfy(IntPredicate predicate)
boolean
SynchronizedObjectIntMap. allSatisfy(IntPredicate predicate)
boolean
SynchronizedShortIntMap. allSatisfy(IntPredicate predicate)
boolean
UnmodifiableByteIntMap. allSatisfy(IntPredicate predicate)
boolean
UnmodifiableCharIntMap. allSatisfy(IntPredicate predicate)
boolean
UnmodifiableDoubleIntMap. allSatisfy(IntPredicate predicate)
boolean
UnmodifiableFloatIntMap. allSatisfy(IntPredicate predicate)
boolean
UnmodifiableIntIntMap. allSatisfy(IntPredicate predicate)
boolean
UnmodifiableLongIntMap. allSatisfy(IntPredicate predicate)
boolean
UnmodifiableObjectIntMap. allSatisfy(IntPredicate predicate)
boolean
UnmodifiableShortIntMap. allSatisfy(IntPredicate predicate)
boolean
AbstractMutableIntKeySet. anySatisfy(IntPredicate predicate)
boolean
AbstractMutableIntValuesMap. anySatisfy(IntPredicate predicate)
boolean
ObjectIntHashMap. anySatisfy(IntPredicate predicate)
boolean
ObjectIntHashMapWithHashingStrategy. anySatisfy(IntPredicate predicate)
boolean
SynchronizedByteIntMap. anySatisfy(IntPredicate predicate)
boolean
SynchronizedCharIntMap. anySatisfy(IntPredicate predicate)
boolean
SynchronizedDoubleIntMap. anySatisfy(IntPredicate predicate)
boolean
SynchronizedFloatIntMap. anySatisfy(IntPredicate predicate)
boolean
SynchronizedIntIntMap. anySatisfy(IntPredicate predicate)
boolean
SynchronizedLongIntMap. anySatisfy(IntPredicate predicate)
boolean
SynchronizedObjectIntMap. anySatisfy(IntPredicate predicate)
boolean
SynchronizedShortIntMap. anySatisfy(IntPredicate predicate)
boolean
UnmodifiableByteIntMap. anySatisfy(IntPredicate predicate)
boolean
UnmodifiableCharIntMap. anySatisfy(IntPredicate predicate)
boolean
UnmodifiableDoubleIntMap. anySatisfy(IntPredicate predicate)
boolean
UnmodifiableFloatIntMap. anySatisfy(IntPredicate predicate)
boolean
UnmodifiableIntIntMap. anySatisfy(IntPredicate predicate)
boolean
UnmodifiableLongIntMap. anySatisfy(IntPredicate predicate)
boolean
UnmodifiableObjectIntMap. anySatisfy(IntPredicate predicate)
boolean
UnmodifiableShortIntMap. anySatisfy(IntPredicate predicate)
int
AbstractMutableIntKeySet. count(IntPredicate predicate)
int
AbstractMutableIntValuesMap. count(IntPredicate predicate)
int
ObjectIntHashMap. count(IntPredicate predicate)
int
ObjectIntHashMapWithHashingStrategy. count(IntPredicate predicate)
int
SynchronizedByteIntMap. count(IntPredicate predicate)
int
SynchronizedCharIntMap. count(IntPredicate predicate)
int
SynchronizedDoubleIntMap. count(IntPredicate predicate)
int
SynchronizedFloatIntMap. count(IntPredicate predicate)
int
SynchronizedIntIntMap. count(IntPredicate predicate)
int
SynchronizedLongIntMap. count(IntPredicate predicate)
int
SynchronizedObjectIntMap. count(IntPredicate predicate)
int
SynchronizedShortIntMap. count(IntPredicate predicate)
int
UnmodifiableByteIntMap. count(IntPredicate predicate)
int
UnmodifiableCharIntMap. count(IntPredicate predicate)
int
UnmodifiableDoubleIntMap. count(IntPredicate predicate)
int
UnmodifiableFloatIntMap. count(IntPredicate predicate)
int
UnmodifiableIntIntMap. count(IntPredicate predicate)
int
UnmodifiableLongIntMap. count(IntPredicate predicate)
int
UnmodifiableObjectIntMap. count(IntPredicate predicate)
int
UnmodifiableShortIntMap. count(IntPredicate predicate)
int
AbstractMutableIntKeySet. detectIfNone(IntPredicate predicate, int ifNone)
int
AbstractMutableIntValuesMap. detectIfNone(IntPredicate predicate, int value)
int
ObjectIntHashMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ObjectIntHashMapWithHashingStrategy. detectIfNone(IntPredicate predicate, int ifNone)
int
SynchronizedByteIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
SynchronizedCharIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
SynchronizedDoubleIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
SynchronizedFloatIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
SynchronizedIntIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
SynchronizedLongIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
SynchronizedObjectIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
SynchronizedShortIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
UnmodifiableByteIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
UnmodifiableCharIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
UnmodifiableDoubleIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
UnmodifiableFloatIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
UnmodifiableIntIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
UnmodifiableLongIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
UnmodifiableObjectIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
UnmodifiableShortIntMap. detectIfNone(IntPredicate predicate, int ifNone)
boolean
AbstractMutableIntKeySet. noneSatisfy(IntPredicate predicate)
boolean
AbstractMutableIntValuesMap. noneSatisfy(IntPredicate predicate)
boolean
ObjectIntHashMap. noneSatisfy(IntPredicate predicate)
boolean
ObjectIntHashMapWithHashingStrategy. noneSatisfy(IntPredicate predicate)
boolean
SynchronizedByteIntMap. noneSatisfy(IntPredicate predicate)
boolean
SynchronizedCharIntMap. noneSatisfy(IntPredicate predicate)
boolean
SynchronizedDoubleIntMap. noneSatisfy(IntPredicate predicate)
boolean
SynchronizedFloatIntMap. noneSatisfy(IntPredicate predicate)
boolean
SynchronizedIntIntMap. noneSatisfy(IntPredicate predicate)
boolean
SynchronizedLongIntMap. noneSatisfy(IntPredicate predicate)
boolean
SynchronizedObjectIntMap. noneSatisfy(IntPredicate predicate)
boolean
SynchronizedShortIntMap. noneSatisfy(IntPredicate predicate)
boolean
UnmodifiableByteIntMap. noneSatisfy(IntPredicate predicate)
boolean
UnmodifiableCharIntMap. noneSatisfy(IntPredicate predicate)
boolean
UnmodifiableDoubleIntMap. noneSatisfy(IntPredicate predicate)
boolean
UnmodifiableFloatIntMap. noneSatisfy(IntPredicate predicate)
boolean
UnmodifiableIntIntMap. noneSatisfy(IntPredicate predicate)
boolean
UnmodifiableLongIntMap. noneSatisfy(IntPredicate predicate)
boolean
UnmodifiableObjectIntMap. noneSatisfy(IntPredicate predicate)
boolean
UnmodifiableShortIntMap. noneSatisfy(IntPredicate predicate)
MutableIntSet
AbstractMutableIntKeySet. reject(IntPredicate predicate)
MutableIntBag
AbstractMutableIntValuesMap. reject(IntPredicate predicate)
MutableIntCollection
ObjectIntHashMap. reject(IntPredicate predicate)
MutableIntCollection
ObjectIntHashMapWithHashingStrategy. reject(IntPredicate predicate)
MutableIntBag
SynchronizedByteIntMap. reject(IntPredicate predicate)
MutableIntBag
SynchronizedCharIntMap. reject(IntPredicate predicate)
MutableIntBag
SynchronizedDoubleIntMap. reject(IntPredicate predicate)
MutableIntBag
SynchronizedFloatIntMap. reject(IntPredicate predicate)
MutableIntBag
SynchronizedIntIntMap. reject(IntPredicate predicate)
MutableIntBag
SynchronizedLongIntMap. reject(IntPredicate predicate)
MutableIntCollection
SynchronizedObjectIntMap. reject(IntPredicate predicate)
MutableIntBag
SynchronizedShortIntMap. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableByteIntMap. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableCharIntMap. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableDoubleIntMap. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableFloatIntMap. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableIntIntMap. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableLongIntMap. reject(IntPredicate predicate)
MutableIntCollection
UnmodifiableObjectIntMap. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableShortIntMap. reject(IntPredicate predicate)
MutableIntSet
AbstractMutableIntKeySet. select(IntPredicate predicate)
MutableIntBag
AbstractMutableIntValuesMap. select(IntPredicate predicate)
MutableIntCollection
ObjectIntHashMap. select(IntPredicate predicate)
MutableIntCollection
ObjectIntHashMapWithHashingStrategy. select(IntPredicate predicate)
MutableIntBag
SynchronizedByteIntMap. select(IntPredicate predicate)
MutableIntBag
SynchronizedCharIntMap. select(IntPredicate predicate)
MutableIntBag
SynchronizedDoubleIntMap. select(IntPredicate predicate)
MutableIntBag
SynchronizedFloatIntMap. select(IntPredicate predicate)
MutableIntBag
SynchronizedIntIntMap. select(IntPredicate predicate)
MutableIntBag
SynchronizedLongIntMap. select(IntPredicate predicate)
MutableIntCollection
SynchronizedObjectIntMap. select(IntPredicate predicate)
MutableIntBag
SynchronizedShortIntMap. select(IntPredicate predicate)
MutableIntBag
UnmodifiableByteIntMap. select(IntPredicate predicate)
MutableIntBag
UnmodifiableCharIntMap. select(IntPredicate predicate)
MutableIntBag
UnmodifiableDoubleIntMap. select(IntPredicate predicate)
MutableIntBag
UnmodifiableFloatIntMap. select(IntPredicate predicate)
MutableIntBag
UnmodifiableIntIntMap. select(IntPredicate predicate)
MutableIntBag
UnmodifiableLongIntMap. select(IntPredicate predicate)
MutableIntCollection
UnmodifiableObjectIntMap. select(IntPredicate predicate)
MutableIntBag
UnmodifiableShortIntMap. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
SynchronizedIntIterable. allSatisfy(IntPredicate predicate)
boolean
SynchronizedIntIterable. anySatisfy(IntPredicate predicate)
int
SynchronizedIntIterable. count(IntPredicate predicate)
int
SynchronizedIntIterable. detectIfNone(IntPredicate predicate, int ifNone)
boolean
SynchronizedIntIterable. noneSatisfy(IntPredicate predicate)
IntIterable
SynchronizedIntIterable. reject(IntPredicate predicate)
IntIterable
SynchronizedIntIterable. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
IntHashSet. allSatisfy(IntPredicate predicate)
boolean
IntHashSet. anySatisfy(IntPredicate predicate)
int
IntHashSet. count(IntPredicate predicate)
int
IntHashSet. detectIfNone(IntPredicate predicate, int ifNone)
boolean
IntHashSet. noneSatisfy(IntPredicate predicate)
IntHashSet
IntHashSet. reject(IntPredicate predicate)
<R extends MutableIntCollection>
RIntHashSet. reject(IntPredicate predicate, R target)
MutableIntSet
SynchronizedIntSet. reject(IntPredicate predicate)
MutableIntSet
UnmodifiableIntSet. reject(IntPredicate predicate)
IntHashSet
IntHashSet. select(IntPredicate predicate)
<R extends MutableIntCollection>
RIntHashSet. select(IntPredicate predicate, R target)
MutableIntSet
SynchronizedIntSet. select(IntPredicate predicate)
MutableIntSet
UnmodifiableIntSet. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
SynchronizedIntStack. allSatisfy(IntPredicate predicate)
boolean
UnmodifiableIntStack. allSatisfy(IntPredicate predicate)
boolean
SynchronizedIntStack. anySatisfy(IntPredicate predicate)
boolean
UnmodifiableIntStack. anySatisfy(IntPredicate predicate)
int
SynchronizedIntStack. count(IntPredicate predicate)
int
UnmodifiableIntStack. count(IntPredicate predicate)
int
SynchronizedIntStack. detectIfNone(IntPredicate predicate, int ifNone)
int
UnmodifiableIntStack. detectIfNone(IntPredicate predicate, int ifNone)
boolean
SynchronizedIntStack. noneSatisfy(IntPredicate predicate)
boolean
UnmodifiableIntStack. noneSatisfy(IntPredicate predicate)
MutableIntStack
IntArrayStack. reject(IntPredicate predicate)
MutableIntStack
SynchronizedIntStack. reject(IntPredicate predicate)
MutableIntStack
UnmodifiableIntStack. reject(IntPredicate predicate)
MutableIntStack
IntArrayStack. select(IntPredicate predicate)
MutableIntStack
SynchronizedIntStack. select(IntPredicate predicate)
MutableIntStack
UnmodifiableIntStack. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
AbstractIntStack. allSatisfy(IntPredicate predicate)
boolean
AbstractIntStack. anySatisfy(IntPredicate predicate)
int
AbstractIntStack. count(IntPredicate predicate)
int
AbstractIntStack. detectIfNone(IntPredicate predicate, int ifNone)
boolean
AbstractIntStack. noneSatisfy(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable with parameters of type IntPredicate Modifier and Type Method Description boolean
CodePointAdapter. allSatisfy(IntPredicate predicate)
boolean
CodePointList. allSatisfy(IntPredicate predicate)
boolean
CodePointAdapter. anySatisfy(IntPredicate predicate)
boolean
CodePointList. anySatisfy(IntPredicate predicate)
int
CodePointAdapter. count(IntPredicate predicate)
int
CodePointList. count(IntPredicate predicate)
int
CodePointAdapter. detectIfNone(IntPredicate predicate, int ifNone)
int
CodePointList. detectIfNone(IntPredicate predicate, int ifNone)
boolean
CodePointAdapter. noneSatisfy(IntPredicate predicate)
boolean
CodePointList. noneSatisfy(IntPredicate predicate)
CodePointAdapter
CodePointAdapter. reject(IntPredicate predicate)
CodePointList
CodePointList. reject(IntPredicate predicate)
CodePointAdapter
CodePointAdapter. select(IntPredicate predicate)
CodePointList
CodePointList. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type IntPredicate Modifier and Type Method Description static boolean
IntIterableIterate. allSatisfy(IntIterable iterable, IntPredicate predicate)
static boolean
IntIteratorIterate. allSatisfy(IntIterator iterator, IntPredicate predicate)
static boolean
IntIterableIterate. anySatisfy(IntIterable iterable, IntPredicate predicate)
static boolean
IntIteratorIterate. anySatisfy(IntIterator iterator, IntPredicate predicate)
static int
IntIterableIterate. count(IntIterable iterable, IntPredicate predicate)
static int
IntIteratorIterate. count(IntIterator iterator, IntPredicate predicate)
static int
IntIterableIterate. detectIfNone(IntIterable iterable, IntPredicate predicate, int ifNone)
static int
IntIteratorIterate. detectIfNone(IntIterator iterator, IntPredicate predicate, int ifNone)
static boolean
IntIterableIterate. noneSatisfy(IntIterable iterable, IntPredicate predicate)
static boolean
IntIteratorIterate. noneSatisfy(IntIterator iterator, IntPredicate predicate)
static <R extends MutableIntCollection>
RIntIterableIterate. reject(IntIterable iterable, IntPredicate predicate, R targetCollection)
static <R extends MutableIntCollection>
RIntIteratorIterate. reject(IntIterator iterator, IntPredicate predicate, R targetCollection)
static <R extends MutableIntCollection>
RIntIterableIterate. select(IntIterable iterable, IntPredicate predicate, R targetCollection)
static <R extends MutableIntCollection>
RIntIteratorIterate. select(IntIterator iterator, IntPredicate predicate, R targetCollection)
-
Uses of IntPredicate in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type IntPredicate Modifier and Type Method Description static <V> LazyIterable<V>
LazyIntIterate. collectIf(IntIterable iterable, IntPredicate predicate, IntToObjectFunction<? extends V> function)
Creates a deferred filtering and transforming int iterable for the specified int iterable.static LazyIntIterable
LazyIntIterate. select(IntIterable iterable, IntPredicate predicate)
Creates a deferred filtering int iterable for the specified int iterable.