Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableObjectCharMap
-
Packages that use ImmutableObjectCharMap 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 ImmutableObjectCharMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableObjectCharMap Modifier and Type Method Description <K> ImmutableObjectCharMap<K>
ImmutableObjectCharMapFactory. empty()
<T,K>
ImmutableObjectCharMap<K>ImmutableObjectCharMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableObjectCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<K> ImmutableObjectCharMap<K>
ImmutableObjectCharMapFactory. of()
<K> ImmutableObjectCharMap<K>
ImmutableObjectCharMapFactory. of(K key, char value)
<K> ImmutableObjectCharMap<K>
ImmutableObjectCharMapFactory. ofAll(ObjectCharMap<? extends K> map)
<K> ImmutableObjectCharMap<K>
ImmutableObjectCharMapFactory. with()
<K> ImmutableObjectCharMap<K>
ImmutableObjectCharMapFactory. with(K key, char value)
<K> ImmutableObjectCharMap<K>
ImmutableObjectCharMapFactory. withAll(ObjectCharMap<? extends K> map)
-
Uses of ImmutableObjectCharMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableObjectCharMap Modifier and Type Method Description ImmutableObjectCharMap<V>
ImmutableCharObjectMap. flipUniqueValues()
ImmutableObjectCharMap<K>
ImmutableObjectCharMap. newWithKeyValue(K key, char 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.ImmutableObjectCharMap<K>
ImmutableObjectCharMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableObjectCharMap<K>
ImmutableObjectCharMap. newWithoutKey(K key)
Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableObjectCharMap<K>
ImmutableObjectCharMap. reject(ObjectCharPredicate<? super K> predicate)
ImmutableObjectCharMap<K>
ImmutableObjectCharMap. select(ObjectCharPredicate<? super K> predicate)
default ImmutableObjectCharMap<K>
ImmutableObjectCharMap. tap(CharProcedure procedure)
ImmutableObjectCharMap<K>
ObjectCharMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableObjectCharMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableObjectCharMap Modifier and Type Class Description class
AbstractImmutableObjectCharMap<V>
This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.(package private) class
ImmutableObjectCharEmptyMap<K>
ImmutableObjectCharEmptyMap is an optimization forImmutableObjectCharMap
of size 0.(package private) class
ImmutableObjectCharHashMap<K>
ImmutableObjectCharHashMap is the non-modifiable equivalent ofObjectCharHashMap
.(package private) class
ImmutableObjectCharSingletonMap<K>
ImmutableObjectCharSingletonMap is an optimization forImmutableObjectCharMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableObjectCharMap Modifier and Type Field Description (package private) static ImmutableObjectCharMap<?>
ImmutableObjectCharEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableObjectCharMap Modifier and Type Method Description <K> ImmutableObjectCharMap<K>
ImmutableObjectCharMapFactoryImpl. empty()
ImmutableObjectCharMap<V>
ImmutableCharObjectEmptyMap. flipUniqueValues()
ImmutableObjectCharMap<V>
ImmutableCharObjectHashMap. flipUniqueValues()
ImmutableObjectCharMap<V>
ImmutableCharObjectSingletonMap. flipUniqueValues()
<T,K>
ImmutableObjectCharMap<K>ImmutableObjectCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, CharFunction<? super T> valueFunction)
ImmutableObjectCharMap<K>
ImmutableObjectCharEmptyMap. newWithKeyValue(K key, char value)
ImmutableObjectCharMap<K>
ImmutableObjectCharHashMap. newWithKeyValue(K key, char value)
ImmutableObjectCharMap<K>
ImmutableObjectCharSingletonMap. newWithKeyValue(K key, char value)
ImmutableObjectCharMap<K>
ImmutableObjectCharEmptyMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
ImmutableObjectCharMap<K>
ImmutableObjectCharHashMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
ImmutableObjectCharMap<K>
ImmutableObjectCharSingletonMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
ImmutableObjectCharMap<K>
ImmutableObjectCharEmptyMap. newWithoutKey(K key)
ImmutableObjectCharMap<K>
ImmutableObjectCharHashMap. newWithoutKey(K key)
ImmutableObjectCharMap<K>
ImmutableObjectCharSingletonMap. newWithoutKey(K key)
<K> ImmutableObjectCharMap<K>
ImmutableObjectCharMapFactoryImpl. of()
<K> ImmutableObjectCharMap<K>
ImmutableObjectCharMapFactoryImpl. of(K key, char value)
<K> ImmutableObjectCharMap<K>
ImmutableObjectCharMapFactoryImpl. ofAll(ObjectCharMap<? extends K> map)
ImmutableObjectCharMap<K>
ImmutableObjectCharEmptyMap. reject(ObjectCharPredicate<? super K> objectCharPredicate)
ImmutableObjectCharMap<K>
ImmutableObjectCharHashMap. reject(ObjectCharPredicate<? super K> objectCharPredicate)
ImmutableObjectCharMap<K>
ImmutableObjectCharSingletonMap. reject(ObjectCharPredicate<? super K> objectCharPredicate)
ImmutableObjectCharMap<K>
ImmutableObjectCharEmptyMap. select(ObjectCharPredicate<? super K> objectCharPredicate)
ImmutableObjectCharMap<K>
ImmutableObjectCharHashMap. select(ObjectCharPredicate<? super K> objectCharPredicate)
ImmutableObjectCharMap<K>
ImmutableObjectCharSingletonMap. select(ObjectCharPredicate<? super K> objectCharPredicate)
ImmutableObjectCharMap<K>
ImmutableObjectCharEmptyMap. toImmutable()
ImmutableObjectCharMap<K>
ImmutableObjectCharHashMap. toImmutable()
ImmutableObjectCharMap<K>
ImmutableObjectCharSingletonMap. toImmutable()
<K> ImmutableObjectCharMap<K>
ImmutableObjectCharMapFactoryImpl. with()
<K> ImmutableObjectCharMap<K>
ImmutableObjectCharMapFactoryImpl. with(K key, char value)
<K> ImmutableObjectCharMap<K>
ImmutableObjectCharMapFactoryImpl. withAll(ObjectCharMap<? extends K> map)
-
Uses of ImmutableObjectCharMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableObjectCharMap Modifier and Type Method Description ImmutableObjectCharMap<K>
ObjectCharHashMap. toImmutable()
ImmutableObjectCharMap<K>
ObjectCharHashMapWithHashingStrategy. toImmutable()
ImmutableObjectCharMap<K>
SynchronizedObjectCharMap. toImmutable()
ImmutableObjectCharMap<K>
UnmodifiableObjectCharMap. toImmutable()
-