Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.ObjectLongPredicate
-
Packages that use ObjectLongPredicate Package Description 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.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces. -
-
Uses of ObjectLongPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type ObjectLongPredicate Modifier and Type Method Description ImmutableObjectLongMap<K>
ImmutableObjectLongMap. reject(ObjectLongPredicate<? super K> predicate)
MutableObjectLongMap<K>
MutableObjectLongMap. reject(ObjectLongPredicate<? super K> predicate)
ObjectLongMap<K>
ObjectLongMap. reject(ObjectLongPredicate<? super K> predicate)
Return a copy of this map containing only the key/value pairs that do not match the predicate.ImmutableObjectLongMap<K>
ImmutableObjectLongMap. select(ObjectLongPredicate<? super K> predicate)
MutableObjectLongMap<K>
MutableObjectLongMap. select(ObjectLongPredicate<? super K> predicate)
ObjectLongMap<K>
ObjectLongMap. select(ObjectLongPredicate<? super K> predicate)
Return a copy of this map containing only the key/value pairs that match the predicate. -
Uses of ObjectLongPredicate in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type ObjectLongPredicate Modifier and Type Method Description ImmutableObjectLongMap<K>
ImmutableObjectLongEmptyMap. reject(ObjectLongPredicate<? super K> objectLongPredicate)
ImmutableObjectLongMap<K>
ImmutableObjectLongHashMap. reject(ObjectLongPredicate<? super K> objectLongPredicate)
ImmutableObjectLongMap<K>
ImmutableObjectLongSingletonMap. reject(ObjectLongPredicate<? super K> objectLongPredicate)
ImmutableObjectLongMap<K>
ImmutableObjectLongEmptyMap. select(ObjectLongPredicate<? super K> objectLongPredicate)
ImmutableObjectLongMap<K>
ImmutableObjectLongHashMap. select(ObjectLongPredicate<? super K> objectLongPredicate)
ImmutableObjectLongMap<K>
ImmutableObjectLongSingletonMap. select(ObjectLongPredicate<? super K> objectLongPredicate)
-
Uses of ObjectLongPredicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ObjectLongPredicate Modifier and Type Method Description ObjectLongHashMap<K>
ObjectLongHashMap. reject(ObjectLongPredicate<? super K> predicate)
ObjectLongHashMapWithHashingStrategy<K>
ObjectLongHashMapWithHashingStrategy. reject(ObjectLongPredicate<? super K> predicate)
MutableObjectLongMap<K>
SynchronizedObjectLongMap. reject(ObjectLongPredicate<? super K> predicate)
MutableObjectLongMap<K>
UnmodifiableObjectLongMap. reject(ObjectLongPredicate<? super K> predicate)
ObjectLongHashMap<K>
ObjectLongHashMap. select(ObjectLongPredicate<? super K> predicate)
ObjectLongHashMapWithHashingStrategy<K>
ObjectLongHashMapWithHashingStrategy. select(ObjectLongPredicate<? super K> predicate)
MutableObjectLongMap<K>
SynchronizedObjectLongMap. select(ObjectLongPredicate<? super K> predicate)
MutableObjectLongMap<K>
UnmodifiableObjectLongMap. select(ObjectLongPredicate<? super K> predicate)
-