Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableCharIntMap
-
Packages that use ImmutableCharIntMap 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 ImmutableCharIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableCharIntMap Modifier and Type Method Description ImmutableCharIntMap
ImmutableCharIntMapFactory. empty()
<T> ImmutableCharIntMap
ImmutableCharIntMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableCharIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharIntMap
ImmutableCharIntMapFactory. of()
Same asImmutableCharIntMapFactory.empty()
.ImmutableCharIntMap
ImmutableCharIntMapFactory. of(char key, int value)
ImmutableCharIntMap
ImmutableCharIntMapFactory. ofAll(CharIntMap map)
ImmutableCharIntMap
ImmutableCharIntMapFactory. with()
Same asImmutableCharIntMapFactory.empty()
.ImmutableCharIntMap
ImmutableCharIntMapFactory. with(char key, int value)
ImmutableCharIntMap
ImmutableCharIntMapFactory. withAll(CharIntMap map)
-
Uses of ImmutableCharIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableCharIntMap Modifier and Type Method Description ImmutableCharIntMap
ImmutableIntCharMap. flipUniqueValues()
ImmutableCharIntMap
ImmutableCharIntMap. newWithKeyValue(char key, int 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.ImmutableCharIntMap
ImmutableCharIntMap. 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.ImmutableCharIntMap
ImmutableCharIntMap. 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.ImmutableCharIntMap
ImmutableCharIntMap. reject(CharIntPredicate predicate)
ImmutableCharIntMap
ImmutableCharIntMap. select(CharIntPredicate predicate)
ImmutableCharIntMap
CharIntMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableCharIntMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableCharIntMap Modifier and Type Class Description (package private) class
ImmutableCharIntEmptyMap
ImmutableCharIntEmptyMap is an optimization forImmutableCharIntMap
of size 0.(package private) class
ImmutableCharIntHashMap
ImmutableCharIntHashMap is the non-modifiable equivalent ofCharIntHashMap
.(package private) class
ImmutableCharIntSingletonMap
ImmutableCharIntSingletonMap is an optimization forImmutableCharIntMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableCharIntMap Modifier and Type Field Description (package private) static ImmutableCharIntMap
ImmutableCharIntEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableCharIntMap Modifier and Type Method Description ImmutableCharIntMap
ImmutableCharIntMapFactoryImpl. empty()
ImmutableCharIntMap
ImmutableIntCharEmptyMap. flipUniqueValues()
ImmutableCharIntMap
ImmutableIntCharHashMap. flipUniqueValues()
ImmutableCharIntMap
ImmutableIntCharSingletonMap. flipUniqueValues()
<T> ImmutableCharIntMap
ImmutableCharIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
ImmutableCharIntMap
ImmutableCharIntEmptyMap. newWithKeyValue(char key, int value)
ImmutableCharIntMap
ImmutableCharIntHashMap. newWithKeyValue(char key, int value)
ImmutableCharIntMap
ImmutableCharIntSingletonMap. newWithKeyValue(char key, int value)
ImmutableCharIntMap
ImmutableCharIntEmptyMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharIntMap
ImmutableCharIntHashMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharIntMap
ImmutableCharIntSingletonMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharIntMap
ImmutableCharIntEmptyMap. newWithoutKey(char key)
ImmutableCharIntMap
ImmutableCharIntHashMap. newWithoutKey(char key)
ImmutableCharIntMap
ImmutableCharIntSingletonMap. newWithoutKey(char key)
ImmutableCharIntMap
ImmutableCharIntMapFactoryImpl. of()
ImmutableCharIntMap
ImmutableCharIntMapFactoryImpl. of(char key, int value)
ImmutableCharIntMap
ImmutableCharIntMapFactoryImpl. ofAll(CharIntMap map)
ImmutableCharIntMap
ImmutableCharIntEmptyMap. reject(CharIntPredicate predicate)
ImmutableCharIntMap
ImmutableCharIntHashMap. reject(CharIntPredicate predicate)
ImmutableCharIntMap
ImmutableCharIntSingletonMap. reject(CharIntPredicate predicate)
ImmutableCharIntMap
ImmutableCharIntEmptyMap. select(CharIntPredicate predicate)
ImmutableCharIntMap
ImmutableCharIntHashMap. select(CharIntPredicate predicate)
ImmutableCharIntMap
ImmutableCharIntSingletonMap. select(CharIntPredicate predicate)
ImmutableCharIntMap
ImmutableCharIntEmptyMap. toImmutable()
ImmutableCharIntMap
ImmutableCharIntHashMap. toImmutable()
ImmutableCharIntMap
ImmutableCharIntSingletonMap. toImmutable()
ImmutableCharIntMap
ImmutableCharIntMapFactoryImpl. with()
ImmutableCharIntMap
ImmutableCharIntMapFactoryImpl. with(char key, int value)
ImmutableCharIntMap
ImmutableCharIntMapFactoryImpl. withAll(CharIntMap map)
-
Uses of ImmutableCharIntMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableCharIntMap Modifier and Type Method Description ImmutableCharIntMap
CharIntHashMap. toImmutable()
ImmutableCharIntMap
SynchronizedCharIntMap. toImmutable()
ImmutableCharIntMap
UnmodifiableCharIntMap. toImmutable()
-