Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableCharCharMap
-
Packages that use ImmutableCharCharMap 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 ImmutableCharCharMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableCharCharMap Modifier and Type Method Description ImmutableCharCharMap
ImmutableCharCharMapFactory. empty()
<T> ImmutableCharCharMap
ImmutableCharCharMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableCharCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharCharMap
ImmutableCharCharMapFactory. of()
Same asImmutableCharCharMapFactory.empty()
.ImmutableCharCharMap
ImmutableCharCharMapFactory. of(char key, char value)
ImmutableCharCharMap
ImmutableCharCharMapFactory. ofAll(CharCharMap map)
ImmutableCharCharMap
ImmutableCharCharMapFactory. with()
Same asImmutableCharCharMapFactory.empty()
.ImmutableCharCharMap
ImmutableCharCharMapFactory. with(char key, char value)
ImmutableCharCharMap
ImmutableCharCharMapFactory. withAll(CharCharMap map)
-
Uses of ImmutableCharCharMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableCharCharMap Modifier and Type Method Description ImmutableCharCharMap
ImmutableCharCharMap. flipUniqueValues()
ImmutableCharCharMap
ImmutableCharCharMap. newWithKeyValue(char 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.ImmutableCharCharMap
ImmutableCharCharMap. 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.ImmutableCharCharMap
ImmutableCharCharMap. 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.ImmutableCharCharMap
ImmutableCharCharMap. reject(CharCharPredicate predicate)
ImmutableCharCharMap
ImmutableCharCharMap. select(CharCharPredicate predicate)
ImmutableCharCharMap
CharCharMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableCharCharMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableCharCharMap Modifier and Type Class Description (package private) class
ImmutableCharCharEmptyMap
ImmutableCharCharEmptyMap is an optimization forImmutableCharCharMap
of size 0.(package private) class
ImmutableCharCharHashMap
ImmutableCharCharHashMap is the non-modifiable equivalent ofCharCharHashMap
.(package private) class
ImmutableCharCharSingletonMap
ImmutableCharCharSingletonMap is an optimization forImmutableCharCharMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableCharCharMap Modifier and Type Field Description (package private) static ImmutableCharCharMap
ImmutableCharCharEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableCharCharMap Modifier and Type Method Description ImmutableCharCharMap
ImmutableCharCharMapFactoryImpl. empty()
ImmutableCharCharMap
ImmutableCharCharEmptyMap. flipUniqueValues()
ImmutableCharCharMap
ImmutableCharCharHashMap. flipUniqueValues()
ImmutableCharCharMap
ImmutableCharCharSingletonMap. flipUniqueValues()
<T> ImmutableCharCharMap
ImmutableCharCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
ImmutableCharCharMap
ImmutableCharCharEmptyMap. newWithKeyValue(char key, char value)
ImmutableCharCharMap
ImmutableCharCharHashMap. newWithKeyValue(char key, char value)
ImmutableCharCharMap
ImmutableCharCharSingletonMap. newWithKeyValue(char key, char value)
ImmutableCharCharMap
ImmutableCharCharEmptyMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharCharMap
ImmutableCharCharHashMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharCharMap
ImmutableCharCharSingletonMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharCharMap
ImmutableCharCharEmptyMap. newWithoutKey(char key)
ImmutableCharCharMap
ImmutableCharCharHashMap. newWithoutKey(char key)
ImmutableCharCharMap
ImmutableCharCharSingletonMap. newWithoutKey(char key)
ImmutableCharCharMap
ImmutableCharCharMapFactoryImpl. of()
ImmutableCharCharMap
ImmutableCharCharMapFactoryImpl. of(char key, char value)
ImmutableCharCharMap
ImmutableCharCharMapFactoryImpl. ofAll(CharCharMap map)
ImmutableCharCharMap
ImmutableCharCharEmptyMap. reject(CharCharPredicate predicate)
ImmutableCharCharMap
ImmutableCharCharHashMap. reject(CharCharPredicate predicate)
ImmutableCharCharMap
ImmutableCharCharSingletonMap. reject(CharCharPredicate predicate)
ImmutableCharCharMap
ImmutableCharCharEmptyMap. select(CharCharPredicate predicate)
ImmutableCharCharMap
ImmutableCharCharHashMap. select(CharCharPredicate predicate)
ImmutableCharCharMap
ImmutableCharCharSingletonMap. select(CharCharPredicate predicate)
ImmutableCharCharMap
ImmutableCharCharEmptyMap. toImmutable()
ImmutableCharCharMap
ImmutableCharCharHashMap. toImmutable()
ImmutableCharCharMap
ImmutableCharCharSingletonMap. toImmutable()
ImmutableCharCharMap
ImmutableCharCharMapFactoryImpl. with()
ImmutableCharCharMap
ImmutableCharCharMapFactoryImpl. with(char key, char value)
ImmutableCharCharMap
ImmutableCharCharMapFactoryImpl. withAll(CharCharMap map)
-
Uses of ImmutableCharCharMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableCharCharMap Modifier and Type Method Description ImmutableCharCharMap
CharCharHashMap. toImmutable()
ImmutableCharCharMap
SynchronizedCharCharMap. toImmutable()
ImmutableCharCharMap
UnmodifiableCharCharMap. toImmutable()
-