Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableCharObjectMap
-
Packages that use ImmutableCharObjectMap Package Description org.eclipse.collections.api.factory.map.primitive 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 ImmutableCharObjectMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableCharObjectMap Modifier and Type Method Description <V> ImmutableCharObjectMap<V>
ImmutableCharObjectMapFactory. empty()
<T,V>
ImmutableCharObjectMap<V>ImmutableCharObjectMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anImmutableCharObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<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 ImmutableCharObjectMap Modifier and Type Method Description ImmutableCharObjectMap<K>
ImmutableObjectCharMap. flipUniqueValues()
ImmutableCharObjectMap<V>
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<V>
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<V>
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<V>
ImmutableCharObjectMap. reject(CharObjectPredicate<? super V> predicate)
ImmutableCharObjectMap<V>
ImmutableCharObjectMap. select(CharObjectPredicate<? super V> predicate)
ImmutableCharObjectMap<V>
ImmutableCharObjectMap. tap(Procedure<? super V> procedure)
ImmutableCharObjectMap<V>
CharObjectMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableCharObjectMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableCharObjectMap Modifier and Type Class Description class
AbstractImmutableCharObjectMap<V>
This file was automatically generated from template file abstractImmutablePrimitiveObjectMap.stg.(package private) class
ImmutableCharObjectEmptyMap<V>
ImmutableCharObjectEmptyMap is an optimization forImmutableCharObjectMap
of size 0.(package private) class
ImmutableCharObjectHashMap<V>
ImmutableCharObjectHashMap is the non-modifiable equivalent ofCharObjectHashMap
.(package private) class
ImmutableCharObjectSingletonMap<V>
ImmutableCharObjectSingletonMap is an optimization forImmutableCharObjectMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableCharObjectMap Modifier and Type Field Description (package private) static ImmutableCharObjectMap<?>
ImmutableCharObjectEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableCharObjectMap Modifier and Type Method Description <V> ImmutableCharObjectMap<V>
ImmutableCharObjectMapFactoryImpl. empty()
ImmutableCharObjectMap<K>
ImmutableObjectCharEmptyMap. flipUniqueValues()
ImmutableCharObjectMap<K>
ImmutableObjectCharHashMap. flipUniqueValues()
ImmutableCharObjectMap<K>
ImmutableObjectCharSingletonMap. flipUniqueValues()
<T,V>
ImmutableCharObjectMap<V>ImmutableCharObjectMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
ImmutableCharObjectMap<V>
ImmutableCharObjectEmptyMap. newWithKeyValue(char key, V value)
ImmutableCharObjectMap<V>
ImmutableCharObjectHashMap. newWithKeyValue(char key, V value)
ImmutableCharObjectMap<V>
ImmutableCharObjectSingletonMap. newWithKeyValue(char key, V value)
ImmutableCharObjectMap<V>
ImmutableCharObjectEmptyMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharObjectMap<V>
ImmutableCharObjectHashMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharObjectMap<V>
ImmutableCharObjectSingletonMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharObjectMap<V>
ImmutableCharObjectEmptyMap. newWithoutKey(char key)
ImmutableCharObjectMap<V>
ImmutableCharObjectHashMap. newWithoutKey(char key)
ImmutableCharObjectMap<V>
ImmutableCharObjectSingletonMap. newWithoutKey(char key)
<V> ImmutableCharObjectMap<V>
ImmutableCharObjectMapFactoryImpl. of()
<V> ImmutableCharObjectMap<V>
ImmutableCharObjectMapFactoryImpl. of(char key, V value)
<V> ImmutableCharObjectMap<V>
ImmutableCharObjectMapFactoryImpl. ofAll(CharObjectMap<? extends V> map)
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)
ImmutableCharObjectMap<V>
ImmutableCharObjectEmptyMap. tap(Procedure<? super V> procedure)
ImmutableCharObjectMap<V>
ImmutableCharObjectHashMap. tap(Procedure<? super V> procedure)
ImmutableCharObjectMap<V>
ImmutableCharObjectSingletonMap. tap(Procedure<? super V> procedure)
ImmutableCharObjectMap<V>
ImmutableCharObjectEmptyMap. toImmutable()
ImmutableCharObjectMap<V>
ImmutableCharObjectHashMap. toImmutable()
ImmutableCharObjectMap<V>
ImmutableCharObjectSingletonMap. toImmutable()
<V> ImmutableCharObjectMap<V>
ImmutableCharObjectMapFactoryImpl. with()
<V> ImmutableCharObjectMap<V>
ImmutableCharObjectMapFactoryImpl. with(char key, V value)
<V> ImmutableCharObjectMap<V>
ImmutableCharObjectMapFactoryImpl. withAll(CharObjectMap<? extends V> map)
-
Uses of ImmutableCharObjectMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableCharObjectMap Modifier and Type Method Description ImmutableCharObjectMap<V>
CharObjectHashMap. toImmutable()
ImmutableCharObjectMap<V>
SynchronizedCharObjectMap. toImmutable()
ImmutableCharObjectMap<V>
UnmodifiableCharObjectMap. toImmutable()
-