Uses of Interface
org.eclipse.collections.api.map.primitive.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(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
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableCharIntMap Modifier and Type Method Description ImmutableCharIntMap
ImmutableCharIntMapFactoryImpl. empty()
<T> ImmutableCharIntMap
ImmutableCharIntMapFactoryImpl. from(Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
ImmutableCharIntMap
ImmutableCharIntMapFactoryImpl. of()
ImmutableCharIntMap
ImmutableCharIntMapFactoryImpl. of(char key, int value)
ImmutableCharIntMap
ImmutableCharIntMapFactoryImpl. ofAll(CharIntMap map)
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()