Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate
-
Packages that use BooleanPredicate Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.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. -
-
Uses of BooleanPredicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type BooleanPredicate Modifier and Type Method Description booleanBooleanIterable. 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.BooleanIterableBooleanIterable. 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.LazyBooleanIterableLazyBooleanIterable. reject(BooleanPredicate predicate)BooleanIterableBooleanIterable. 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.LazyBooleanIterableLazyBooleanIterable. 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 BooleanPredicate Modifier and Type Method Description BooleanBagBooleanBag. reject(BooleanPredicate predicate)ImmutableBooleanBagImmutableBooleanBag. reject(BooleanPredicate predicate)MutableBooleanBagMutableBooleanBag. reject(BooleanPredicate predicate)BooleanBagBooleanBag. select(BooleanPredicate predicate)ImmutableBooleanBagImmutableBooleanBag. select(BooleanPredicate predicate)MutableBooleanBagMutableBooleanBag. 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 BooleanPredicate Modifier and Type Method Description ImmutableBooleanCollectionImmutableBooleanCollection. reject(BooleanPredicate predicate)MutableBooleanCollectionMutableBooleanCollection. reject(BooleanPredicate predicate)default booleanMutableBooleanCollection. removeIf(BooleanPredicate predicate)ImmutableBooleanCollectionImmutableBooleanCollection. select(BooleanPredicate predicate)MutableBooleanCollectionMutableBooleanCollection. 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 BooleanPredicate Modifier and Type Method Description BooleanListBooleanList. reject(BooleanPredicate predicate)ImmutableBooleanListImmutableBooleanList. reject(BooleanPredicate predicate)MutableBooleanListMutableBooleanList. reject(BooleanPredicate predicate)BooleanListBooleanList. select(BooleanPredicate predicate)ImmutableBooleanListImmutableBooleanList. select(BooleanPredicate predicate)MutableBooleanListMutableBooleanList. select(BooleanPredicate predicate) -
Uses of BooleanPredicate in org.eclipse.collections.api.map.primitive
-
Uses of BooleanPredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type BooleanPredicate Modifier and Type Method Description OrderedBooleanIterableOrderedBooleanIterable. reject(BooleanPredicate predicate)ReversibleBooleanIterableReversibleBooleanIterable. reject(BooleanPredicate predicate)OrderedBooleanIterableOrderedBooleanIterable. select(BooleanPredicate predicate)ReversibleBooleanIterableReversibleBooleanIterable. 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 BooleanPredicate Modifier and Type Method Description BooleanSetBooleanSet. reject(BooleanPredicate predicate)ImmutableBooleanSetImmutableBooleanSet. reject(BooleanPredicate predicate)MutableBooleanSetMutableBooleanSet. reject(BooleanPredicate predicate)BooleanSetBooleanSet. select(BooleanPredicate predicate)ImmutableBooleanSetImmutableBooleanSet. select(BooleanPredicate predicate)MutableBooleanSetMutableBooleanSet. 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 BooleanPredicate Modifier and Type Method Description BooleanStackBooleanStack. reject(BooleanPredicate predicate)ImmutableBooleanStackImmutableBooleanStack. reject(BooleanPredicate predicate)MutableBooleanStackMutableBooleanStack. reject(BooleanPredicate predicate)BooleanStackBooleanStack. select(BooleanPredicate predicate)ImmutableBooleanStackImmutableBooleanStack. select(BooleanPredicate predicate)MutableBooleanStackMutableBooleanStack. select(BooleanPredicate predicate)
-