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 immutable primitive bag interfaces.
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 immutable primitive list interfaces and immutable primitive list factory interfaces.
This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the immutable primitive set interfaces.
This package contains implementations of the mutable primitive set interfaces.
This package contains implementations of the immutable primitive stack 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.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionbooleanImmutableShortEmptyBag.allSatisfy(ShortPredicate predicate) booleanImmutableShortHashBag.allSatisfy(ShortPredicate predicate) booleanImmutableShortSingletonBag.allSatisfy(ShortPredicate predicate) booleanImmutableShortEmptyBag.anySatisfy(ShortPredicate predicate) booleanImmutableShortHashBag.anySatisfy(ShortPredicate predicate) booleanImmutableShortSingletonBag.anySatisfy(ShortPredicate predicate) intImmutableShortEmptyBag.count(ShortPredicate predicate) intImmutableShortHashBag.count(ShortPredicate predicate) intImmutableShortSingletonBag.count(ShortPredicate predicate) shortImmutableShortEmptyBag.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableShortHashBag.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableShortSingletonBag.detectIfNone(ShortPredicate predicate, short ifNone) booleanImmutableShortEmptyBag.noneSatisfy(ShortPredicate predicate) booleanImmutableShortHashBag.noneSatisfy(ShortPredicate predicate) booleanImmutableShortSingletonBag.noneSatisfy(ShortPredicate predicate) ImmutableShortEmptyBag.reject(ShortPredicate predicate) ImmutableShortHashBag.reject(ShortPredicate predicate) ImmutableShortSingletonBag.reject(ShortPredicate predicate) ImmutableShortEmptyBag.select(ShortPredicate predicate) ImmutableShortHashBag.select(ShortPredicate predicate) ImmutableShortSingletonBag.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
Classes in org.eclipse.collections.impl.block.factory.primitive that implement ShortPredicateModifier and TypeClassDescriptionprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classFields in org.eclipse.collections.impl.block.factory.primitive declared as ShortPredicateModifier and TypeFieldDescriptionprivate static final ShortPredicateShortPredicates.ALWAYS_FALSEprivate static final ShortPredicateShortPredicates.ALWAYS_TRUEprivate final ShortPredicateShortPredicates.NotShortPredicate.negateprivate final ShortPredicateShortPredicates.AndShortPredicate.oneprivate final ShortPredicateShortPredicates.OrShortPredicate.oneprivate final ShortPredicateShortPredicates.AndShortPredicate.twoprivate final ShortPredicateShortPredicates.OrShortPredicate.twoMethods 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) Constructors in org.eclipse.collections.impl.block.factory.primitive with parameters of type ShortPredicateModifierConstructorDescriptionprivateAndShortPredicate(ShortPredicate one, ShortPredicate two) privateNotShortPredicate(ShortPredicate negate) privateOrShortPredicate(ShortPredicate one, ShortPredicate two) -
Uses of ShortPredicate in org.eclipse.collections.impl.block.function.primitive
Fields in org.eclipse.collections.impl.block.function.primitive with type parameters of type ShortPredicateModifier and TypeFieldDescriptionprivate final MutableList<Pair<ShortPredicate, ShortToObjectFunction<? extends V>>> ShortCaseFunction.predicateFunctionsMethods 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
Fields in org.eclipse.collections.impl.block.procedure.primitive with type parameters of type ShortPredicateModifier and TypeFieldDescriptionprivate final MutableList<Pair<ShortPredicate, ShortProcedure>> ShortCaseProcedure.predicateProceduresMethods 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
Fields in org.eclipse.collections.impl.lazy.primitive declared as ShortPredicateModifier and TypeFieldDescriptionprivate final ShortPredicateSelectShortIterable.CountShortProcedure.predicateprivate final ShortPredicateSelectShortIterable.predicateprivate final ShortPredicateSelectShortIterable.SelectShortIterator.predicateMethods 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 ShortPredicateModifierConstructorDescriptionprivateCountShortProcedure(ShortPredicate predicate) SelectShortIterable(ShortIterable delegate, ShortPredicate predicate) privateSelectShortIterator(ShortIterator iterator, ShortPredicate predicate) privateSelectShortIterator(ShortIterable iterable, ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionbooleanImmutableShortArrayList.allSatisfy(ShortPredicate predicate) booleanImmutableShortEmptyList.allSatisfy(ShortPredicate predicate) booleanImmutableShortSingletonList.allSatisfy(ShortPredicate predicate) booleanImmutableShortArrayList.anySatisfy(ShortPredicate predicate) booleanImmutableShortEmptyList.anySatisfy(ShortPredicate predicate) booleanImmutableShortSingletonList.anySatisfy(ShortPredicate predicate) intImmutableShortArrayList.count(ShortPredicate predicate) intImmutableShortEmptyList.count(ShortPredicate predicate) intImmutableShortSingletonList.count(ShortPredicate predicate) shortImmutableShortArrayList.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableShortEmptyList.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableShortSingletonList.detectIfNone(ShortPredicate predicate, short ifNone) booleanImmutableShortEmptyList.noneSatisfy(ShortPredicate predicate) booleanImmutableShortSingletonList.noneSatisfy(ShortPredicate predicate) ImmutableShortArrayList.reject(ShortPredicate predicate) <R extends MutableShortCollection>
RImmutableShortArrayList.reject(ShortPredicate predicate, R target) ImmutableShortEmptyList.reject(ShortPredicate predicate) ImmutableShortSingletonList.reject(ShortPredicate predicate) ImmutableShortArrayList.select(ShortPredicate predicate) <R extends MutableShortCollection>
RImmutableShortArrayList.select(ShortPredicate predicate, R target) ImmutableShortEmptyList.select(ShortPredicate predicate) ImmutableShortSingletonList.select(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.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionbooleanImmutableByteShortEmptyMap.allSatisfy(ShortPredicate predicate) booleanImmutableByteShortHashMap.allSatisfy(ShortPredicate predicate) booleanImmutableByteShortSingletonMap.allSatisfy(ShortPredicate predicate) booleanImmutableCharShortEmptyMap.allSatisfy(ShortPredicate predicate) booleanImmutableCharShortHashMap.allSatisfy(ShortPredicate predicate) booleanImmutableCharShortSingletonMap.allSatisfy(ShortPredicate predicate) booleanImmutableDoubleShortEmptyMap.allSatisfy(ShortPredicate predicate) booleanImmutableDoubleShortHashMap.allSatisfy(ShortPredicate predicate) booleanImmutableDoubleShortSingletonMap.allSatisfy(ShortPredicate predicate) booleanImmutableFloatShortEmptyMap.allSatisfy(ShortPredicate predicate) booleanImmutableFloatShortHashMap.allSatisfy(ShortPredicate predicate) booleanImmutableFloatShortSingletonMap.allSatisfy(ShortPredicate predicate) booleanImmutableIntShortEmptyMap.allSatisfy(ShortPredicate predicate) booleanImmutableIntShortHashMap.allSatisfy(ShortPredicate predicate) booleanImmutableIntShortSingletonMap.allSatisfy(ShortPredicate predicate) booleanImmutableLongShortEmptyMap.allSatisfy(ShortPredicate predicate) booleanImmutableLongShortHashMap.allSatisfy(ShortPredicate predicate) booleanImmutableLongShortSingletonMap.allSatisfy(ShortPredicate predicate) booleanImmutableObjectShortEmptyMap.allSatisfy(ShortPredicate predicate) booleanImmutableObjectShortHashMap.allSatisfy(ShortPredicate predicate) booleanImmutableObjectShortSingletonMap.allSatisfy(ShortPredicate predicate) booleanImmutableShortShortEmptyMap.allSatisfy(ShortPredicate predicate) booleanImmutableShortShortHashMap.allSatisfy(ShortPredicate predicate) booleanImmutableShortShortSingletonMap.allSatisfy(ShortPredicate predicate) booleanImmutableByteShortEmptyMap.anySatisfy(ShortPredicate predicate) booleanImmutableByteShortHashMap.anySatisfy(ShortPredicate predicate) booleanImmutableByteShortSingletonMap.anySatisfy(ShortPredicate predicate) booleanImmutableCharShortEmptyMap.anySatisfy(ShortPredicate predicate) booleanImmutableCharShortHashMap.anySatisfy(ShortPredicate predicate) booleanImmutableCharShortSingletonMap.anySatisfy(ShortPredicate predicate) booleanImmutableDoubleShortEmptyMap.anySatisfy(ShortPredicate predicate) booleanImmutableDoubleShortHashMap.anySatisfy(ShortPredicate predicate) booleanImmutableDoubleShortSingletonMap.anySatisfy(ShortPredicate predicate) booleanImmutableFloatShortEmptyMap.anySatisfy(ShortPredicate predicate) booleanImmutableFloatShortHashMap.anySatisfy(ShortPredicate predicate) booleanImmutableFloatShortSingletonMap.anySatisfy(ShortPredicate predicate) booleanImmutableIntShortEmptyMap.anySatisfy(ShortPredicate predicate) booleanImmutableIntShortHashMap.anySatisfy(ShortPredicate predicate) booleanImmutableIntShortSingletonMap.anySatisfy(ShortPredicate predicate) booleanImmutableLongShortEmptyMap.anySatisfy(ShortPredicate predicate) booleanImmutableLongShortHashMap.anySatisfy(ShortPredicate predicate) booleanImmutableLongShortSingletonMap.anySatisfy(ShortPredicate predicate) booleanImmutableObjectShortEmptyMap.anySatisfy(ShortPredicate predicate) booleanImmutableObjectShortHashMap.anySatisfy(ShortPredicate predicate) booleanImmutableObjectShortSingletonMap.anySatisfy(ShortPredicate predicate) booleanImmutableShortShortEmptyMap.anySatisfy(ShortPredicate predicate) booleanImmutableShortShortHashMap.anySatisfy(ShortPredicate predicate) booleanImmutableShortShortSingletonMap.anySatisfy(ShortPredicate predicate) intImmutableByteShortEmptyMap.count(ShortPredicate predicate) intImmutableByteShortHashMap.count(ShortPredicate predicate) intImmutableByteShortSingletonMap.count(ShortPredicate predicate) intImmutableCharShortEmptyMap.count(ShortPredicate predicate) intImmutableCharShortHashMap.count(ShortPredicate predicate) intImmutableCharShortSingletonMap.count(ShortPredicate predicate) intImmutableDoubleShortEmptyMap.count(ShortPredicate predicate) intImmutableDoubleShortHashMap.count(ShortPredicate predicate) intImmutableDoubleShortSingletonMap.count(ShortPredicate predicate) intImmutableFloatShortEmptyMap.count(ShortPredicate predicate) intImmutableFloatShortHashMap.count(ShortPredicate predicate) intImmutableFloatShortSingletonMap.count(ShortPredicate predicate) intImmutableIntShortEmptyMap.count(ShortPredicate predicate) intImmutableIntShortHashMap.count(ShortPredicate predicate) intImmutableIntShortSingletonMap.count(ShortPredicate predicate) intImmutableLongShortEmptyMap.count(ShortPredicate predicate) intImmutableLongShortHashMap.count(ShortPredicate predicate) intImmutableLongShortSingletonMap.count(ShortPredicate predicate) intImmutableObjectShortEmptyMap.count(ShortPredicate predicate) intImmutableObjectShortHashMap.count(ShortPredicate predicate) intImmutableObjectShortSingletonMap.count(ShortPredicate predicate) intImmutableShortShortEmptyMap.count(ShortPredicate predicate) intImmutableShortShortHashMap.count(ShortPredicate predicate) intImmutableShortShortSingletonMap.count(ShortPredicate predicate) shortImmutableByteShortEmptyMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableByteShortHashMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableByteShortSingletonMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableCharShortEmptyMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableCharShortHashMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableCharShortSingletonMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableDoubleShortEmptyMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableDoubleShortHashMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableDoubleShortSingletonMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableFloatShortEmptyMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableFloatShortHashMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableFloatShortSingletonMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableIntShortEmptyMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableIntShortHashMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableIntShortSingletonMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableLongShortEmptyMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableLongShortHashMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableLongShortSingletonMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableObjectShortEmptyMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableObjectShortHashMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableObjectShortSingletonMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableShortShortEmptyMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableShortShortHashMap.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableShortShortSingletonMap.detectIfNone(ShortPredicate predicate, short ifNone) booleanImmutableByteShortEmptyMap.noneSatisfy(ShortPredicate predicate) booleanImmutableByteShortHashMap.noneSatisfy(ShortPredicate predicate) booleanImmutableByteShortSingletonMap.noneSatisfy(ShortPredicate predicate) booleanImmutableCharShortEmptyMap.noneSatisfy(ShortPredicate predicate) booleanImmutableCharShortHashMap.noneSatisfy(ShortPredicate predicate) booleanImmutableCharShortSingletonMap.noneSatisfy(ShortPredicate predicate) booleanImmutableDoubleShortEmptyMap.noneSatisfy(ShortPredicate predicate) booleanImmutableDoubleShortHashMap.noneSatisfy(ShortPredicate predicate) booleanImmutableDoubleShortSingletonMap.noneSatisfy(ShortPredicate predicate) booleanImmutableFloatShortEmptyMap.noneSatisfy(ShortPredicate predicate) booleanImmutableFloatShortHashMap.noneSatisfy(ShortPredicate predicate) booleanImmutableFloatShortSingletonMap.noneSatisfy(ShortPredicate predicate) booleanImmutableIntShortEmptyMap.noneSatisfy(ShortPredicate predicate) booleanImmutableIntShortHashMap.noneSatisfy(ShortPredicate predicate) booleanImmutableIntShortSingletonMap.noneSatisfy(ShortPredicate predicate) booleanImmutableLongShortEmptyMap.noneSatisfy(ShortPredicate predicate) booleanImmutableLongShortHashMap.noneSatisfy(ShortPredicate predicate) booleanImmutableLongShortSingletonMap.noneSatisfy(ShortPredicate predicate) booleanImmutableObjectShortEmptyMap.noneSatisfy(ShortPredicate predicate) booleanImmutableObjectShortHashMap.noneSatisfy(ShortPredicate predicate) booleanImmutableObjectShortSingletonMap.noneSatisfy(ShortPredicate predicate) booleanImmutableShortShortEmptyMap.noneSatisfy(ShortPredicate predicate) booleanImmutableShortShortHashMap.noneSatisfy(ShortPredicate predicate) booleanImmutableShortShortSingletonMap.noneSatisfy(ShortPredicate predicate) ImmutableByteShortEmptyMap.reject(ShortPredicate predicate) ImmutableByteShortHashMap.reject(ShortPredicate predicate) ImmutableByteShortSingletonMap.reject(ShortPredicate predicate) ImmutableCharShortEmptyMap.reject(ShortPredicate predicate) ImmutableCharShortHashMap.reject(ShortPredicate predicate) ImmutableCharShortSingletonMap.reject(ShortPredicate predicate) ImmutableDoubleShortEmptyMap.reject(ShortPredicate predicate) ImmutableDoubleShortHashMap.reject(ShortPredicate predicate) ImmutableDoubleShortSingletonMap.reject(ShortPredicate predicate) ImmutableFloatShortEmptyMap.reject(ShortPredicate predicate) ImmutableFloatShortHashMap.reject(ShortPredicate predicate) ImmutableFloatShortSingletonMap.reject(ShortPredicate predicate) ImmutableIntShortEmptyMap.reject(ShortPredicate predicate) ImmutableIntShortHashMap.reject(ShortPredicate predicate) ImmutableIntShortSingletonMap.reject(ShortPredicate predicate) ImmutableLongShortEmptyMap.reject(ShortPredicate predicate) ImmutableLongShortHashMap.reject(ShortPredicate predicate) ImmutableLongShortSingletonMap.reject(ShortPredicate predicate) ImmutableObjectShortEmptyMap.reject(ShortPredicate predicate) ImmutableObjectShortHashMap.reject(ShortPredicate predicate) ImmutableObjectShortSingletonMap.reject(ShortPredicate predicate) ImmutableShortShortEmptyMap.reject(ShortPredicate predicate) ImmutableShortShortHashMap.reject(ShortPredicate predicate) ImmutableShortShortSingletonMap.reject(ShortPredicate predicate) ImmutableByteShortEmptyMap.select(ShortPredicate predicate) ImmutableByteShortHashMap.select(ShortPredicate predicate) ImmutableByteShortSingletonMap.select(ShortPredicate predicate) ImmutableCharShortEmptyMap.select(ShortPredicate predicate) ImmutableCharShortHashMap.select(ShortPredicate predicate) ImmutableCharShortSingletonMap.select(ShortPredicate predicate) ImmutableDoubleShortEmptyMap.select(ShortPredicate predicate) ImmutableDoubleShortHashMap.select(ShortPredicate predicate) ImmutableDoubleShortSingletonMap.select(ShortPredicate predicate) ImmutableFloatShortEmptyMap.select(ShortPredicate predicate) ImmutableFloatShortHashMap.select(ShortPredicate predicate) ImmutableFloatShortSingletonMap.select(ShortPredicate predicate) ImmutableIntShortEmptyMap.select(ShortPredicate predicate) ImmutableIntShortHashMap.select(ShortPredicate predicate) ImmutableIntShortSingletonMap.select(ShortPredicate predicate) ImmutableLongShortEmptyMap.select(ShortPredicate predicate) ImmutableLongShortHashMap.select(ShortPredicate predicate) ImmutableLongShortSingletonMap.select(ShortPredicate predicate) ImmutableObjectShortEmptyMap.select(ShortPredicate predicate) ImmutableObjectShortHashMap.select(ShortPredicate predicate) ImmutableObjectShortSingletonMap.select(ShortPredicate predicate) ImmutableShortShortEmptyMap.select(ShortPredicate predicate) ImmutableShortShortHashMap.select(ShortPredicate predicate) ImmutableShortShortSingletonMap.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) booleanImmutableShortMapKeySet.allSatisfy(ShortPredicate predicate) booleanImmutableShortShortMapKeySet.allSatisfy(ShortPredicate predicate) booleanObjectShortHashMap.allSatisfy(ShortPredicate predicate) booleanObjectShortHashMap.ValuesCollection.allSatisfy(ShortPredicate predicate) booleanObjectShortHashMapWithHashingStrategy.allSatisfy(ShortPredicate predicate) booleanObjectShortHashMapWithHashingStrategy.ValuesCollection.allSatisfy(ShortPredicate predicate) booleanShortBooleanHashMap.KeysView.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) booleanImmutableShortMapKeySet.anySatisfy(ShortPredicate predicate) booleanImmutableShortShortMapKeySet.anySatisfy(ShortPredicate predicate) booleanObjectShortHashMap.anySatisfy(ShortPredicate predicate) booleanObjectShortHashMap.ValuesCollection.anySatisfy(ShortPredicate predicate) booleanObjectShortHashMapWithHashingStrategy.anySatisfy(ShortPredicate predicate) booleanObjectShortHashMapWithHashingStrategy.ValuesCollection.anySatisfy(ShortPredicate predicate) booleanShortBooleanHashMap.KeysView.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) intImmutableShortMapKeySet.count(ShortPredicate predicate) intImmutableShortShortMapKeySet.count(ShortPredicate predicate) intObjectShortHashMap.count(ShortPredicate predicate) intObjectShortHashMap.ValuesCollection.count(ShortPredicate predicate) intObjectShortHashMapWithHashingStrategy.count(ShortPredicate predicate) intObjectShortHashMapWithHashingStrategy.ValuesCollection.count(ShortPredicate predicate) intShortBooleanHashMap.KeysView.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) shortImmutableShortMapKeySet.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableShortShortMapKeySet.detectIfNone(ShortPredicate predicate, short ifNone) shortObjectShortHashMap.detectIfNone(ShortPredicate predicate, short ifNone) shortObjectShortHashMap.ValuesCollection.detectIfNone(ShortPredicate predicate, short ifNone) shortObjectShortHashMapWithHashingStrategy.detectIfNone(ShortPredicate predicate, short ifNone) shortObjectShortHashMapWithHashingStrategy.ValuesCollection.detectIfNone(ShortPredicate predicate, short ifNone) shortShortBooleanHashMap.KeysView.detectIfNone(ShortPredicate predicate, short value) 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) booleanImmutableShortMapKeySet.noneSatisfy(ShortPredicate predicate) booleanImmutableShortShortMapKeySet.noneSatisfy(ShortPredicate predicate) booleanObjectShortHashMap.noneSatisfy(ShortPredicate predicate) booleanObjectShortHashMap.ValuesCollection.noneSatisfy(ShortPredicate predicate) booleanObjectShortHashMapWithHashingStrategy.noneSatisfy(ShortPredicate predicate) booleanObjectShortHashMapWithHashingStrategy.ValuesCollection.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) ImmutableShortMapKeySet.reject(ShortPredicate predicate) ImmutableShortShortMapKeySet.reject(ShortPredicate predicate) ObjectShortHashMap.reject(ShortPredicate predicate) ObjectShortHashMap.ValuesCollection.reject(ShortPredicate predicate) ObjectShortHashMapWithHashingStrategy.reject(ShortPredicate predicate) ObjectShortHashMapWithHashingStrategy.ValuesCollection.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) ImmutableShortMapKeySet.select(ShortPredicate predicate) ImmutableShortShortMapKeySet.select(ShortPredicate predicate) ObjectShortHashMap.select(ShortPredicate predicate) ObjectShortHashMap.ValuesCollection.select(ShortPredicate predicate) ObjectShortHashMapWithHashingStrategy.select(ShortPredicate predicate) ObjectShortHashMapWithHashingStrategy.ValuesCollection.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.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionbooleanImmutableShortEmptySet.allSatisfy(ShortPredicate predicate) booleanImmutableShortSingletonSet.allSatisfy(ShortPredicate predicate) booleanImmutableShortEmptySet.anySatisfy(ShortPredicate predicate) booleanImmutableShortSingletonSet.anySatisfy(ShortPredicate predicate) intImmutableShortEmptySet.count(ShortPredicate predicate) intImmutableShortSingletonSet.count(ShortPredicate predicate) shortImmutableShortEmptySet.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableShortSingletonSet.detectIfNone(ShortPredicate predicate, short ifNone) booleanImmutableShortEmptySet.noneSatisfy(ShortPredicate predicate) booleanImmutableShortSingletonSet.noneSatisfy(ShortPredicate predicate) ImmutableShortEmptySet.reject(ShortPredicate predicate) ImmutableShortSingletonSet.reject(ShortPredicate predicate) ImmutableShortEmptySet.select(ShortPredicate predicate) ImmutableShortSingletonSet.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.ImmutableShortHashSet.allSatisfy(ShortPredicate predicate) booleanShortHashSet.anySatisfy(ShortPredicate predicate) booleanShortHashSet.ImmutableShortHashSet.anySatisfy(ShortPredicate predicate) intShortHashSet.count(ShortPredicate predicate) intShortHashSet.ImmutableShortHashSet.count(ShortPredicate predicate) shortShortHashSet.detectIfNone(ShortPredicate predicate, short ifNone) shortShortHashSet.ImmutableShortHashSet.detectIfNone(ShortPredicate predicate, short ifNone) booleanShortHashSet.ImmutableShortHashSet.noneSatisfy(ShortPredicate predicate) ShortHashSet.ImmutableShortHashSet.reject(ShortPredicate predicate) ShortHashSet.reject(ShortPredicate predicate) <R extends MutableShortCollection>
RShortHashSet.reject(ShortPredicate predicate, R target) SynchronizedShortSet.reject(ShortPredicate predicate) UnmodifiableShortSet.reject(ShortPredicate predicate) ShortHashSet.ImmutableShortHashSet.select(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.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionbooleanImmutableShortEmptyStack.allSatisfy(ShortPredicate predicate) booleanImmutableShortSingletonStack.allSatisfy(ShortPredicate predicate) booleanImmutableShortEmptyStack.anySatisfy(ShortPredicate predicate) booleanImmutableShortSingletonStack.anySatisfy(ShortPredicate predicate) intImmutableShortEmptyStack.count(ShortPredicate predicate) intImmutableShortSingletonStack.count(ShortPredicate predicate) shortImmutableShortEmptyStack.detectIfNone(ShortPredicate predicate, short ifNone) shortImmutableShortSingletonStack.detectIfNone(ShortPredicate predicate, short ifNone) booleanImmutableShortEmptyStack.noneSatisfy(ShortPredicate predicate) booleanImmutableShortSingletonStack.noneSatisfy(ShortPredicate predicate) ImmutableShortArrayStack.reject(ShortPredicate predicate) ImmutableShortEmptyStack.reject(ShortPredicate predicate) ImmutableShortSingletonStack.reject(ShortPredicate predicate) ImmutableShortArrayStack.select(ShortPredicate predicate) ImmutableShortEmptyStack.select(ShortPredicate predicate) ImmutableShortSingletonStack.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.