Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.BytePredicate
Packages that use BytePredicate
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.
This package contains implementations of the mutable primitive bag interfaces.
This package contains factory implementations for primitive functions, primitive predicates, primitive procedures and primitive comparators.
This package contains implementations of primitive functions.
This package contains implementations of primitive procedures.
This package contains implementations of the mutable primitive collection interfaces.
This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive set interfaces.
This package contains implementations of the mutable primitive stack interfaces.
-
Uses of BytePredicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type BytePredicateModifier and TypeMethodDescriptionbooleanByteIterable.allSatisfy(BytePredicate predicate) Returns true if all of the elements in the ByteIterable return true for the specified predicate, otherwise returns false.booleanByteIterable.anySatisfy(BytePredicate predicate) Returns true if any of the elements in the ByteIterable return true for the specified predicate, otherwise returns false.intByteIterable.count(BytePredicate predicate) Returns a count of the number of elements in the ByteIterable that return true for the specified predicate.byteByteIterable.detectIfNone(BytePredicate predicate, byte ifNone) default booleanByteIterable.noneSatisfy(BytePredicate predicate) Returns true if none of the elements in the ByteIterable return true for the specified predicate, otherwise returns false.ByteIterable.reject(BytePredicate predicate) Returns a new ByteIterable with all of the elements in the ByteIterable that return false for the specified predicate.default <R extends MutableByteCollection>
RByteIterable.reject(BytePredicate predicate, R target) Same asByteIterable.reject(BytePredicate), only the results are added to the target MutableByteCollection.LazyByteIterable.reject(BytePredicate predicate) ByteIterable.select(BytePredicate predicate) Returns a new ByteIterable with all of the elements in the ByteIterable that return true for the specified predicate.default <R extends MutableByteCollection>
RByteIterable.select(BytePredicate predicate, R target) Same asByteIterable.select(BytePredicate), only the results are added to the target MutableByteCollection.LazyByteIterable.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionByteBag.reject(BytePredicate predicate) ImmutableByteBag.reject(BytePredicate predicate) MutableByteBag.reject(BytePredicate predicate) ByteBag.select(BytePredicate predicate) ImmutableByteBag.select(BytePredicate predicate) MutableByteBag.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionImmutableByteCollection.reject(BytePredicate predicate) MutableByteCollection.reject(BytePredicate predicate) default booleanMutableByteCollection.removeIf(BytePredicate predicate) ImmutableByteCollection.select(BytePredicate predicate) MutableByteCollection.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionByteList.reject(BytePredicate predicate) ImmutableByteList.reject(BytePredicate predicate) MutableByteList.reject(BytePredicate predicate) ByteList.select(BytePredicate predicate) ImmutableByteList.select(BytePredicate predicate) MutableByteList.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionByteValuesMap.reject(BytePredicate predicate) ImmutableByteByteMap.reject(BytePredicate predicate) ImmutableCharByteMap.reject(BytePredicate predicate) ImmutableDoubleByteMap.reject(BytePredicate predicate) ImmutableFloatByteMap.reject(BytePredicate predicate) ImmutableIntByteMap.reject(BytePredicate predicate) ImmutableLongByteMap.reject(BytePredicate predicate) ImmutableObjectByteMap.reject(BytePredicate predicate) ImmutableShortByteMap.reject(BytePredicate predicate) MutableByteValuesMap.reject(BytePredicate predicate) MutableObjectByteMap.reject(BytePredicate predicate) ByteValuesMap.select(BytePredicate predicate) ImmutableByteByteMap.select(BytePredicate predicate) ImmutableCharByteMap.select(BytePredicate predicate) ImmutableDoubleByteMap.select(BytePredicate predicate) ImmutableFloatByteMap.select(BytePredicate predicate) ImmutableIntByteMap.select(BytePredicate predicate) ImmutableLongByteMap.select(BytePredicate predicate) ImmutableObjectByteMap.select(BytePredicate predicate) ImmutableShortByteMap.select(BytePredicate predicate) MutableByteValuesMap.select(BytePredicate predicate) MutableObjectByteMap.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionOrderedByteIterable.reject(BytePredicate predicate) ReversibleByteIterable.reject(BytePredicate predicate) OrderedByteIterable.select(BytePredicate predicate) ReversibleByteIterable.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionByteSet.reject(BytePredicate predicate) ImmutableByteSet.reject(BytePredicate predicate) MutableByteSet.reject(BytePredicate predicate) ByteSet.select(BytePredicate predicate) ImmutableByteSet.select(BytePredicate predicate) MutableByteSet.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionByteStack.reject(BytePredicate predicate) ImmutableByteStack.reject(BytePredicate predicate) MutableByteStack.reject(BytePredicate predicate) ByteStack.select(BytePredicate predicate) ImmutableByteStack.select(BytePredicate predicate) MutableByteStack.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionbooleanByteHashBag.allSatisfy(BytePredicate predicate) booleanByteHashBag.anySatisfy(BytePredicate predicate) intByteHashBag.count(BytePredicate predicate) byteByteHashBag.detectIfNone(BytePredicate predicate, byte ifNone) booleanByteHashBag.noneSatisfy(BytePredicate predicate) ByteHashBag.reject(BytePredicate predicate) SynchronizedByteBag.reject(BytePredicate predicate) UnmodifiableByteBag.reject(BytePredicate predicate) booleanByteHashBag.removeIf(BytePredicate predicate) ByteHashBag.select(BytePredicate predicate) SynchronizedByteBag.select(BytePredicate predicate) UnmodifiableByteBag.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.impl.block.factory.primitive
Methods in org.eclipse.collections.impl.block.factory.primitive that return BytePredicateModifier and TypeMethodDescriptionstatic BytePredicateBytePredicates.alwaysFalse()static BytePredicateBytePredicates.alwaysTrue()static BytePredicateBytePredicates.and(BytePredicate one, BytePredicate two) static BytePredicateBytePredicates.equal(byte expected) static BytePredicateBytePredicates.greaterThan(byte expected) static BytePredicateBytePredicates.isEven()static BytePredicateBytePredicates.isOdd()static BytePredicateBytePredicates.lessThan(byte expected) static BytePredicateBytePredicates.not(BytePredicate negate) static BytePredicateBytePredicates.or(BytePredicate one, BytePredicate two) Methods in org.eclipse.collections.impl.block.factory.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionstatic BytePredicateBytePredicates.and(BytePredicate one, BytePredicate two) static BytePredicateBytePredicates.not(BytePredicate negate) static BytePredicateBytePredicates.or(BytePredicate one, BytePredicate two) -
Uses of BytePredicate in org.eclipse.collections.impl.block.function.primitive
Methods in org.eclipse.collections.impl.block.function.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionByteCaseFunction.addCase(BytePredicate predicate, ByteToObjectFunction<? extends V> function) -
Uses of BytePredicate in org.eclipse.collections.impl.block.procedure.primitive
Methods in org.eclipse.collections.impl.block.procedure.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionByteCaseProcedure.addCase(BytePredicate predicate, ByteProcedure procedure) -
Uses of BytePredicate in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionbooleanAbstractSynchronizedByteCollection.allSatisfy(BytePredicate predicate) booleanAbstractUnmodifiableByteCollection.allSatisfy(BytePredicate predicate) booleanAbstractSynchronizedByteCollection.anySatisfy(BytePredicate predicate) booleanAbstractUnmodifiableByteCollection.anySatisfy(BytePredicate predicate) intAbstractSynchronizedByteCollection.count(BytePredicate predicate) intAbstractUnmodifiableByteCollection.count(BytePredicate predicate) byteAbstractSynchronizedByteCollection.detectIfNone(BytePredicate predicate, byte ifNone) byteAbstractUnmodifiableByteCollection.detectIfNone(BytePredicate predicate, byte ifNone) booleanAbstractSynchronizedByteCollection.noneSatisfy(BytePredicate predicate) booleanAbstractUnmodifiableByteCollection.noneSatisfy(BytePredicate predicate) AbstractSynchronizedByteCollection.reject(BytePredicate predicate) AbstractUnmodifiableByteCollection.reject(BytePredicate predicate) booleanAbstractSynchronizedByteCollection.removeIf(BytePredicate predicate) booleanAbstractUnmodifiableByteCollection.removeIf(BytePredicate predicate) AbstractSynchronizedByteCollection.select(BytePredicate predicate) AbstractUnmodifiableByteCollection.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionbooleanAbstractLazyByteIterable.allSatisfy(BytePredicate predicate) booleanCollectByteIterable.allSatisfy(BytePredicate predicate) booleanLazyByteIterableAdapter.allSatisfy(BytePredicate predicate) booleanSelectByteIterable.allSatisfy(BytePredicate predicate) booleanTapByteIterable.allSatisfy(BytePredicate predicate) booleanAbstractLazyByteIterable.anySatisfy(BytePredicate predicate) booleanCollectByteIterable.anySatisfy(BytePredicate predicate) booleanLazyByteIterableAdapter.anySatisfy(BytePredicate predicate) booleanSelectByteIterable.anySatisfy(BytePredicate predicate) booleanTapByteIterable.anySatisfy(BytePredicate predicate) intAbstractLazyByteIterable.count(BytePredicate predicate) intCollectByteIterable.count(BytePredicate predicate) intLazyByteIterableAdapter.count(BytePredicate predicate) intSelectByteIterable.count(BytePredicate predicate) byteAbstractLazyByteIterable.detectIfNone(BytePredicate predicate, byte ifNone) byteLazyByteIterableAdapter.detectIfNone(BytePredicate predicate, byte ifNone) byteTapByteIterable.detectIfNone(BytePredicate predicate, byte ifNone) booleanAbstractLazyByteIterable.noneSatisfy(BytePredicate predicate) booleanLazyByteIterableAdapter.noneSatisfy(BytePredicate predicate) booleanTapByteIterable.noneSatisfy(BytePredicate predicate) AbstractLazyByteIterable.reject(BytePredicate predicate) AbstractLazyByteIterable.select(BytePredicate predicate) Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type BytePredicate -
Uses of BytePredicate in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionbooleanByteArrayList.allSatisfy(BytePredicate predicate) booleanByteArrayList.anySatisfy(BytePredicate predicate) intByteArrayList.count(BytePredicate predicate) byteByteArrayList.detectIfNone(BytePredicate predicate, byte ifNone) ByteArrayList.reject(BytePredicate predicate) <R extends MutableByteCollection>
RByteArrayList.reject(BytePredicate predicate, R target) SynchronizedByteList.reject(BytePredicate predicate) UnmodifiableByteList.reject(BytePredicate predicate) booleanByteArrayList.removeIf(BytePredicate predicate) ByteArrayList.select(BytePredicate predicate) <R extends MutableByteCollection>
RByteArrayList.select(BytePredicate predicate, R target) SynchronizedByteList.select(BytePredicate predicate) UnmodifiableByteList.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionbooleanAbstractMutableByteKeySet.allSatisfy(BytePredicate predicate) booleanAbstractMutableByteValuesMap.AbstractByteValuesCollection.allSatisfy(BytePredicate predicate) booleanAbstractMutableByteValuesMap.allSatisfy(BytePredicate predicate) booleanObjectByteHashMap.allSatisfy(BytePredicate predicate) booleanObjectByteHashMapWithHashingStrategy.allSatisfy(BytePredicate predicate) booleanSynchronizedByteByteMap.allSatisfy(BytePredicate predicate) booleanSynchronizedCharByteMap.allSatisfy(BytePredicate predicate) booleanSynchronizedDoubleByteMap.allSatisfy(BytePredicate predicate) booleanSynchronizedFloatByteMap.allSatisfy(BytePredicate predicate) booleanSynchronizedIntByteMap.allSatisfy(BytePredicate predicate) booleanSynchronizedLongByteMap.allSatisfy(BytePredicate predicate) booleanSynchronizedObjectByteMap.allSatisfy(BytePredicate predicate) booleanSynchronizedShortByteMap.allSatisfy(BytePredicate predicate) booleanUnmodifiableByteByteMap.allSatisfy(BytePredicate predicate) booleanUnmodifiableCharByteMap.allSatisfy(BytePredicate predicate) booleanUnmodifiableDoubleByteMap.allSatisfy(BytePredicate predicate) booleanUnmodifiableFloatByteMap.allSatisfy(BytePredicate predicate) booleanUnmodifiableIntByteMap.allSatisfy(BytePredicate predicate) booleanUnmodifiableLongByteMap.allSatisfy(BytePredicate predicate) booleanUnmodifiableObjectByteMap.allSatisfy(BytePredicate predicate) booleanUnmodifiableShortByteMap.allSatisfy(BytePredicate predicate) booleanAbstractMutableByteKeySet.anySatisfy(BytePredicate predicate) booleanAbstractMutableByteValuesMap.AbstractByteValuesCollection.anySatisfy(BytePredicate predicate) booleanAbstractMutableByteValuesMap.anySatisfy(BytePredicate predicate) booleanObjectByteHashMap.anySatisfy(BytePredicate predicate) booleanObjectByteHashMapWithHashingStrategy.anySatisfy(BytePredicate predicate) booleanSynchronizedByteByteMap.anySatisfy(BytePredicate predicate) booleanSynchronizedCharByteMap.anySatisfy(BytePredicate predicate) booleanSynchronizedDoubleByteMap.anySatisfy(BytePredicate predicate) booleanSynchronizedFloatByteMap.anySatisfy(BytePredicate predicate) booleanSynchronizedIntByteMap.anySatisfy(BytePredicate predicate) booleanSynchronizedLongByteMap.anySatisfy(BytePredicate predicate) booleanSynchronizedObjectByteMap.anySatisfy(BytePredicate predicate) booleanSynchronizedShortByteMap.anySatisfy(BytePredicate predicate) booleanUnmodifiableByteByteMap.anySatisfy(BytePredicate predicate) booleanUnmodifiableCharByteMap.anySatisfy(BytePredicate predicate) booleanUnmodifiableDoubleByteMap.anySatisfy(BytePredicate predicate) booleanUnmodifiableFloatByteMap.anySatisfy(BytePredicate predicate) booleanUnmodifiableIntByteMap.anySatisfy(BytePredicate predicate) booleanUnmodifiableLongByteMap.anySatisfy(BytePredicate predicate) booleanUnmodifiableObjectByteMap.anySatisfy(BytePredicate predicate) booleanUnmodifiableShortByteMap.anySatisfy(BytePredicate predicate) intAbstractMutableByteKeySet.count(BytePredicate predicate) intAbstractMutableByteValuesMap.AbstractByteValuesCollection.count(BytePredicate predicate) intAbstractMutableByteValuesMap.count(BytePredicate predicate) intObjectByteHashMap.count(BytePredicate predicate) intObjectByteHashMapWithHashingStrategy.count(BytePredicate predicate) intSynchronizedByteByteMap.count(BytePredicate predicate) intSynchronizedCharByteMap.count(BytePredicate predicate) intSynchronizedDoubleByteMap.count(BytePredicate predicate) intSynchronizedFloatByteMap.count(BytePredicate predicate) intSynchronizedIntByteMap.count(BytePredicate predicate) intSynchronizedLongByteMap.count(BytePredicate predicate) intSynchronizedObjectByteMap.count(BytePredicate predicate) intSynchronizedShortByteMap.count(BytePredicate predicate) intUnmodifiableByteByteMap.count(BytePredicate predicate) intUnmodifiableCharByteMap.count(BytePredicate predicate) intUnmodifiableDoubleByteMap.count(BytePredicate predicate) intUnmodifiableFloatByteMap.count(BytePredicate predicate) intUnmodifiableIntByteMap.count(BytePredicate predicate) intUnmodifiableLongByteMap.count(BytePredicate predicate) intUnmodifiableObjectByteMap.count(BytePredicate predicate) intUnmodifiableShortByteMap.count(BytePredicate predicate) byteAbstractMutableByteKeySet.detectIfNone(BytePredicate predicate, byte ifNone) byteAbstractMutableByteValuesMap.AbstractByteValuesCollection.detectIfNone(BytePredicate predicate, byte ifNone) byteAbstractMutableByteValuesMap.detectIfNone(BytePredicate predicate, byte value) byteObjectByteHashMap.detectIfNone(BytePredicate predicate, byte ifNone) byteObjectByteHashMapWithHashingStrategy.detectIfNone(BytePredicate predicate, byte ifNone) byteSynchronizedByteByteMap.detectIfNone(BytePredicate predicate, byte ifNone) byteSynchronizedCharByteMap.detectIfNone(BytePredicate predicate, byte ifNone) byteSynchronizedDoubleByteMap.detectIfNone(BytePredicate predicate, byte ifNone) byteSynchronizedFloatByteMap.detectIfNone(BytePredicate predicate, byte ifNone) byteSynchronizedIntByteMap.detectIfNone(BytePredicate predicate, byte ifNone) byteSynchronizedLongByteMap.detectIfNone(BytePredicate predicate, byte ifNone) byteSynchronizedObjectByteMap.detectIfNone(BytePredicate predicate, byte ifNone) byteSynchronizedShortByteMap.detectIfNone(BytePredicate predicate, byte ifNone) byteUnmodifiableByteByteMap.detectIfNone(BytePredicate predicate, byte ifNone) byteUnmodifiableCharByteMap.detectIfNone(BytePredicate predicate, byte ifNone) byteUnmodifiableDoubleByteMap.detectIfNone(BytePredicate predicate, byte ifNone) byteUnmodifiableFloatByteMap.detectIfNone(BytePredicate predicate, byte ifNone) byteUnmodifiableIntByteMap.detectIfNone(BytePredicate predicate, byte ifNone) byteUnmodifiableLongByteMap.detectIfNone(BytePredicate predicate, byte ifNone) byteUnmodifiableObjectByteMap.detectIfNone(BytePredicate predicate, byte ifNone) byteUnmodifiableShortByteMap.detectIfNone(BytePredicate predicate, byte ifNone) booleanAbstractMutableByteValuesMap.AbstractByteValuesCollection.noneSatisfy(BytePredicate predicate) booleanObjectByteHashMap.noneSatisfy(BytePredicate predicate) booleanObjectByteHashMapWithHashingStrategy.noneSatisfy(BytePredicate predicate) booleanSynchronizedByteByteMap.noneSatisfy(BytePredicate predicate) booleanSynchronizedCharByteMap.noneSatisfy(BytePredicate predicate) booleanSynchronizedDoubleByteMap.noneSatisfy(BytePredicate predicate) booleanSynchronizedFloatByteMap.noneSatisfy(BytePredicate predicate) booleanSynchronizedIntByteMap.noneSatisfy(BytePredicate predicate) booleanSynchronizedLongByteMap.noneSatisfy(BytePredicate predicate) booleanSynchronizedObjectByteMap.noneSatisfy(BytePredicate predicate) booleanSynchronizedShortByteMap.noneSatisfy(BytePredicate predicate) booleanUnmodifiableByteByteMap.noneSatisfy(BytePredicate predicate) booleanUnmodifiableCharByteMap.noneSatisfy(BytePredicate predicate) booleanUnmodifiableDoubleByteMap.noneSatisfy(BytePredicate predicate) booleanUnmodifiableFloatByteMap.noneSatisfy(BytePredicate predicate) booleanUnmodifiableIntByteMap.noneSatisfy(BytePredicate predicate) booleanUnmodifiableLongByteMap.noneSatisfy(BytePredicate predicate) booleanUnmodifiableObjectByteMap.noneSatisfy(BytePredicate predicate) booleanUnmodifiableShortByteMap.noneSatisfy(BytePredicate predicate) AbstractMutableByteKeySet.reject(BytePredicate predicate) AbstractMutableByteValuesMap.AbstractByteValuesCollection.reject(BytePredicate predicate) AbstractMutableByteValuesMap.reject(BytePredicate predicate) ObjectByteHashMap.reject(BytePredicate predicate) ObjectByteHashMapWithHashingStrategy.reject(BytePredicate predicate) SynchronizedByteByteMap.reject(BytePredicate predicate) SynchronizedCharByteMap.reject(BytePredicate predicate) SynchronizedDoubleByteMap.reject(BytePredicate predicate) SynchronizedFloatByteMap.reject(BytePredicate predicate) SynchronizedIntByteMap.reject(BytePredicate predicate) SynchronizedLongByteMap.reject(BytePredicate predicate) SynchronizedObjectByteMap.reject(BytePredicate predicate) SynchronizedShortByteMap.reject(BytePredicate predicate) UnmodifiableByteByteMap.reject(BytePredicate predicate) UnmodifiableCharByteMap.reject(BytePredicate predicate) UnmodifiableDoubleByteMap.reject(BytePredicate predicate) UnmodifiableFloatByteMap.reject(BytePredicate predicate) UnmodifiableIntByteMap.reject(BytePredicate predicate) UnmodifiableLongByteMap.reject(BytePredicate predicate) UnmodifiableObjectByteMap.reject(BytePredicate predicate) UnmodifiableShortByteMap.reject(BytePredicate predicate) AbstractMutableByteKeySet.select(BytePredicate predicate) AbstractMutableByteValuesMap.AbstractByteValuesCollection.select(BytePredicate predicate) AbstractMutableByteValuesMap.select(BytePredicate predicate) ObjectByteHashMap.select(BytePredicate predicate) ObjectByteHashMapWithHashingStrategy.select(BytePredicate predicate) SynchronizedByteByteMap.select(BytePredicate predicate) SynchronizedCharByteMap.select(BytePredicate predicate) SynchronizedDoubleByteMap.select(BytePredicate predicate) SynchronizedFloatByteMap.select(BytePredicate predicate) SynchronizedIntByteMap.select(BytePredicate predicate) SynchronizedLongByteMap.select(BytePredicate predicate) SynchronizedObjectByteMap.select(BytePredicate predicate) SynchronizedShortByteMap.select(BytePredicate predicate) UnmodifiableByteByteMap.select(BytePredicate predicate) UnmodifiableCharByteMap.select(BytePredicate predicate) UnmodifiableDoubleByteMap.select(BytePredicate predicate) UnmodifiableFloatByteMap.select(BytePredicate predicate) UnmodifiableIntByteMap.select(BytePredicate predicate) UnmodifiableLongByteMap.select(BytePredicate predicate) UnmodifiableObjectByteMap.select(BytePredicate predicate) UnmodifiableShortByteMap.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionbooleanSynchronizedByteIterable.allSatisfy(BytePredicate predicate) booleanSynchronizedByteIterable.anySatisfy(BytePredicate predicate) intSynchronizedByteIterable.count(BytePredicate predicate) byteSynchronizedByteIterable.detectIfNone(BytePredicate predicate, byte ifNone) booleanSynchronizedByteIterable.noneSatisfy(BytePredicate predicate) SynchronizedByteIterable.reject(BytePredicate predicate) SynchronizedByteIterable.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionbooleanByteHashSet.allSatisfy(BytePredicate predicate) booleanByteHashSet.anySatisfy(BytePredicate predicate) intByteHashSet.count(BytePredicate predicate) byteByteHashSet.detectIfNone(BytePredicate predicate, byte ifNone) booleanByteHashSet.noneSatisfy(BytePredicate predicate) ByteHashSet.reject(BytePredicate predicate) SynchronizedByteSet.reject(BytePredicate predicate) UnmodifiableByteSet.reject(BytePredicate predicate) ByteHashSet.select(BytePredicate predicate) SynchronizedByteSet.select(BytePredicate predicate) UnmodifiableByteSet.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionbooleanSynchronizedByteStack.allSatisfy(BytePredicate predicate) booleanUnmodifiableByteStack.allSatisfy(BytePredicate predicate) booleanSynchronizedByteStack.anySatisfy(BytePredicate predicate) booleanUnmodifiableByteStack.anySatisfy(BytePredicate predicate) intSynchronizedByteStack.count(BytePredicate predicate) intUnmodifiableByteStack.count(BytePredicate predicate) byteSynchronizedByteStack.detectIfNone(BytePredicate predicate, byte ifNone) byteUnmodifiableByteStack.detectIfNone(BytePredicate predicate, byte ifNone) booleanSynchronizedByteStack.noneSatisfy(BytePredicate predicate) booleanUnmodifiableByteStack.noneSatisfy(BytePredicate predicate) ByteArrayStack.reject(BytePredicate predicate) SynchronizedByteStack.reject(BytePredicate predicate) UnmodifiableByteStack.reject(BytePredicate predicate) ByteArrayStack.select(BytePredicate predicate) SynchronizedByteStack.select(BytePredicate predicate) UnmodifiableByteStack.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionbooleanAbstractByteStack.allSatisfy(BytePredicate predicate) booleanAbstractByteStack.anySatisfy(BytePredicate predicate) intAbstractByteStack.count(BytePredicate predicate) byteAbstractByteStack.detectIfNone(BytePredicate predicate, byte ifNone) booleanAbstractByteStack.noneSatisfy(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionstatic booleanByteIterableIterate.allSatisfy(ByteIterable iterable, BytePredicate predicate) static booleanByteIteratorIterate.allSatisfy(ByteIterator iterator, BytePredicate predicate) static booleanByteIterableIterate.anySatisfy(ByteIterable iterable, BytePredicate predicate) static booleanByteIteratorIterate.anySatisfy(ByteIterator iterator, BytePredicate predicate) static intByteIterableIterate.count(ByteIterable iterable, BytePredicate predicate) static intByteIteratorIterate.count(ByteIterator iterator, BytePredicate predicate) static byteByteIterableIterate.detectIfNone(ByteIterable iterable, BytePredicate predicate, byte ifNone) static byteByteIteratorIterate.detectIfNone(ByteIterator iterator, BytePredicate predicate, byte ifNone) static booleanByteIterableIterate.noneSatisfy(ByteIterable iterable, BytePredicate predicate) static booleanByteIteratorIterate.noneSatisfy(ByteIterator iterator, BytePredicate predicate) static <R extends MutableByteCollection>
RByteIterableIterate.reject(ByteIterable iterable, BytePredicate predicate, R targetCollection) static <R extends MutableByteCollection>
RByteIteratorIterate.reject(ByteIterator iterator, BytePredicate predicate, R targetCollection) static <R extends MutableByteCollection>
RByteIterableIterate.select(ByteIterable iterable, BytePredicate predicate, R targetCollection) static <R extends MutableByteCollection>
RByteIteratorIterate.select(ByteIterator iterator, BytePredicate predicate, R targetCollection) -
Uses of BytePredicate in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionstatic <V> LazyIterable<V> LazyByteIterate.collectIf(ByteIterable iterable, BytePredicate predicate, ByteToObjectFunction<? extends V> function) Creates a deferred filtering and transforming byte iterable for the specified byte iterable.static LazyByteIterableLazyByteIterate.select(ByteIterable iterable, BytePredicate predicate) Creates a deferred filtering byte iterable for the specified byte iterable.