Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.ShortPredicate
-
Packages that use ShortPredicate Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.collection.primitive This package contains mutable and immutable primitive collection API.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.ordered.primitive org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.api.stack.primitive This package contains mutable and immutable primitive stack API. -
-
Uses of ShortPredicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type ShortPredicate Modifier and Type Method Description booleanShortIterable. 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.LazyShortIterableLazyShortIterable. reject(ShortPredicate predicate)ShortIterableShortIterable. 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.LazyShortIterableLazyShortIterable. select(ShortPredicate predicate)ShortIterableShortIterable. 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 ShortPredicate Modifier and Type Method Description ImmutableShortBagImmutableShortBag. reject(ShortPredicate predicate)MutableShortBagMutableShortBag. reject(ShortPredicate predicate)ShortBagShortBag. reject(ShortPredicate predicate)ImmutableShortBagImmutableShortBag. select(ShortPredicate predicate)MutableShortBagMutableShortBag. select(ShortPredicate predicate)ShortBagShortBag. 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 ShortPredicate Modifier and Type Method Description ImmutableShortCollectionImmutableShortCollection. reject(ShortPredicate predicate)MutableShortCollectionMutableShortCollection. reject(ShortPredicate predicate)default booleanMutableShortCollection. removeIf(ShortPredicate predicate)ImmutableShortCollectionImmutableShortCollection. select(ShortPredicate predicate)MutableShortCollectionMutableShortCollection. 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 ShortPredicate Modifier and Type Method Description ImmutableShortListImmutableShortList. reject(ShortPredicate predicate)MutableShortListMutableShortList. reject(ShortPredicate predicate)ShortListShortList. reject(ShortPredicate predicate)ImmutableShortListImmutableShortList. select(ShortPredicate predicate)MutableShortListMutableShortList. select(ShortPredicate predicate)ShortListShortList. 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 ShortPredicate Modifier and Type Method Description ImmutableShortBagImmutableByteShortMap. reject(ShortPredicate predicate)ImmutableShortBagImmutableCharShortMap. reject(ShortPredicate predicate)ImmutableShortBagImmutableDoubleShortMap. reject(ShortPredicate predicate)ImmutableShortBagImmutableFloatShortMap. reject(ShortPredicate predicate)ImmutableShortBagImmutableIntShortMap. reject(ShortPredicate predicate)ImmutableShortBagImmutableLongShortMap. reject(ShortPredicate predicate)ImmutableShortCollectionImmutableObjectShortMap. reject(ShortPredicate predicate)ImmutableShortBagImmutableShortShortMap. reject(ShortPredicate predicate)MutableShortCollectionMutableObjectShortMap. reject(ShortPredicate predicate)MutableShortBagMutableShortValuesMap. reject(ShortPredicate predicate)ShortBagShortValuesMap. reject(ShortPredicate predicate)ImmutableShortBagImmutableByteShortMap. select(ShortPredicate predicate)ImmutableShortBagImmutableCharShortMap. select(ShortPredicate predicate)ImmutableShortBagImmutableDoubleShortMap. select(ShortPredicate predicate)ImmutableShortBagImmutableFloatShortMap. select(ShortPredicate predicate)ImmutableShortBagImmutableIntShortMap. select(ShortPredicate predicate)ImmutableShortBagImmutableLongShortMap. select(ShortPredicate predicate)ImmutableShortCollectionImmutableObjectShortMap. select(ShortPredicate predicate)ImmutableShortBagImmutableShortShortMap. select(ShortPredicate predicate)MutableShortCollectionMutableObjectShortMap. select(ShortPredicate predicate)MutableShortBagMutableShortValuesMap. select(ShortPredicate predicate)ShortBagShortValuesMap. 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 ShortPredicate Modifier and Type Method Description OrderedShortIterableOrderedShortIterable. reject(ShortPredicate predicate)ReversibleShortIterableReversibleShortIterable. reject(ShortPredicate predicate)OrderedShortIterableOrderedShortIterable. select(ShortPredicate predicate)ReversibleShortIterableReversibleShortIterable. 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 ShortPredicate Modifier and Type Method Description ImmutableShortSetImmutableShortSet. reject(ShortPredicate predicate)MutableShortSetMutableShortSet. reject(ShortPredicate predicate)ShortSetShortSet. reject(ShortPredicate predicate)ImmutableShortSetImmutableShortSet. select(ShortPredicate predicate)MutableShortSetMutableShortSet. select(ShortPredicate predicate)ShortSetShortSet. 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 ShortPredicate Modifier and Type Method Description ImmutableShortStackImmutableShortStack. reject(ShortPredicate predicate)MutableShortStackMutableShortStack. reject(ShortPredicate predicate)ShortStackShortStack. reject(ShortPredicate predicate)ImmutableShortStackImmutableShortStack. select(ShortPredicate predicate)MutableShortStackMutableShortStack. select(ShortPredicate predicate)ShortStackShortStack. select(ShortPredicate predicate)
-