Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableCharObjectMap
Packages that use ImmutableCharObjectMap
Package
Description
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 ImmutableCharObjectMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableCharObjectMapModifier and TypeMethodDescription<V> ImmutableCharObjectMap<V>ImmutableCharObjectMapFactory.empty()<T,V> ImmutableCharObjectMap<V> ImmutableCharObjectMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) Creates anImmutableCharObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<V> ImmutableCharObjectMap<V>ImmutableCharObjectMapFactory.of()<V> ImmutableCharObjectMap<V>ImmutableCharObjectMapFactory.of(char key, V value) <V> ImmutableCharObjectMap<V>ImmutableCharObjectMapFactory.ofAll(CharObjectMap<? extends V> map) <V> ImmutableCharObjectMap<V>ImmutableCharObjectMapFactory.with()<V> ImmutableCharObjectMap<V>ImmutableCharObjectMapFactory.with(char key, V value) <V> ImmutableCharObjectMap<V>ImmutableCharObjectMapFactory.withAll(CharObjectMap<? extends V> map) -
Uses of ImmutableCharObjectMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableCharObjectMapModifier and TypeMethodDescriptionImmutableObjectCharMap.flipUniqueValues()ImmutableCharObjectMap.newWithKeyValue(char key, V value) Copy this map, associate the value with the key (replacing the value if one already exists forkey), and return the copy as new immutable map.ImmutableCharObjectMap.newWithoutAllKeys(CharIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableCharObjectMap.newWithoutKey(char key) Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableCharObjectMap.reject(CharObjectPredicate<? super V> predicate) ImmutableCharObjectMap.select(CharObjectPredicate<? super V> predicate) CharObjectMap.toImmutable()Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable.