Uses of Interface
org.eclipse.collections.api.map.primitive.MutableShortCharMap
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.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
-
Uses of MutableShortCharMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableShortCharMap Modifier and Type Method Description MutableShortCharMap
MutableShortCharMapFactory. empty()
<T> MutableShortCharMap
MutableShortCharMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anMutableShortCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableShortCharMap
MutableShortCharMapFactory. of()
Same asMutableShortCharMapFactory.empty()
.MutableShortCharMap
MutableShortCharMapFactory. ofAll(ShortCharMap map)
MutableShortCharMap
MutableShortCharMapFactory. ofInitialCapacity(int capacity)
Same asMutableShortCharMapFactory.empty()
.MutableShortCharMap
MutableShortCharMapFactory. with()
Same asMutableShortCharMapFactory.empty()
.MutableShortCharMap
MutableShortCharMapFactory. withAll(ShortCharMap map)
MutableShortCharMap
MutableShortCharMapFactory. withInitialCapacity(int capacity)
Same asMutableShortCharMapFactory.empty()
. -
Uses of MutableShortCharMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableShortCharMap Modifier and Type Method Description MutableShortCharMap
MutableShortCharMap. asSynchronized()
Returns a synchronized view of this map, delegating all operations to this map but ensuring only one caller has access to the map at a time.MutableShortCharMap
MutableShortCharMap. asUnmodifiable()
Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationException
for all mutating operations.MutableShortCharMap
MutableCharShortMap. flipUniqueValues()
MutableShortCharMap
MutableShortCharMap. reject(ShortCharPredicate predicate)
MutableShortCharMap
MutableShortCharMap. select(ShortCharPredicate predicate)
default MutableShortCharMap
MutableShortCharMap. withAllKeyValues(Iterable<ShortCharPair> keyValuePairs)
Puts all of the key/value mappings from the specified pairs into this map.MutableShortCharMap
MutableShortCharMap. withKeyValue(short key, char value)
Associates a value with the specified key.MutableShortCharMap
MutableShortCharMap. withoutAllKeys(ShortIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableShortCharMap
MutableShortCharMap. withoutKey(short key)
Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableShortCharMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableShortCharMap Modifier and Type Class Description class
ShortCharHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
SynchronizedShortCharMap
A synchronized view of aMutableShortCharMap
.class
UnmodifiableShortCharMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableShortCharMap Modifier and Type Method Description MutableShortCharMap
ShortCharHashMap. asSynchronized()
MutableShortCharMap
SynchronizedShortCharMap. asSynchronized()
MutableShortCharMap
UnmodifiableShortCharMap. asSynchronized()
MutableShortCharMap
ShortCharHashMap. asUnmodifiable()
MutableShortCharMap
SynchronizedShortCharMap. asUnmodifiable()
MutableShortCharMap
UnmodifiableShortCharMap. asUnmodifiable()
MutableShortCharMap
MutableShortCharMapFactoryImpl. empty()
MutableShortCharMap
CharShortHashMap. flipUniqueValues()
MutableShortCharMap
SynchronizedCharShortMap. flipUniqueValues()
MutableShortCharMap
UnmodifiableCharShortMap. flipUniqueValues()
<T> MutableShortCharMap
MutableShortCharMapFactoryImpl. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
MutableShortCharMap
MutableShortCharMapFactoryImpl. of()
MutableShortCharMap
MutableShortCharMapFactoryImpl. ofAll(ShortCharMap map)
MutableShortCharMap
MutableShortCharMapFactoryImpl. ofInitialCapacity(int capacity)
MutableShortCharMap
SynchronizedShortCharMap. reject(ShortCharPredicate predicate)
MutableShortCharMap
UnmodifiableShortCharMap. reject(ShortCharPredicate predicate)
MutableShortCharMap
SynchronizedShortCharMap. select(ShortCharPredicate predicate)
MutableShortCharMap
UnmodifiableShortCharMap. select(ShortCharPredicate predicate)
MutableShortCharMap
MutableShortCharMapFactoryImpl. with()
MutableShortCharMap
MutableShortCharMapFactoryImpl. withAll(ShortCharMap map)
MutableShortCharMap
MutableShortCharMapFactoryImpl. withInitialCapacity(int capacity)
MutableShortCharMap
SynchronizedShortCharMap. withKeyValue(short key, char value)
MutableShortCharMap
UnmodifiableShortCharMap. withKeyValue(short key, char value)
MutableShortCharMap
SynchronizedShortCharMap. withoutAllKeys(ShortIterable keys)
MutableShortCharMap
UnmodifiableShortCharMap. withoutAllKeys(ShortIterable keys)
MutableShortCharMap
SynchronizedShortCharMap. withoutKey(short key)
MutableShortCharMap
UnmodifiableShortCharMap. withoutKey(short key)
Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableShortCharMap Constructor Description SynchronizedShortCharMap(MutableShortCharMap map)
SynchronizedShortCharMap(MutableShortCharMap map, Object newLock)
UnmodifiableShortCharMap(MutableShortCharMap map)