Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableShortCharMap
-
Packages that use ImmutableShortCharMap 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 ImmutableShortCharMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableShortCharMap Modifier and Type Method Description ImmutableShortCharMap
ImmutableShortCharMapFactory. empty()
<T> ImmutableShortCharMap
ImmutableShortCharMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableShortCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortCharMap
ImmutableShortCharMapFactory. of()
Same asImmutableShortCharMapFactory.empty()
.ImmutableShortCharMap
ImmutableShortCharMapFactory. of(short key, char value)
ImmutableShortCharMap
ImmutableShortCharMapFactory. ofAll(ShortCharMap map)
ImmutableShortCharMap
ImmutableShortCharMapFactory. with()
Same asImmutableShortCharMapFactory.empty()
.ImmutableShortCharMap
ImmutableShortCharMapFactory. with(short key, char value)
ImmutableShortCharMap
ImmutableShortCharMapFactory. withAll(ShortCharMap map)
-
Uses of ImmutableShortCharMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableShortCharMap Modifier and Type Method Description ImmutableShortCharMap
ImmutableCharShortMap. flipUniqueValues()
ImmutableShortCharMap
ImmutableShortCharMap. newWithKeyValue(short 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.ImmutableShortCharMap
ImmutableShortCharMap. newWithoutAllKeys(ShortIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableShortCharMap
ImmutableShortCharMap. newWithoutKey(short key)
Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableShortCharMap
ImmutableShortCharMap. reject(ShortCharPredicate predicate)
ImmutableShortCharMap
ImmutableShortCharMap. select(ShortCharPredicate predicate)
ImmutableShortCharMap
ShortCharMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableShortCharMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableShortCharMap Modifier and Type Class Description (package private) class
ImmutableShortCharEmptyMap
ImmutableShortCharEmptyMap is an optimization forImmutableShortCharMap
of size 0.(package private) class
ImmutableShortCharHashMap
ImmutableShortCharHashMap is the non-modifiable equivalent ofShortCharHashMap
.(package private) class
ImmutableShortCharSingletonMap
ImmutableShortCharSingletonMap is an optimization forImmutableShortCharMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableShortCharMap Modifier and Type Field Description (package private) static ImmutableShortCharMap
ImmutableShortCharEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableShortCharMap Modifier and Type Method Description ImmutableShortCharMap
ImmutableShortCharMapFactoryImpl. empty()
ImmutableShortCharMap
ImmutableCharShortEmptyMap. flipUniqueValues()
ImmutableShortCharMap
ImmutableCharShortHashMap. flipUniqueValues()
ImmutableShortCharMap
ImmutableCharShortSingletonMap. flipUniqueValues()
<T> ImmutableShortCharMap
ImmutableShortCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
ImmutableShortCharMap
ImmutableShortCharEmptyMap. newWithKeyValue(short key, char value)
ImmutableShortCharMap
ImmutableShortCharHashMap. newWithKeyValue(short key, char value)
ImmutableShortCharMap
ImmutableShortCharSingletonMap. newWithKeyValue(short key, char value)
ImmutableShortCharMap
ImmutableShortCharEmptyMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortCharMap
ImmutableShortCharHashMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortCharMap
ImmutableShortCharSingletonMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortCharMap
ImmutableShortCharEmptyMap. newWithoutKey(short key)
ImmutableShortCharMap
ImmutableShortCharHashMap. newWithoutKey(short key)
ImmutableShortCharMap
ImmutableShortCharSingletonMap. newWithoutKey(short key)
ImmutableShortCharMap
ImmutableShortCharMapFactoryImpl. of()
ImmutableShortCharMap
ImmutableShortCharMapFactoryImpl. of(short key, char value)
ImmutableShortCharMap
ImmutableShortCharMapFactoryImpl. ofAll(ShortCharMap map)
ImmutableShortCharMap
ImmutableShortCharEmptyMap. reject(ShortCharPredicate predicate)
ImmutableShortCharMap
ImmutableShortCharHashMap. reject(ShortCharPredicate predicate)
ImmutableShortCharMap
ImmutableShortCharSingletonMap. reject(ShortCharPredicate predicate)
ImmutableShortCharMap
ImmutableShortCharEmptyMap. select(ShortCharPredicate predicate)
ImmutableShortCharMap
ImmutableShortCharHashMap. select(ShortCharPredicate predicate)
ImmutableShortCharMap
ImmutableShortCharSingletonMap. select(ShortCharPredicate predicate)
ImmutableShortCharMap
ImmutableShortCharEmptyMap. toImmutable()
ImmutableShortCharMap
ImmutableShortCharHashMap. toImmutable()
ImmutableShortCharMap
ImmutableShortCharSingletonMap. toImmutable()
ImmutableShortCharMap
ImmutableShortCharMapFactoryImpl. with()
ImmutableShortCharMap
ImmutableShortCharMapFactoryImpl. with(short key, char value)
ImmutableShortCharMap
ImmutableShortCharMapFactoryImpl. withAll(ShortCharMap map)
-
Uses of ImmutableShortCharMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableShortCharMap Modifier and Type Method Description ImmutableShortCharMap
ShortCharHashMap. toImmutable()
ImmutableShortCharMap
SynchronizedShortCharMap. toImmutable()
ImmutableShortCharMap
UnmodifiableShortCharMap. toImmutable()
-