Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.IntObjectPredicate
-
Packages that use IntObjectPredicate 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 IntObjectPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type IntObjectPredicate Modifier and Type Method Description ImmutableIntObjectMap<V>ImmutableIntObjectMap. reject(IntObjectPredicate<? super V> predicate)IntObjectMap<V>IntObjectMap. reject(IntObjectPredicate<? super V> predicate)Return a copy of this map containing only the key/value pairs that do not match the predicate.MutableIntObjectMap<V>MutableIntObjectMap. reject(IntObjectPredicate<? super V> predicate)booleanMutableIntObjectMap. removeIf(IntObjectPredicate<? super V> predicate)Remove an entry from the map if thepredicateevaluates to true.ImmutableIntObjectMap<V>ImmutableIntObjectMap. select(IntObjectPredicate<? super V> predicate)IntObjectMap<V>IntObjectMap. select(IntObjectPredicate<? super V> predicate)Return a copy of this map containing only the key/value pairs that match the predicate.MutableIntObjectMap<V>MutableIntObjectMap. select(IntObjectPredicate<? super V> predicate) -
Uses of IntObjectPredicate in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type IntObjectPredicate Modifier and Type Method Description ImmutableIntObjectMap<V>ImmutableIntObjectEmptyMap. reject(IntObjectPredicate<? super V> predicate)ImmutableIntObjectMap<V>ImmutableIntObjectHashMap. reject(IntObjectPredicate<? super V> predicate)ImmutableIntObjectMap<V>ImmutableIntObjectSingletonMap. reject(IntObjectPredicate<? super V> predicate)ImmutableIntObjectMap<V>ImmutableIntObjectEmptyMap. select(IntObjectPredicate<? super V> predicate)ImmutableIntObjectMap<V>ImmutableIntObjectHashMap. select(IntObjectPredicate<? super V> predicate)ImmutableIntObjectMap<V>ImmutableIntObjectSingletonMap. select(IntObjectPredicate<? super V> predicate) -
Uses of IntObjectPredicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type IntObjectPredicate Modifier and Type Method Description IntObjectHashMap<V>IntObjectHashMap. reject(IntObjectPredicate<? super V> predicate)MutableIntObjectMap<V>SynchronizedIntObjectMap. reject(IntObjectPredicate<? super V> predicate)MutableIntObjectMap<V>UnmodifiableIntObjectMap. reject(IntObjectPredicate<? super V> predicate)booleanIntObjectHashMap. removeIf(IntObjectPredicate<? super V> predicate)booleanSynchronizedIntObjectMap. removeIf(IntObjectPredicate<? super V> predicate)booleanUnmodifiableIntObjectMap. removeIf(IntObjectPredicate<? super V> predicate)IntObjectHashMap<V>IntObjectHashMap. select(IntObjectPredicate<? super V> predicate)MutableIntObjectMap<V>SynchronizedIntObjectMap. select(IntObjectPredicate<? super V> predicate)MutableIntObjectMap<V>UnmodifiableIntObjectMap. select(IntObjectPredicate<? super V> predicate)
-