Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.CharObjectPredicate
-
Packages that use CharObjectPredicate 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 CharObjectPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type CharObjectPredicate Modifier and Type Method Description CharObjectMap<V>CharObjectMap. reject(CharObjectPredicate<? super V> predicate)Return a copy of this map containing only the key/value pairs that do not match the predicate.ImmutableCharObjectMap<V>ImmutableCharObjectMap. reject(CharObjectPredicate<? super V> predicate)MutableCharObjectMap<V>MutableCharObjectMap. reject(CharObjectPredicate<? super V> predicate)booleanMutableCharObjectMap. removeIf(CharObjectPredicate<? super V> predicate)Remove an entry from the map if thepredicateevaluates to true.CharObjectMap<V>CharObjectMap. select(CharObjectPredicate<? super V> predicate)Return a copy of this map containing only the key/value pairs that match the predicate.ImmutableCharObjectMap<V>ImmutableCharObjectMap. select(CharObjectPredicate<? super V> predicate)MutableCharObjectMap<V>MutableCharObjectMap. select(CharObjectPredicate<? super V> predicate) -
Uses of CharObjectPredicate in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type CharObjectPredicate Modifier and Type Method Description ImmutableCharObjectMap<V>ImmutableCharObjectEmptyMap. reject(CharObjectPredicate<? super V> predicate)ImmutableCharObjectMap<V>ImmutableCharObjectHashMap. reject(CharObjectPredicate<? super V> predicate)ImmutableCharObjectMap<V>ImmutableCharObjectSingletonMap. reject(CharObjectPredicate<? super V> predicate)ImmutableCharObjectMap<V>ImmutableCharObjectEmptyMap. select(CharObjectPredicate<? super V> predicate)ImmutableCharObjectMap<V>ImmutableCharObjectHashMap. select(CharObjectPredicate<? super V> predicate)ImmutableCharObjectMap<V>ImmutableCharObjectSingletonMap. select(CharObjectPredicate<? super V> predicate) -
Uses of CharObjectPredicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type CharObjectPredicate Modifier and Type Method Description CharObjectHashMap<V>CharObjectHashMap. reject(CharObjectPredicate<? super V> predicate)MutableCharObjectMap<V>SynchronizedCharObjectMap. reject(CharObjectPredicate<? super V> predicate)MutableCharObjectMap<V>UnmodifiableCharObjectMap. reject(CharObjectPredicate<? super V> predicate)booleanCharObjectHashMap. removeIf(CharObjectPredicate<? super V> predicate)booleanSynchronizedCharObjectMap. removeIf(CharObjectPredicate<? super V> predicate)booleanUnmodifiableCharObjectMap. removeIf(CharObjectPredicate<? super V> predicate)CharObjectHashMap<V>CharObjectHashMap. select(CharObjectPredicate<? super V> predicate)MutableCharObjectMap<V>SynchronizedCharObjectMap. select(CharObjectPredicate<? super V> predicate)MutableCharObjectMap<V>UnmodifiableCharObjectMap. select(CharObjectPredicate<? super V> predicate)
-