Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.ShortPredicate
Packages that use ShortPredicate
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 ShortPredicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type ShortPredicateModifier and TypeMethodDescriptionbooleanShortIterable.allSatisfy(ShortPredicate predicate) Returns true if all of the elements in the ShortIterable return true for the specified predicate, otherwise returns false.booleanShortIterable.anySatisfy(ShortPredicate predicate) Returns true if any of the elements in the ShortIterable return true for the specified predicate, otherwise returns false.intShortIterable.count(ShortPredicate predicate) Returns a count of the number of elements in the ShortIterable that return true for the specified predicate.shortShortIterable.detectIfNone(ShortPredicate predicate, short ifNone) default booleanShortIterable.noneSatisfy(ShortPredicate predicate) Returns true if none of the elements in the ShortIterable return true for the specified predicate, otherwise returns false.LazyShortIterable.reject(ShortPredicate predicate) ShortIterable.reject(ShortPredicate predicate) Returns a new ShortIterable with all of the elements in the ShortIterable that return false for the specified predicate.default <R extends MutableShortCollection>
RShortIterable.reject(ShortPredicate predicate, R target) Same asShortIterable.reject(ShortPredicate), only the results are added to the target MutableShortCollection.LazyShortIterable.select(ShortPredicate predicate) ShortIterable.select(ShortPredicate predicate) Returns a new ShortIterable with all of the elements in the ShortIterable that return true for the specified predicate.default <R extends MutableShortCollection>
RShortIterable.select(ShortPredicate predicate, R target) Same asShortIterable.select(ShortPredicate), only the results are added to the target MutableShortCollection. -
Uses of ShortPredicate in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionImmutableShortBag.reject(ShortPredicate predicate) MutableShortBag.reject(ShortPredicate predicate) ShortBag.reject(ShortPredicate predicate) ImmutableShortBag.select(ShortPredicate predicate) MutableShortBag.select(ShortPredicate predicate) ShortBag.select(ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionImmutableShortCollection.reject(ShortPredicate predicate) MutableShortCollection.reject(ShortPredicate predicate) default booleanMutableShortCollection.removeIf(ShortPredicate predicate) ImmutableShortCollection.select(ShortPredicate predicate) MutableShortCollection.select(ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionImmutableShortList.reject(ShortPredicate predicate) MutableShortList.reject(ShortPredicate predicate) ShortList.reject(ShortPredicate predicate) ImmutableShortList.select(ShortPredicate predicate) MutableShortList.select(ShortPredicate predicate) ShortList.select(ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionImmutableByteShortMap.reject(ShortPredicate predicate) ImmutableCharShortMap.reject(ShortPredicate predicate) ImmutableDoubleShortMap.reject(ShortPredicate predicate) ImmutableFloatShortMap.reject(ShortPredicate predicate) ImmutableIntShortMap.reject(ShortPredicate predicate) ImmutableLongShortMap.reject(ShortPredicate predicate) ImmutableObjectShortMap.reject(ShortPredicate predicate) ImmutableShortShortMap.reject(ShortPredicate predicate) MutableObjectShortMap.reject(ShortPredicate predicate) MutableShortValuesMap.reject(ShortPredicate predicate) ShortValuesMap.reject(ShortPredicate predicate) ImmutableByteShortMap.select(ShortPredicate predicate) ImmutableCharShortMap.select(ShortPredicate predicate) ImmutableDoubleShortMap.select(ShortPredicate predicate) ImmutableFloatShortMap.select(ShortPredicate predicate) ImmutableIntShortMap.select(ShortPredicate predicate) ImmutableLongShortMap.select(ShortPredicate predicate) ImmutableObjectShortMap.select(ShortPredicate predicate) ImmutableShortShortMap.select(ShortPredicate predicate) MutableObjectShortMap.select(ShortPredicate predicate) MutableShortValuesMap.select(ShortPredicate predicate) ShortValuesMap.select(ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionOrderedShortIterable.reject(ShortPredicate predicate) ReversibleShortIterable.reject(ShortPredicate predicate) OrderedShortIterable.select(ShortPredicate predicate) ReversibleShortIterable.select(ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionImmutableShortSet.reject(ShortPredicate predicate) MutableShortSet.reject(ShortPredicate predicate) ShortSet.reject(ShortPredicate predicate) ImmutableShortSet.select(ShortPredicate predicate) MutableShortSet.select(ShortPredicate predicate) ShortSet.select(ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionImmutableShortStack.reject(ShortPredicate predicate) MutableShortStack.reject(ShortPredicate predicate) ShortStack.reject(ShortPredicate predicate) ImmutableShortStack.select(ShortPredicate predicate) MutableShortStack.select(ShortPredicate predicate) ShortStack.select(ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionbooleanShortHashBag.allSatisfy(ShortPredicate predicate) booleanShortHashBag.anySatisfy(ShortPredicate predicate) intShortHashBag.count(ShortPredicate predicate) shortShortHashBag.detectIfNone(ShortPredicate predicate, short ifNone) booleanShortHashBag.noneSatisfy(ShortPredicate predicate) ShortHashBag.reject(ShortPredicate predicate) SynchronizedShortBag.reject(ShortPredicate predicate) UnmodifiableShortBag.reject(ShortPredicate predicate) booleanShortHashBag.removeIf(ShortPredicate predicate) ShortHashBag.select(ShortPredicate predicate) SynchronizedShortBag.select(ShortPredicate predicate) UnmodifiableShortBag.select(ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.impl.block.factory.primitive
Methods in org.eclipse.collections.impl.block.factory.primitive that return ShortPredicateModifier and TypeMethodDescriptionstatic ShortPredicateShortPredicates.alwaysFalse()static ShortPredicateShortPredicates.alwaysTrue()static ShortPredicateShortPredicates.and(ShortPredicate one, ShortPredicate two) static ShortPredicateShortPredicates.equal(short expected) static ShortPredicateShortPredicates.greaterThan(short expected) static ShortPredicateShortPredicates.isEven()static ShortPredicateShortPredicates.isOdd()static ShortPredicateShortPredicates.lessThan(short expected) static ShortPredicateShortPredicates.not(ShortPredicate negate) static ShortPredicateShortPredicates.or(ShortPredicate one, ShortPredicate two) Methods in org.eclipse.collections.impl.block.factory.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionstatic ShortPredicateShortPredicates.and(ShortPredicate one, ShortPredicate two) static ShortPredicateShortPredicates.not(ShortPredicate negate) static ShortPredicateShortPredicates.or(ShortPredicate one, ShortPredicate two) -
Uses of ShortPredicate in org.eclipse.collections.impl.block.function.primitive
Methods in org.eclipse.collections.impl.block.function.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionShortCaseFunction.addCase(ShortPredicate predicate, ShortToObjectFunction<? extends V> function) -
Uses of ShortPredicate in org.eclipse.collections.impl.block.procedure.primitive
Methods in org.eclipse.collections.impl.block.procedure.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionShortCaseProcedure.addCase(ShortPredicate predicate, ShortProcedure procedure) -
Uses of ShortPredicate in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionbooleanAbstractSynchronizedShortCollection.allSatisfy(ShortPredicate predicate) booleanAbstractUnmodifiableShortCollection.allSatisfy(ShortPredicate predicate) booleanAbstractSynchronizedShortCollection.anySatisfy(ShortPredicate predicate) booleanAbstractUnmodifiableShortCollection.anySatisfy(ShortPredicate predicate) intAbstractSynchronizedShortCollection.count(ShortPredicate predicate) intAbstractUnmodifiableShortCollection.count(ShortPredicate predicate) shortAbstractSynchronizedShortCollection.detectIfNone(ShortPredicate predicate, short ifNone) shortAbstractUnmodifiableShortCollection.detectIfNone(ShortPredicate predicate, short ifNone) booleanAbstractSynchronizedShortCollection.noneSatisfy(ShortPredicate predicate) booleanAbstractUnmodifiableShortCollection.noneSatisfy(ShortPredicate predicate) AbstractSynchronizedShortCollection.reject(ShortPredicate predicate) AbstractUnmodifiableShortCollection.reject(ShortPredicate predicate) booleanAbstractSynchronizedShortCollection.removeIf(ShortPredicate predicate) booleanAbstractUnmodifiableShortCollection.removeIf(ShortPredicate predicate) AbstractSynchronizedShortCollection.select(ShortPredicate predicate) AbstractUnmodifiableShortCollection.select(ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionbooleanAbstractLazyShortIterable.allSatisfy(ShortPredicate predicate) booleanCollectShortIterable.allSatisfy(ShortPredicate predicate) booleanLazyShortIterableAdapter.allSatisfy(ShortPredicate predicate) booleanSelectShortIterable.allSatisfy(ShortPredicate predicate) booleanTapShortIterable.allSatisfy(ShortPredicate predicate) booleanAbstractLazyShortIterable.anySatisfy(ShortPredicate predicate) booleanCollectShortIterable.anySatisfy(ShortPredicate predicate) booleanLazyShortIterableAdapter.anySatisfy(ShortPredicate predicate) booleanSelectShortIterable.anySatisfy(ShortPredicate predicate) booleanTapShortIterable.anySatisfy(ShortPredicate predicate) intAbstractLazyShortIterable.count(ShortPredicate predicate) intCollectShortIterable.count(ShortPredicate predicate) intLazyShortIterableAdapter.count(ShortPredicate predicate) intSelectShortIterable.count(ShortPredicate predicate) shortAbstractLazyShortIterable.detectIfNone(ShortPredicate predicate, short ifNone) shortLazyShortIterableAdapter.detectIfNone(ShortPredicate predicate, short ifNone) shortTapShortIterable.detectIfNone(ShortPredicate predicate, short ifNone) booleanAbstractLazyShortIterable.noneSatisfy(ShortPredicate predicate) booleanLazyShortIterableAdapter.noneSatisfy(ShortPredicate predicate) booleanTapShortIterable.noneSatisfy(ShortPredicate predicate) AbstractLazyShortIterable.reject(ShortPredicate predicate) AbstractLazyShortIterable.select(ShortPredicate predicate) Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type ShortPredicateModifierConstructorDescriptionSelectShortIterable(ShortIterable delegate, ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionbooleanShortArrayList.allSatisfy(ShortPredicate predicate) booleanShortArrayList.anySatisfy(ShortPredicate predicate) intShortArrayList.count(ShortPredicate predicate) shortShortArrayList.detectIfNone(ShortPredicate predicate, short ifNone) ShortArrayList.reject(ShortPredicate predicate) <R extends MutableShortCollection>
RShortArrayList.reject(ShortPredicate predicate, R target) SynchronizedShortList.reject(ShortPredicate predicate) UnmodifiableShortList.reject(ShortPredicate predicate) booleanShortArrayList.removeIf(ShortPredicate predicate) ShortArrayList.select(ShortPredicate predicate) <R extends MutableShortCollection>
RShortArrayList.select(ShortPredicate predicate, R target) SynchronizedShortList.select(ShortPredicate predicate) UnmodifiableShortList.select(ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionbooleanAbstractMutableShortKeySet.allSatisfy(ShortPredicate predicate) booleanAbstractMutableShortValuesMap.AbstractShortValuesCollection.allSatisfy(ShortPredicate predicate) booleanAbstractMutableShortValuesMap.allSatisfy(ShortPredicate predicate) booleanObjectShortHashMap.allSatisfy(ShortPredicate predicate) booleanObjectShortHashMapWithHashingStrategy.allSatisfy(ShortPredicate predicate) booleanSynchronizedByteShortMap.allSatisfy(ShortPredicate predicate) booleanSynchronizedCharShortMap.allSatisfy(ShortPredicate predicate) booleanSynchronizedDoubleShortMap.allSatisfy(ShortPredicate predicate) booleanSynchronizedFloatShortMap.allSatisfy(ShortPredicate predicate) booleanSynchronizedIntShortMap.allSatisfy(ShortPredicate predicate) booleanSynchronizedLongShortMap.allSatisfy(ShortPredicate predicate) booleanSynchronizedObjectShortMap.allSatisfy(ShortPredicate predicate) booleanSynchronizedShortShortMap.allSatisfy(ShortPredicate predicate) booleanUnmodifiableByteShortMap.allSatisfy(ShortPredicate predicate) booleanUnmodifiableCharShortMap.allSatisfy(ShortPredicate predicate) booleanUnmodifiableDoubleShortMap.allSatisfy(ShortPredicate predicate) booleanUnmodifiableFloatShortMap.allSatisfy(ShortPredicate predicate) booleanUnmodifiableIntShortMap.allSatisfy(ShortPredicate predicate) booleanUnmodifiableLongShortMap.allSatisfy(ShortPredicate predicate) booleanUnmodifiableObjectShortMap.allSatisfy(ShortPredicate predicate) booleanUnmodifiableShortShortMap.allSatisfy(ShortPredicate predicate) booleanAbstractMutableShortKeySet.anySatisfy(ShortPredicate predicate) booleanAbstractMutableShortValuesMap.AbstractShortValuesCollection.anySatisfy(ShortPredicate predicate) booleanAbstractMutableShortValuesMap.anySatisfy(ShortPredicate predicate) booleanObjectShortHashMap.anySatisfy(ShortPredicate predicate) booleanObjectShortHashMapWithHashingStrategy.anySatisfy(ShortPredicate predicate) booleanSynchronizedByteShortMap.anySatisfy(ShortPredicate predicate) booleanSynchronizedCharShortMap.anySatisfy(ShortPredicate predicate) booleanSynchronizedDoubleShortMap.anySatisfy(ShortPredicate predicate) booleanSynchronizedFloatShortMap.anySatisfy(ShortPredicate predicate) booleanSynchronizedIntShortMap.anySatisfy(ShortPredicate predicate) booleanSynchronizedLongShortMap.anySatisfy(ShortPredicate predicate) booleanSynchronizedObjectShortMap.anySatisfy(ShortPredicate predicate) booleanSynchronizedShortShortMap.anySatisfy(ShortPredicate predicate) booleanUnmodifiableByteShortMap.anySatisfy(ShortPredicate predicate) booleanUnmodifiableCharShortMap.anySatisfy(ShortPredicate predicate) booleanUnmodifiableDoubleShortMap.anySatisfy(ShortPredicate predicate) booleanUnmodifiableFloatShortMap.anySatisfy(ShortPredicate predicate) booleanUnmodifiableIntShortMap.anySatisfy(ShortPredicate predicate) booleanUnmodifiableLongShortMap.anySatisfy(ShortPredicate predicate) booleanUnmodifiableObjectShortMap.anySatisfy(ShortPredicate predicate) booleanUnmodifiableShortShortMap.anySatisfy(ShortPredicate predicate) intAbstractMutableShortKeySet.count(ShortPredicate predicate) intAbstractMutableShortValuesMap.AbstractShortValuesCollection.count(ShortPredicate predicate) intAbstractMutableShortValuesMap.count(ShortPredicate predicate) intObjectShortHashMap.count(ShortPredicate predicate) intObjectShortHashMapWithHashingStrategy.count(ShortPredicate predicate) intSynchronizedByteShortMap.count(ShortPredicate predicate) intSynchronizedCharShortMap.count(ShortPredicate predicate) intSynchronizedDoubleShortMap.count(ShortPredicate predicate) intSynchronizedFloatShortMap.count(ShortPredicate predicate) intSynchronizedIntShortMap.count(ShortPredicate predicate) intSynchronizedLongShortMap.count(ShortPredicate predicate) intSynchronizedObjectShortMap.count(ShortPredicate predicate) intSynchronizedShortShortMap.count(ShortPredicate predicate) intUnmodifiableByteShortMap.count(ShortPredicate predicate) intUnmodifiableCharShortMap.count(ShortPredicate predicate) intUnmodifiableDoubleShortMap.count(ShortPredicate predicate) intUnmodifiableFloatShortMap.count(ShortPredicate predicate) intUnmodifiableIntShortMap.count(ShortPredicate predicate) intUnmodifiableLongShortMap.count(ShortPredicate predicate) intUnmodifiableObjectShortMap.count(ShortPredicate predicate) intUnmodifiableShortShortMap.count(ShortPredicate predicate) shortAbstractMutableShortKeySet.detectIfNone(ShortPredicate predicate, short ifNone) shortAbstractMutableShortValuesMap.AbstractShortValuesCollection.detectIfNone(ShortPredicate predicate, short ifNone) shortAbstractMutableShortValuesMap.detectIfNone(ShortPredicate predicate, short value) shortObjectShortHashMap.detectIfNone(ShortPredicate predicate, short ifNone) shortObjectShortHashMapWithHashingStrategy.detectIfNone(ShortPredicate predicate, short ifNone) shortSynchronizedByteShortMap.detectIfNone(ShortPredicate predicate, short ifNone) shortSynchronizedCharShortMap.detectIfNone(ShortPredicate predicate, short ifNone) shortSynchronizedDoubleShortMap.detectIfNone(ShortPredicate predicate, short ifNone) shortSynchronizedFloatShortMap.detectIfNone(ShortPredicate predicate, short ifNone) shortSynchronizedIntShortMap.detectIfNone(ShortPredicate predicate, short ifNone) shortSynchronizedLongShortMap.detectIfNone(ShortPredicate predicate, short ifNone) shortSynchronizedObjectShortMap.detectIfNone(ShortPredicate predicate, short ifNone) shortSynchronizedShortShortMap.detectIfNone(ShortPredicate predicate, short ifNone) shortUnmodifiableByteShortMap.detectIfNone(ShortPredicate predicate, short ifNone) shortUnmodifiableCharShortMap.detectIfNone(ShortPredicate predicate, short ifNone) shortUnmodifiableDoubleShortMap.detectIfNone(ShortPredicate predicate, short ifNone) shortUnmodifiableFloatShortMap.detectIfNone(ShortPredicate predicate, short ifNone) shortUnmodifiableIntShortMap.detectIfNone(ShortPredicate predicate, short ifNone) shortUnmodifiableLongShortMap.detectIfNone(ShortPredicate predicate, short ifNone) shortUnmodifiableObjectShortMap.detectIfNone(ShortPredicate predicate, short ifNone) shortUnmodifiableShortShortMap.detectIfNone(ShortPredicate predicate, short ifNone) booleanAbstractMutableShortValuesMap.AbstractShortValuesCollection.noneSatisfy(ShortPredicate predicate) booleanObjectShortHashMap.noneSatisfy(ShortPredicate predicate) booleanObjectShortHashMapWithHashingStrategy.noneSatisfy(ShortPredicate predicate) booleanSynchronizedByteShortMap.noneSatisfy(ShortPredicate predicate) booleanSynchronizedCharShortMap.noneSatisfy(ShortPredicate predicate) booleanSynchronizedDoubleShortMap.noneSatisfy(ShortPredicate predicate) booleanSynchronizedFloatShortMap.noneSatisfy(ShortPredicate predicate) booleanSynchronizedIntShortMap.noneSatisfy(ShortPredicate predicate) booleanSynchronizedLongShortMap.noneSatisfy(ShortPredicate predicate) booleanSynchronizedObjectShortMap.noneSatisfy(ShortPredicate predicate) booleanSynchronizedShortShortMap.noneSatisfy(ShortPredicate predicate) booleanUnmodifiableByteShortMap.noneSatisfy(ShortPredicate predicate) booleanUnmodifiableCharShortMap.noneSatisfy(ShortPredicate predicate) booleanUnmodifiableDoubleShortMap.noneSatisfy(ShortPredicate predicate) booleanUnmodifiableFloatShortMap.noneSatisfy(ShortPredicate predicate) booleanUnmodifiableIntShortMap.noneSatisfy(ShortPredicate predicate) booleanUnmodifiableLongShortMap.noneSatisfy(ShortPredicate predicate) booleanUnmodifiableObjectShortMap.noneSatisfy(ShortPredicate predicate) booleanUnmodifiableShortShortMap.noneSatisfy(ShortPredicate predicate) AbstractMutableShortKeySet.reject(ShortPredicate predicate) AbstractMutableShortValuesMap.AbstractShortValuesCollection.reject(ShortPredicate predicate) AbstractMutableShortValuesMap.reject(ShortPredicate predicate) ObjectShortHashMap.reject(ShortPredicate predicate) ObjectShortHashMapWithHashingStrategy.reject(ShortPredicate predicate) SynchronizedByteShortMap.reject(ShortPredicate predicate) SynchronizedCharShortMap.reject(ShortPredicate predicate) SynchronizedDoubleShortMap.reject(ShortPredicate predicate) SynchronizedFloatShortMap.reject(ShortPredicate predicate) SynchronizedIntShortMap.reject(ShortPredicate predicate) SynchronizedLongShortMap.reject(ShortPredicate predicate) SynchronizedObjectShortMap.reject(ShortPredicate predicate) SynchronizedShortShortMap.reject(ShortPredicate predicate) UnmodifiableByteShortMap.reject(ShortPredicate predicate) UnmodifiableCharShortMap.reject(ShortPredicate predicate) UnmodifiableDoubleShortMap.reject(ShortPredicate predicate) UnmodifiableFloatShortMap.reject(ShortPredicate predicate) UnmodifiableIntShortMap.reject(ShortPredicate predicate) UnmodifiableLongShortMap.reject(ShortPredicate predicate) UnmodifiableObjectShortMap.reject(ShortPredicate predicate) UnmodifiableShortShortMap.reject(ShortPredicate predicate) AbstractMutableShortKeySet.select(ShortPredicate predicate) AbstractMutableShortValuesMap.AbstractShortValuesCollection.select(ShortPredicate predicate) AbstractMutableShortValuesMap.select(ShortPredicate predicate) ObjectShortHashMap.select(ShortPredicate predicate) ObjectShortHashMapWithHashingStrategy.select(ShortPredicate predicate) SynchronizedByteShortMap.select(ShortPredicate predicate) SynchronizedCharShortMap.select(ShortPredicate predicate) SynchronizedDoubleShortMap.select(ShortPredicate predicate) SynchronizedFloatShortMap.select(ShortPredicate predicate) SynchronizedIntShortMap.select(ShortPredicate predicate) SynchronizedLongShortMap.select(ShortPredicate predicate) SynchronizedObjectShortMap.select(ShortPredicate predicate) SynchronizedShortShortMap.select(ShortPredicate predicate) UnmodifiableByteShortMap.select(ShortPredicate predicate) UnmodifiableCharShortMap.select(ShortPredicate predicate) UnmodifiableDoubleShortMap.select(ShortPredicate predicate) UnmodifiableFloatShortMap.select(ShortPredicate predicate) UnmodifiableIntShortMap.select(ShortPredicate predicate) UnmodifiableLongShortMap.select(ShortPredicate predicate) UnmodifiableObjectShortMap.select(ShortPredicate predicate) UnmodifiableShortShortMap.select(ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionbooleanSynchronizedShortIterable.allSatisfy(ShortPredicate predicate) booleanSynchronizedShortIterable.anySatisfy(ShortPredicate predicate) intSynchronizedShortIterable.count(ShortPredicate predicate) shortSynchronizedShortIterable.detectIfNone(ShortPredicate predicate, short ifNone) booleanSynchronizedShortIterable.noneSatisfy(ShortPredicate predicate) SynchronizedShortIterable.reject(ShortPredicate predicate) SynchronizedShortIterable.select(ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionbooleanShortHashSet.allSatisfy(ShortPredicate predicate) booleanShortHashSet.anySatisfy(ShortPredicate predicate) intShortHashSet.count(ShortPredicate predicate) shortShortHashSet.detectIfNone(ShortPredicate predicate, short ifNone) ShortHashSet.reject(ShortPredicate predicate) <R extends MutableShortCollection>
RShortHashSet.reject(ShortPredicate predicate, R target) SynchronizedShortSet.reject(ShortPredicate predicate) UnmodifiableShortSet.reject(ShortPredicate predicate) ShortHashSet.select(ShortPredicate predicate) <R extends MutableShortCollection>
RShortHashSet.select(ShortPredicate predicate, R target) SynchronizedShortSet.select(ShortPredicate predicate) UnmodifiableShortSet.select(ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionbooleanSynchronizedShortStack.allSatisfy(ShortPredicate predicate) booleanUnmodifiableShortStack.allSatisfy(ShortPredicate predicate) booleanSynchronizedShortStack.anySatisfy(ShortPredicate predicate) booleanUnmodifiableShortStack.anySatisfy(ShortPredicate predicate) intSynchronizedShortStack.count(ShortPredicate predicate) intUnmodifiableShortStack.count(ShortPredicate predicate) shortSynchronizedShortStack.detectIfNone(ShortPredicate predicate, short ifNone) shortUnmodifiableShortStack.detectIfNone(ShortPredicate predicate, short ifNone) booleanSynchronizedShortStack.noneSatisfy(ShortPredicate predicate) booleanUnmodifiableShortStack.noneSatisfy(ShortPredicate predicate) ShortArrayStack.reject(ShortPredicate predicate) SynchronizedShortStack.reject(ShortPredicate predicate) UnmodifiableShortStack.reject(ShortPredicate predicate) ShortArrayStack.select(ShortPredicate predicate) SynchronizedShortStack.select(ShortPredicate predicate) UnmodifiableShortStack.select(ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionbooleanAbstractShortStack.allSatisfy(ShortPredicate predicate) booleanAbstractShortStack.anySatisfy(ShortPredicate predicate) intAbstractShortStack.count(ShortPredicate predicate) shortAbstractShortStack.detectIfNone(ShortPredicate predicate, short ifNone) booleanAbstractShortStack.noneSatisfy(ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionstatic booleanShortIterableIterate.allSatisfy(ShortIterable iterable, ShortPredicate predicate) static booleanShortIteratorIterate.allSatisfy(ShortIterator iterator, ShortPredicate predicate) static booleanShortIterableIterate.anySatisfy(ShortIterable iterable, ShortPredicate predicate) static booleanShortIteratorIterate.anySatisfy(ShortIterator iterator, ShortPredicate predicate) static intShortIterableIterate.count(ShortIterable iterable, ShortPredicate predicate) static intShortIteratorIterate.count(ShortIterator iterator, ShortPredicate predicate) static shortShortIterableIterate.detectIfNone(ShortIterable iterable, ShortPredicate predicate, short ifNone) static shortShortIteratorIterate.detectIfNone(ShortIterator iterator, ShortPredicate predicate, short ifNone) static booleanShortIterableIterate.noneSatisfy(ShortIterable iterable, ShortPredicate predicate) static booleanShortIteratorIterate.noneSatisfy(ShortIterator iterator, ShortPredicate predicate) static <R extends MutableShortCollection>
RShortIterableIterate.reject(ShortIterable iterable, ShortPredicate predicate, R targetCollection) static <R extends MutableShortCollection>
RShortIteratorIterate.reject(ShortIterator iterator, ShortPredicate predicate, R targetCollection) static <R extends MutableShortCollection>
RShortIterableIterate.select(ShortIterable iterable, ShortPredicate predicate, R targetCollection) static <R extends MutableShortCollection>
RShortIteratorIterate.select(ShortIterator iterator, ShortPredicate predicate, R targetCollection) -
Uses of ShortPredicate in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionstatic <V> LazyIterable<V> LazyShortIterate.collectIf(ShortIterable iterable, ShortPredicate predicate, ShortToObjectFunction<? extends V> function) Creates a deferred filtering and transforming short iterable for the specified short iterable.static LazyShortIterableLazyShortIterate.select(ShortIterable iterable, ShortPredicate predicate) Creates a deferred filtering short iterable for the specified short iterable.