Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.ByteObjectPredicate
-
Packages that use ByteObjectPredicate 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 ByteObjectPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type ByteObjectPredicate Modifier and Type Method Description ByteObjectMap<V>
ByteObjectMap. reject(ByteObjectPredicate<? super V> predicate)
Return a copy of this map containing only the key/value pairs that do not match the predicate.ImmutableByteObjectMap<V>
ImmutableByteObjectMap. reject(ByteObjectPredicate<? super V> predicate)
MutableByteObjectMap<V>
MutableByteObjectMap. reject(ByteObjectPredicate<? super V> predicate)
ByteObjectMap<V>
ByteObjectMap. select(ByteObjectPredicate<? super V> predicate)
Return a copy of this map containing only the key/value pairs that match the predicate.ImmutableByteObjectMap<V>
ImmutableByteObjectMap. select(ByteObjectPredicate<? super V> predicate)
MutableByteObjectMap<V>
MutableByteObjectMap. select(ByteObjectPredicate<? super V> predicate)
-
Uses of ByteObjectPredicate in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type ByteObjectPredicate Modifier and Type Method Description ImmutableByteObjectMap<V>
ImmutableByteObjectEmptyMap. reject(ByteObjectPredicate<? super V> predicate)
ImmutableByteObjectMap<V>
ImmutableByteObjectHashMap. reject(ByteObjectPredicate<? super V> predicate)
ImmutableByteObjectMap<V>
ImmutableByteObjectSingletonMap. reject(ByteObjectPredicate<? super V> predicate)
ImmutableByteObjectMap<V>
ImmutableByteObjectEmptyMap. select(ByteObjectPredicate<? super V> predicate)
ImmutableByteObjectMap<V>
ImmutableByteObjectHashMap. select(ByteObjectPredicate<? super V> predicate)
ImmutableByteObjectMap<V>
ImmutableByteObjectSingletonMap. select(ByteObjectPredicate<? super V> predicate)
-
Uses of ByteObjectPredicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ByteObjectPredicate Modifier and Type Method Description ByteObjectHashMap<V>
ByteObjectHashMap. reject(ByteObjectPredicate<? super V> predicate)
MutableByteObjectMap<V>
SynchronizedByteObjectMap. reject(ByteObjectPredicate<? super V> predicate)
MutableByteObjectMap<V>
UnmodifiableByteObjectMap. reject(ByteObjectPredicate<? super V> predicate)
ByteObjectHashMap<V>
ByteObjectHashMap. select(ByteObjectPredicate<? super V> predicate)
MutableByteObjectMap<V>
SynchronizedByteObjectMap. select(ByteObjectPredicate<? super V> predicate)
MutableByteObjectMap<V>
UnmodifiableByteObjectMap. select(ByteObjectPredicate<? super V> predicate)
-