Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate
Packages that use BooleanPredicate
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains mutable and immutable primitive collection API.
This package contains mutable and immutable primitive list API.
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 API for mutable and immutable primitive sets.
This package contains mutable and immutable primitive stack API.
-
Uses of BooleanPredicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type BooleanPredicateModifier and TypeMethodDescriptionbooleanBooleanIterable.allSatisfy(BooleanPredicate predicate) Returns true if all of the elements in the BooleanIterable return true for the specified predicate, otherwise returns false.booleanBooleanIterable.anySatisfy(BooleanPredicate predicate) Returns true if any of the elements in the BooleanIterable return true for the specified predicate, otherwise returns false.intBooleanIterable.count(BooleanPredicate predicate) Returns a count of the number of elements in the BooleanIterable that return true for the specified predicate.booleanBooleanIterable.detectIfNone(BooleanPredicate predicate, boolean ifNone) default booleanBooleanIterable.noneSatisfy(BooleanPredicate predicate) Returns true if none of the elements in the BooleanIterable return true for the specified predicate, otherwise returns false.BooleanIterable.reject(BooleanPredicate predicate) Returns a new BooleanIterable with all of the elements in the BooleanIterable that return false for the specified predicate.default <R extends MutableBooleanCollection>
RBooleanIterable.reject(BooleanPredicate predicate, R target) Same asBooleanIterable.reject(BooleanPredicate), only the results are added to the target MutableBooleanCollection.LazyBooleanIterable.reject(BooleanPredicate predicate) BooleanIterable.select(BooleanPredicate predicate) Returns a new BooleanIterable with all of the elements in the BooleanIterable that return true for the specified predicate.default <R extends MutableBooleanCollection>
RBooleanIterable.select(BooleanPredicate predicate, R target) Same asBooleanIterable.select(BooleanPredicate), only the results are added to the target MutableBooleanCollection.LazyBooleanIterable.select(BooleanPredicate predicate) -
Uses of BooleanPredicate in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type BooleanPredicateModifier and TypeMethodDescriptionBooleanBag.reject(BooleanPredicate predicate) ImmutableBooleanBag.reject(BooleanPredicate predicate) MutableBooleanBag.reject(BooleanPredicate predicate) BooleanBag.select(BooleanPredicate predicate) ImmutableBooleanBag.select(BooleanPredicate predicate) MutableBooleanBag.select(BooleanPredicate predicate) -
Uses of BooleanPredicate in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type BooleanPredicateModifier and TypeMethodDescriptionImmutableBooleanCollection.reject(BooleanPredicate predicate) MutableBooleanCollection.reject(BooleanPredicate predicate) default booleanMutableBooleanCollection.removeIf(BooleanPredicate predicate) ImmutableBooleanCollection.select(BooleanPredicate predicate) MutableBooleanCollection.select(BooleanPredicate predicate) -
Uses of BooleanPredicate in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type BooleanPredicateModifier and TypeMethodDescriptionBooleanList.reject(BooleanPredicate predicate) ImmutableBooleanList.reject(BooleanPredicate predicate) MutableBooleanList.reject(BooleanPredicate predicate) BooleanList.select(BooleanPredicate predicate) ImmutableBooleanList.select(BooleanPredicate predicate) MutableBooleanList.select(BooleanPredicate predicate) -
Uses of BooleanPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type BooleanPredicateModifier and TypeMethodDescriptionBooleanValuesMap.reject(BooleanPredicate predicate) ImmutableByteBooleanMap.reject(BooleanPredicate predicate) ImmutableCharBooleanMap.reject(BooleanPredicate predicate) ImmutableDoubleBooleanMap.reject(BooleanPredicate predicate) ImmutableFloatBooleanMap.reject(BooleanPredicate predicate) ImmutableIntBooleanMap.reject(BooleanPredicate predicate) ImmutableLongBooleanMap.reject(BooleanPredicate predicate) ImmutableObjectBooleanMap.reject(BooleanPredicate predicate) ImmutableShortBooleanMap.reject(BooleanPredicate predicate) MutableBooleanValuesMap.reject(BooleanPredicate predicate) MutableObjectBooleanMap.reject(BooleanPredicate predicate) BooleanValuesMap.select(BooleanPredicate predicate) ImmutableByteBooleanMap.select(BooleanPredicate predicate) ImmutableCharBooleanMap.select(BooleanPredicate predicate) ImmutableDoubleBooleanMap.select(BooleanPredicate predicate) ImmutableFloatBooleanMap.select(BooleanPredicate predicate) ImmutableIntBooleanMap.select(BooleanPredicate predicate) ImmutableLongBooleanMap.select(BooleanPredicate predicate) ImmutableObjectBooleanMap.select(BooleanPredicate predicate) ImmutableShortBooleanMap.select(BooleanPredicate predicate) MutableBooleanValuesMap.select(BooleanPredicate predicate) MutableObjectBooleanMap.select(BooleanPredicate predicate) -
Uses of BooleanPredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type BooleanPredicateModifier and TypeMethodDescriptionOrderedBooleanIterable.reject(BooleanPredicate predicate) ReversibleBooleanIterable.reject(BooleanPredicate predicate) OrderedBooleanIterable.select(BooleanPredicate predicate) ReversibleBooleanIterable.select(BooleanPredicate predicate) -
Uses of BooleanPredicate in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type BooleanPredicateModifier and TypeMethodDescriptionBooleanSet.reject(BooleanPredicate predicate) ImmutableBooleanSet.reject(BooleanPredicate predicate) MutableBooleanSet.reject(BooleanPredicate predicate) BooleanSet.select(BooleanPredicate predicate) ImmutableBooleanSet.select(BooleanPredicate predicate) MutableBooleanSet.select(BooleanPredicate predicate) -
Uses of BooleanPredicate in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type BooleanPredicateModifier and TypeMethodDescriptionBooleanStack.reject(BooleanPredicate predicate) ImmutableBooleanStack.reject(BooleanPredicate predicate) MutableBooleanStack.reject(BooleanPredicate predicate) BooleanStack.select(BooleanPredicate predicate) ImmutableBooleanStack.select(BooleanPredicate predicate) MutableBooleanStack.select(BooleanPredicate predicate)