Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.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.
|
| org.eclipse.collections.impl.bag.mutable.primitive |
This package contains implementations of the mutable primitive bag interfaces.
|
| 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.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.utility.internal.primitive | |
| org.eclipse.collections.impl.utility.primitive |
-
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)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) -
Uses of BooleanPredicate in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type BooleanPredicate Modifier and Type Method Description booleanBooleanHashBag. allSatisfy(BooleanPredicate predicate)booleanBooleanHashBag. anySatisfy(BooleanPredicate predicate)intBooleanHashBag. count(BooleanPredicate predicate)booleanBooleanHashBag. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanBooleanHashBag. noneSatisfy(BooleanPredicate predicate)MutableBooleanBagBooleanHashBag. reject(BooleanPredicate predicate)MutableBooleanBagSynchronizedBooleanBag. reject(BooleanPredicate predicate)MutableBooleanBagUnmodifiableBooleanBag. reject(BooleanPredicate predicate)MutableBooleanBagBooleanHashBag. select(BooleanPredicate predicate)MutableBooleanBagSynchronizedBooleanBag. select(BooleanPredicate predicate)MutableBooleanBagUnmodifiableBooleanBag. select(BooleanPredicate predicate) -
Uses of BooleanPredicate in org.eclipse.collections.impl.block.factory.primitive
Methods in org.eclipse.collections.impl.block.factory.primitive that return BooleanPredicate Modifier and Type Method Description static BooleanPredicateBooleanPredicates. alwaysFalse()static BooleanPredicateBooleanPredicates. alwaysTrue()static BooleanPredicateBooleanPredicates. and(BooleanPredicate one, BooleanPredicate two)static BooleanPredicateBooleanPredicates. equal(boolean expected)static BooleanPredicateBooleanPredicates. isFalse()static BooleanPredicateBooleanPredicates. isTrue()static BooleanPredicateBooleanPredicates. not(boolean expected)static BooleanPredicateBooleanPredicates. not(BooleanPredicate negate)static BooleanPredicateBooleanPredicates. or(BooleanPredicate one, BooleanPredicate two)Methods in org.eclipse.collections.impl.block.factory.primitive with parameters of type BooleanPredicate Modifier and Type Method Description static BooleanPredicateBooleanPredicates. and(BooleanPredicate one, BooleanPredicate two)static BooleanPredicateBooleanPredicates. not(BooleanPredicate negate)static BooleanPredicateBooleanPredicates. or(BooleanPredicate one, BooleanPredicate two) -
Uses of BooleanPredicate in org.eclipse.collections.impl.block.function.primitive
Methods in org.eclipse.collections.impl.block.function.primitive with parameters of type BooleanPredicate Modifier and Type Method Description BooleanCaseFunction<V>BooleanCaseFunction. addCase(BooleanPredicate predicate, BooleanToObjectFunction<? extends V> function) -
Uses of BooleanPredicate in org.eclipse.collections.impl.block.procedure.primitive
Methods in org.eclipse.collections.impl.block.procedure.primitive with parameters of type BooleanPredicate Modifier and Type Method Description BooleanCaseProcedureBooleanCaseProcedure. addCase(BooleanPredicate predicate, BooleanProcedure procedure) -
Uses of BooleanPredicate in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type BooleanPredicate Modifier and Type Method Description booleanAbstractSynchronizedBooleanCollection. allSatisfy(BooleanPredicate predicate)booleanAbstractUnmodifiableBooleanCollection. allSatisfy(BooleanPredicate predicate)booleanAbstractSynchronizedBooleanCollection. anySatisfy(BooleanPredicate predicate)booleanAbstractUnmodifiableBooleanCollection. anySatisfy(BooleanPredicate predicate)intAbstractSynchronizedBooleanCollection. count(BooleanPredicate predicate)intAbstractUnmodifiableBooleanCollection. count(BooleanPredicate predicate)booleanAbstractSynchronizedBooleanCollection. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanAbstractUnmodifiableBooleanCollection. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanAbstractSynchronizedBooleanCollection. noneSatisfy(BooleanPredicate predicate)booleanAbstractUnmodifiableBooleanCollection. noneSatisfy(BooleanPredicate predicate)MutableBooleanCollectionAbstractSynchronizedBooleanCollection. reject(BooleanPredicate predicate)MutableBooleanCollectionAbstractUnmodifiableBooleanCollection. reject(BooleanPredicate predicate)booleanAbstractSynchronizedBooleanCollection. removeIf(BooleanPredicate predicate)booleanAbstractUnmodifiableBooleanCollection. removeIf(BooleanPredicate predicate)MutableBooleanCollectionAbstractSynchronizedBooleanCollection. select(BooleanPredicate predicate)MutableBooleanCollectionAbstractUnmodifiableBooleanCollection. select(BooleanPredicate predicate) -
Uses of BooleanPredicate in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type BooleanPredicate Modifier and Type Method Description booleanAbstractLazyBooleanIterable. allSatisfy(BooleanPredicate predicate)booleanCollectBooleanIterable. allSatisfy(BooleanPredicate predicate)booleanLazyBooleanIterableAdapter. allSatisfy(BooleanPredicate predicate)booleanSelectBooleanIterable. allSatisfy(BooleanPredicate predicate)booleanTapBooleanIterable. allSatisfy(BooleanPredicate predicate)booleanAbstractLazyBooleanIterable. anySatisfy(BooleanPredicate predicate)booleanCollectBooleanIterable. anySatisfy(BooleanPredicate predicate)booleanLazyBooleanIterableAdapter. anySatisfy(BooleanPredicate predicate)booleanSelectBooleanIterable. anySatisfy(BooleanPredicate predicate)booleanTapBooleanIterable. anySatisfy(BooleanPredicate predicate)intAbstractLazyBooleanIterable. count(BooleanPredicate predicate)intCollectBooleanIterable. count(BooleanPredicate predicate)intLazyBooleanIterableAdapter. count(BooleanPredicate predicate)intSelectBooleanIterable. count(BooleanPredicate predicate)booleanAbstractLazyBooleanIterable. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanLazyBooleanIterableAdapter. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanTapBooleanIterable. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanAbstractLazyBooleanIterable. noneSatisfy(BooleanPredicate predicate)booleanCollectBooleanIterable. noneSatisfy(BooleanPredicate predicate)booleanLazyBooleanIterableAdapter. noneSatisfy(BooleanPredicate predicate)booleanSelectBooleanIterable. noneSatisfy(BooleanPredicate predicate)booleanTapBooleanIterable. noneSatisfy(BooleanPredicate predicate)LazyBooleanIterableAbstractLazyBooleanIterable. reject(BooleanPredicate predicate)LazyBooleanIterableAbstractLazyBooleanIterable. select(BooleanPredicate predicate)Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type BooleanPredicate Constructor Description SelectBooleanIterable(BooleanIterable delegate, BooleanPredicate predicate) -
Uses of BooleanPredicate in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type BooleanPredicate Modifier and Type Method Description booleanBooleanArrayList. allSatisfy(BooleanPredicate predicate)booleanBooleanArrayList. anySatisfy(BooleanPredicate predicate)intBooleanArrayList. count(BooleanPredicate predicate)booleanBooleanArrayList. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanBooleanArrayList. noneSatisfy(BooleanPredicate predicate)BooleanArrayListBooleanArrayList. reject(BooleanPredicate predicate)MutableBooleanListSynchronizedBooleanList. reject(BooleanPredicate predicate)MutableBooleanListUnmodifiableBooleanList. reject(BooleanPredicate predicate)booleanBooleanArrayList. removeIf(BooleanPredicate predicate)BooleanArrayListBooleanArrayList. select(BooleanPredicate predicate)MutableBooleanListSynchronizedBooleanList. select(BooleanPredicate predicate)MutableBooleanListUnmodifiableBooleanList. select(BooleanPredicate predicate) -
Uses of BooleanPredicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type BooleanPredicate Modifier and Type Method Description booleanAbstractMutableBooleanValuesMap. allSatisfy(BooleanPredicate predicate)booleanObjectBooleanHashMap. allSatisfy(BooleanPredicate predicate)booleanObjectBooleanHashMapWithHashingStrategy. allSatisfy(BooleanPredicate predicate)booleanSynchronizedByteBooleanMap. allSatisfy(BooleanPredicate predicate)booleanSynchronizedCharBooleanMap. allSatisfy(BooleanPredicate predicate)booleanSynchronizedDoubleBooleanMap. allSatisfy(BooleanPredicate predicate)booleanSynchronizedFloatBooleanMap. allSatisfy(BooleanPredicate predicate)booleanSynchronizedIntBooleanMap. allSatisfy(BooleanPredicate predicate)booleanSynchronizedLongBooleanMap. allSatisfy(BooleanPredicate predicate)booleanSynchronizedObjectBooleanMap. allSatisfy(BooleanPredicate predicate)booleanSynchronizedShortBooleanMap. allSatisfy(BooleanPredicate predicate)booleanUnmodifiableByteBooleanMap. allSatisfy(BooleanPredicate predicate)booleanUnmodifiableCharBooleanMap. allSatisfy(BooleanPredicate predicate)booleanUnmodifiableDoubleBooleanMap. allSatisfy(BooleanPredicate predicate)booleanUnmodifiableFloatBooleanMap. allSatisfy(BooleanPredicate predicate)booleanUnmodifiableIntBooleanMap. allSatisfy(BooleanPredicate predicate)booleanUnmodifiableLongBooleanMap. allSatisfy(BooleanPredicate predicate)booleanUnmodifiableObjectBooleanMap. allSatisfy(BooleanPredicate predicate)booleanUnmodifiableShortBooleanMap. allSatisfy(BooleanPredicate predicate)booleanAbstractMutableBooleanValuesMap. anySatisfy(BooleanPredicate predicate)booleanObjectBooleanHashMap. anySatisfy(BooleanPredicate predicate)booleanObjectBooleanHashMapWithHashingStrategy. anySatisfy(BooleanPredicate predicate)booleanSynchronizedByteBooleanMap. anySatisfy(BooleanPredicate predicate)booleanSynchronizedCharBooleanMap. anySatisfy(BooleanPredicate predicate)booleanSynchronizedDoubleBooleanMap. anySatisfy(BooleanPredicate predicate)booleanSynchronizedFloatBooleanMap. anySatisfy(BooleanPredicate predicate)booleanSynchronizedIntBooleanMap. anySatisfy(BooleanPredicate predicate)booleanSynchronizedLongBooleanMap. anySatisfy(BooleanPredicate predicate)booleanSynchronizedObjectBooleanMap. anySatisfy(BooleanPredicate predicate)booleanSynchronizedShortBooleanMap. anySatisfy(BooleanPredicate predicate)booleanUnmodifiableByteBooleanMap. anySatisfy(BooleanPredicate predicate)booleanUnmodifiableCharBooleanMap. anySatisfy(BooleanPredicate predicate)booleanUnmodifiableDoubleBooleanMap. anySatisfy(BooleanPredicate predicate)booleanUnmodifiableFloatBooleanMap. anySatisfy(BooleanPredicate predicate)booleanUnmodifiableIntBooleanMap. anySatisfy(BooleanPredicate predicate)booleanUnmodifiableLongBooleanMap. anySatisfy(BooleanPredicate predicate)booleanUnmodifiableObjectBooleanMap. anySatisfy(BooleanPredicate predicate)booleanUnmodifiableShortBooleanMap. anySatisfy(BooleanPredicate predicate)intAbstractMutableBooleanValuesMap. count(BooleanPredicate predicate)intObjectBooleanHashMap. count(BooleanPredicate predicate)intObjectBooleanHashMapWithHashingStrategy. count(BooleanPredicate predicate)intSynchronizedByteBooleanMap. count(BooleanPredicate predicate)intSynchronizedCharBooleanMap. count(BooleanPredicate predicate)intSynchronizedDoubleBooleanMap. count(BooleanPredicate predicate)intSynchronizedFloatBooleanMap. count(BooleanPredicate predicate)intSynchronizedIntBooleanMap. count(BooleanPredicate predicate)intSynchronizedLongBooleanMap. count(BooleanPredicate predicate)intSynchronizedObjectBooleanMap. count(BooleanPredicate predicate)intSynchronizedShortBooleanMap. count(BooleanPredicate predicate)intUnmodifiableByteBooleanMap. count(BooleanPredicate predicate)intUnmodifiableCharBooleanMap. count(BooleanPredicate predicate)intUnmodifiableDoubleBooleanMap. count(BooleanPredicate predicate)intUnmodifiableFloatBooleanMap. count(BooleanPredicate predicate)intUnmodifiableIntBooleanMap. count(BooleanPredicate predicate)intUnmodifiableLongBooleanMap. count(BooleanPredicate predicate)intUnmodifiableObjectBooleanMap. count(BooleanPredicate predicate)intUnmodifiableShortBooleanMap. count(BooleanPredicate predicate)booleanAbstractMutableBooleanValuesMap. detectIfNone(BooleanPredicate predicate, boolean value)booleanObjectBooleanHashMap. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanObjectBooleanHashMapWithHashingStrategy. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanSynchronizedByteBooleanMap. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanSynchronizedCharBooleanMap. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanSynchronizedDoubleBooleanMap. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanSynchronizedFloatBooleanMap. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanSynchronizedIntBooleanMap. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanSynchronizedLongBooleanMap. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanSynchronizedObjectBooleanMap. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanSynchronizedShortBooleanMap. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanUnmodifiableByteBooleanMap. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanUnmodifiableCharBooleanMap. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanUnmodifiableDoubleBooleanMap. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanUnmodifiableFloatBooleanMap. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanUnmodifiableIntBooleanMap. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanUnmodifiableLongBooleanMap. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanUnmodifiableObjectBooleanMap. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanUnmodifiableShortBooleanMap. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanAbstractMutableBooleanValuesMap. noneSatisfy(BooleanPredicate predicate)booleanObjectBooleanHashMap. noneSatisfy(BooleanPredicate predicate)booleanObjectBooleanHashMapWithHashingStrategy. noneSatisfy(BooleanPredicate predicate)booleanSynchronizedByteBooleanMap. noneSatisfy(BooleanPredicate predicate)booleanSynchronizedCharBooleanMap. noneSatisfy(BooleanPredicate predicate)booleanSynchronizedDoubleBooleanMap. noneSatisfy(BooleanPredicate predicate)booleanSynchronizedFloatBooleanMap. noneSatisfy(BooleanPredicate predicate)booleanSynchronizedIntBooleanMap. noneSatisfy(BooleanPredicate predicate)booleanSynchronizedLongBooleanMap. noneSatisfy(BooleanPredicate predicate)booleanSynchronizedObjectBooleanMap. noneSatisfy(BooleanPredicate predicate)booleanSynchronizedShortBooleanMap. noneSatisfy(BooleanPredicate predicate)booleanUnmodifiableByteBooleanMap. noneSatisfy(BooleanPredicate predicate)booleanUnmodifiableCharBooleanMap. noneSatisfy(BooleanPredicate predicate)booleanUnmodifiableDoubleBooleanMap. noneSatisfy(BooleanPredicate predicate)booleanUnmodifiableFloatBooleanMap. noneSatisfy(BooleanPredicate predicate)booleanUnmodifiableIntBooleanMap. noneSatisfy(BooleanPredicate predicate)booleanUnmodifiableLongBooleanMap. noneSatisfy(BooleanPredicate predicate)booleanUnmodifiableObjectBooleanMap. noneSatisfy(BooleanPredicate predicate)booleanUnmodifiableShortBooleanMap. noneSatisfy(BooleanPredicate predicate)MutableBooleanBagAbstractMutableBooleanValuesMap. reject(BooleanPredicate predicate)MutableBooleanCollectionObjectBooleanHashMap. reject(BooleanPredicate predicate)MutableBooleanCollectionObjectBooleanHashMapWithHashingStrategy. reject(BooleanPredicate predicate)MutableBooleanBagSynchronizedByteBooleanMap. reject(BooleanPredicate predicate)MutableBooleanBagSynchronizedCharBooleanMap. reject(BooleanPredicate predicate)MutableBooleanBagSynchronizedDoubleBooleanMap. reject(BooleanPredicate predicate)MutableBooleanBagSynchronizedFloatBooleanMap. reject(BooleanPredicate predicate)MutableBooleanBagSynchronizedIntBooleanMap. reject(BooleanPredicate predicate)MutableBooleanBagSynchronizedLongBooleanMap. reject(BooleanPredicate predicate)MutableBooleanCollectionSynchronizedObjectBooleanMap. reject(BooleanPredicate predicate)MutableBooleanBagSynchronizedShortBooleanMap. reject(BooleanPredicate predicate)MutableBooleanBagUnmodifiableByteBooleanMap. reject(BooleanPredicate predicate)MutableBooleanBagUnmodifiableCharBooleanMap. reject(BooleanPredicate predicate)MutableBooleanBagUnmodifiableDoubleBooleanMap. reject(BooleanPredicate predicate)MutableBooleanBagUnmodifiableFloatBooleanMap. reject(BooleanPredicate predicate)MutableBooleanBagUnmodifiableIntBooleanMap. reject(BooleanPredicate predicate)MutableBooleanBagUnmodifiableLongBooleanMap. reject(BooleanPredicate predicate)MutableBooleanCollectionUnmodifiableObjectBooleanMap. reject(BooleanPredicate predicate)MutableBooleanBagUnmodifiableShortBooleanMap. reject(BooleanPredicate predicate)MutableBooleanBagAbstractMutableBooleanValuesMap. select(BooleanPredicate predicate)MutableBooleanCollectionObjectBooleanHashMap. select(BooleanPredicate predicate)MutableBooleanCollectionObjectBooleanHashMapWithHashingStrategy. select(BooleanPredicate predicate)MutableBooleanBagSynchronizedByteBooleanMap. select(BooleanPredicate predicate)MutableBooleanBagSynchronizedCharBooleanMap. select(BooleanPredicate predicate)MutableBooleanBagSynchronizedDoubleBooleanMap. select(BooleanPredicate predicate)MutableBooleanBagSynchronizedFloatBooleanMap. select(BooleanPredicate predicate)MutableBooleanBagSynchronizedIntBooleanMap. select(BooleanPredicate predicate)MutableBooleanBagSynchronizedLongBooleanMap. select(BooleanPredicate predicate)MutableBooleanCollectionSynchronizedObjectBooleanMap. select(BooleanPredicate predicate)MutableBooleanBagSynchronizedShortBooleanMap. select(BooleanPredicate predicate)MutableBooleanBagUnmodifiableByteBooleanMap. select(BooleanPredicate predicate)MutableBooleanBagUnmodifiableCharBooleanMap. select(BooleanPredicate predicate)MutableBooleanBagUnmodifiableDoubleBooleanMap. select(BooleanPredicate predicate)MutableBooleanBagUnmodifiableFloatBooleanMap. select(BooleanPredicate predicate)MutableBooleanBagUnmodifiableIntBooleanMap. select(BooleanPredicate predicate)MutableBooleanBagUnmodifiableLongBooleanMap. select(BooleanPredicate predicate)MutableBooleanCollectionUnmodifiableObjectBooleanMap. select(BooleanPredicate predicate)MutableBooleanBagUnmodifiableShortBooleanMap. select(BooleanPredicate predicate) -
Uses of BooleanPredicate in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type BooleanPredicate Modifier and Type Method Description booleanSynchronizedBooleanIterable. allSatisfy(BooleanPredicate predicate)booleanSynchronizedBooleanIterable. anySatisfy(BooleanPredicate predicate)intSynchronizedBooleanIterable. count(BooleanPredicate predicate)booleanSynchronizedBooleanIterable. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanSynchronizedBooleanIterable. noneSatisfy(BooleanPredicate predicate)BooleanIterableSynchronizedBooleanIterable. reject(BooleanPredicate predicate)BooleanIterableSynchronizedBooleanIterable. select(BooleanPredicate predicate) -
Uses of BooleanPredicate in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type BooleanPredicate Modifier and Type Method Description booleanBooleanHashSet. allSatisfy(BooleanPredicate predicate)booleanBooleanHashSet. anySatisfy(BooleanPredicate predicate)intBooleanHashSet. count(BooleanPredicate predicate)booleanBooleanHashSet. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanBooleanHashSet. noneSatisfy(BooleanPredicate predicate)BooleanHashSetBooleanHashSet. reject(BooleanPredicate predicate)MutableBooleanSetSynchronizedBooleanSet. reject(BooleanPredicate predicate)MutableBooleanSetUnmodifiableBooleanSet. reject(BooleanPredicate predicate)BooleanHashSetBooleanHashSet. select(BooleanPredicate predicate)MutableBooleanSetSynchronizedBooleanSet. select(BooleanPredicate predicate)MutableBooleanSetUnmodifiableBooleanSet. select(BooleanPredicate predicate) -
Uses of BooleanPredicate in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type BooleanPredicate Modifier and Type Method Description booleanSynchronizedBooleanStack. allSatisfy(BooleanPredicate predicate)booleanUnmodifiableBooleanStack. allSatisfy(BooleanPredicate predicate)booleanSynchronizedBooleanStack. anySatisfy(BooleanPredicate predicate)booleanUnmodifiableBooleanStack. anySatisfy(BooleanPredicate predicate)intSynchronizedBooleanStack. count(BooleanPredicate predicate)intUnmodifiableBooleanStack. count(BooleanPredicate predicate)booleanSynchronizedBooleanStack. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanUnmodifiableBooleanStack. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanSynchronizedBooleanStack. noneSatisfy(BooleanPredicate predicate)booleanUnmodifiableBooleanStack. noneSatisfy(BooleanPredicate predicate)MutableBooleanStackBooleanArrayStack. reject(BooleanPredicate predicate)MutableBooleanStackSynchronizedBooleanStack. reject(BooleanPredicate predicate)MutableBooleanStackUnmodifiableBooleanStack. reject(BooleanPredicate predicate)MutableBooleanStackBooleanArrayStack. select(BooleanPredicate predicate)MutableBooleanStackSynchronizedBooleanStack. select(BooleanPredicate predicate)MutableBooleanStackUnmodifiableBooleanStack. select(BooleanPredicate predicate) -
Uses of BooleanPredicate in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive with parameters of type BooleanPredicate Modifier and Type Method Description booleanAbstractBooleanStack. allSatisfy(BooleanPredicate predicate)booleanAbstractBooleanStack. anySatisfy(BooleanPredicate predicate)intAbstractBooleanStack. count(BooleanPredicate predicate)booleanAbstractBooleanStack. detectIfNone(BooleanPredicate predicate, boolean ifNone)booleanAbstractBooleanStack. noneSatisfy(BooleanPredicate predicate) -
Uses of BooleanPredicate in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type BooleanPredicate Modifier and Type Method Description static booleanBooleanIterableIterate. allSatisfy(BooleanIterable iterable, BooleanPredicate predicate)static booleanBooleanIteratorIterate. allSatisfy(BooleanIterator iterator, BooleanPredicate predicate)static booleanBooleanIterableIterate. anySatisfy(BooleanIterable iterable, BooleanPredicate predicate)static booleanBooleanIteratorIterate. anySatisfy(BooleanIterator iterator, BooleanPredicate predicate)static intBooleanIterableIterate. count(BooleanIterable iterable, BooleanPredicate predicate)static intBooleanIteratorIterate. count(BooleanIterator iterator, BooleanPredicate predicate)static booleanBooleanIterableIterate. detectIfNone(BooleanIterable iterable, BooleanPredicate predicate, boolean ifNone)static booleanBooleanIteratorIterate. detectIfNone(BooleanIterator iterator, BooleanPredicate predicate, boolean ifNone)static booleanBooleanIterableIterate. noneSatisfy(BooleanIterable iterable, BooleanPredicate predicate)static booleanBooleanIteratorIterate. noneSatisfy(BooleanIterator iterator, BooleanPredicate predicate)static <R extends MutableBooleanCollection>
RBooleanIterableIterate. reject(BooleanIterable iterable, BooleanPredicate predicate, R targetCollection)static <R extends MutableBooleanCollection>
RBooleanIteratorIterate. reject(BooleanIterator iterator, BooleanPredicate predicate, R targetCollection)static <R extends MutableBooleanCollection>
RBooleanIterableIterate. select(BooleanIterable iterable, BooleanPredicate predicate, R targetCollection)static <R extends MutableBooleanCollection>
RBooleanIteratorIterate. select(BooleanIterator iterator, BooleanPredicate predicate, R targetCollection) -
Uses of BooleanPredicate in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type BooleanPredicate Modifier and Type Method Description static <V> LazyIterable<V>LazyBooleanIterate. collectIf(BooleanIterable iterable, BooleanPredicate predicate, BooleanToObjectFunction<? extends V> function)Creates a deferred filtering and transforming boolean iterable for the specified boolean iterable.static LazyBooleanIterableLazyBooleanIterate. select(BooleanIterable iterable, BooleanPredicate predicate)Creates a deferred filtering boolean iterable for the specified boolean iterable.