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. -
-
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)booleanMutableByteObjectMap. removeIf(ByteObjectPredicate<? super V> predicate)Remove an entry from the map if thepredicateevaluates to true.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)
-