Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.LongPredicate
-
Packages that use LongPredicate 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 LongPredicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type LongPredicate Modifier and Type Method Description booleanLongIterable. allSatisfy(LongPredicate predicate)Returns true if all of the elements in the LongIterable return true for the specified predicate, otherwise returns false.booleanLongIterable. anySatisfy(LongPredicate predicate)Returns true if any of the elements in the LongIterable return true for the specified predicate, otherwise returns false.intLongIterable. count(LongPredicate predicate)Returns a count of the number of elements in the LongIterable that return true for the specified predicate.longLongIterable. detectIfNone(LongPredicate predicate, long ifNone)default booleanLongIterable. noneSatisfy(LongPredicate predicate)Returns true if none of the elements in the LongIterable return true for the specified predicate, otherwise returns false.LazyLongIterableLazyLongIterable. reject(LongPredicate predicate)LongIterableLongIterable. reject(LongPredicate predicate)Returns a new LongIterable with all of the elements in the LongIterable that return false for the specified predicate.default <R extends MutableLongCollection>
RLongIterable. reject(LongPredicate predicate, R target)Same asLongIterable.reject(LongPredicate), only the results are added to the target MutableLongCollection.LazyLongIterableLazyLongIterable. select(LongPredicate predicate)LongIterableLongIterable. select(LongPredicate predicate)Returns a new LongIterable with all of the elements in the LongIterable that return true for the specified predicate.default <R extends MutableLongCollection>
RLongIterable. select(LongPredicate predicate, R target)Same asLongIterable.select(LongPredicate), only the results are added to the target MutableLongCollection. -
Uses of LongPredicate in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type LongPredicate Modifier and Type Method Description ImmutableLongBagImmutableLongBag. reject(LongPredicate predicate)LongBagLongBag. reject(LongPredicate predicate)MutableLongBagMutableLongBag. reject(LongPredicate predicate)ImmutableLongBagImmutableLongBag. select(LongPredicate predicate)LongBagLongBag. select(LongPredicate predicate)MutableLongBagMutableLongBag. select(LongPredicate predicate) -
Uses of LongPredicate in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type LongPredicate Modifier and Type Method Description ImmutableLongCollectionImmutableLongCollection. reject(LongPredicate predicate)MutableLongCollectionMutableLongCollection. reject(LongPredicate predicate)default booleanMutableLongCollection. removeIf(LongPredicate predicate)ImmutableLongCollectionImmutableLongCollection. select(LongPredicate predicate)MutableLongCollectionMutableLongCollection. select(LongPredicate predicate) -
Uses of LongPredicate in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type LongPredicate Modifier and Type Method Description ImmutableLongListImmutableLongList. reject(LongPredicate predicate)LongListLongList. reject(LongPredicate predicate)MutableLongListMutableLongList. reject(LongPredicate predicate)ImmutableLongListImmutableLongList. select(LongPredicate predicate)LongListLongList. select(LongPredicate predicate)MutableLongListMutableLongList. select(LongPredicate predicate) -
Uses of LongPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type LongPredicate Modifier and Type Method Description ImmutableLongBagImmutableByteLongMap. reject(LongPredicate predicate)ImmutableLongBagImmutableCharLongMap. reject(LongPredicate predicate)ImmutableLongBagImmutableDoubleLongMap. reject(LongPredicate predicate)ImmutableLongBagImmutableFloatLongMap. reject(LongPredicate predicate)ImmutableLongBagImmutableIntLongMap. reject(LongPredicate predicate)ImmutableLongBagImmutableLongLongMap. reject(LongPredicate predicate)ImmutableLongCollectionImmutableObjectLongMap. reject(LongPredicate predicate)ImmutableLongBagImmutableShortLongMap. reject(LongPredicate predicate)LongBagLongValuesMap. reject(LongPredicate predicate)MutableLongBagMutableLongValuesMap. reject(LongPredicate predicate)MutableLongCollectionMutableObjectLongMap. reject(LongPredicate predicate)ImmutableLongBagImmutableByteLongMap. select(LongPredicate predicate)ImmutableLongBagImmutableCharLongMap. select(LongPredicate predicate)ImmutableLongBagImmutableDoubleLongMap. select(LongPredicate predicate)ImmutableLongBagImmutableFloatLongMap. select(LongPredicate predicate)ImmutableLongBagImmutableIntLongMap. select(LongPredicate predicate)ImmutableLongBagImmutableLongLongMap. select(LongPredicate predicate)ImmutableLongCollectionImmutableObjectLongMap. select(LongPredicate predicate)ImmutableLongBagImmutableShortLongMap. select(LongPredicate predicate)LongBagLongValuesMap. select(LongPredicate predicate)MutableLongBagMutableLongValuesMap. select(LongPredicate predicate)MutableLongCollectionMutableObjectLongMap. select(LongPredicate predicate) -
Uses of LongPredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type LongPredicate Modifier and Type Method Description OrderedLongIterableOrderedLongIterable. reject(LongPredicate predicate)ReversibleLongIterableReversibleLongIterable. reject(LongPredicate predicate)OrderedLongIterableOrderedLongIterable. select(LongPredicate predicate)ReversibleLongIterableReversibleLongIterable. select(LongPredicate predicate) -
Uses of LongPredicate in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type LongPredicate Modifier and Type Method Description ImmutableLongSetImmutableLongSet. reject(LongPredicate predicate)LongSetLongSet. reject(LongPredicate predicate)MutableLongSetMutableLongSet. reject(LongPredicate predicate)ImmutableLongSetImmutableLongSet. select(LongPredicate predicate)LongSetLongSet. select(LongPredicate predicate)MutableLongSetMutableLongSet. select(LongPredicate predicate) -
Uses of LongPredicate in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type LongPredicate Modifier and Type Method Description ImmutableLongStackImmutableLongStack. reject(LongPredicate predicate)LongStackLongStack. reject(LongPredicate predicate)MutableLongStackMutableLongStack. reject(LongPredicate predicate)ImmutableLongStackImmutableLongStack. select(LongPredicate predicate)LongStackLongStack. select(LongPredicate predicate)MutableLongStackMutableLongStack. select(LongPredicate predicate)
-