Uses of Interface
org.eclipse.collections.api.map.primitive.MutableShortCharMap
Packages that use MutableShortCharMap
Package
Description
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
-
Uses of MutableShortCharMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableShortCharMapModifier and TypeMethodDescriptionMutableShortCharMapFactory.empty()MutableShortCharMapFactory.from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableShortCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableShortCharMapFactory.of()Same asMutableShortCharMapFactory.empty().default MutableShortCharMapMutableShortCharMapFactory.of(short key, char value) default MutableShortCharMapMutableShortCharMapFactory.of(short key1, char value1, short key2, char value2) default MutableShortCharMapMutableShortCharMapFactory.of(short key1, char value1, short key2, char value2, short key3, char value3) default MutableShortCharMapMutableShortCharMapFactory.of(short key1, char value1, short key2, char value2, short key3, char value3, short key4, char value4) MutableShortCharMapFactory.ofAll(ShortCharMap map) MutableShortCharMapFactory.ofInitialCapacity(int capacity) Same asMutableShortCharMapFactory.empty(). but takes in an initial capacityMutableShortCharMapFactory.with()Same asMutableShortCharMapFactory.empty().default MutableShortCharMapMutableShortCharMapFactory.with(short key, char value) default MutableShortCharMapMutableShortCharMapFactory.with(short key1, char value1, short key2, char value2) default MutableShortCharMapMutableShortCharMapFactory.with(short key1, char value1, short key2, char value2, short key3, char value3) default MutableShortCharMapMutableShortCharMapFactory.with(short key1, char value1, short key2, char value2, short key3, char value3, short key4, char value4) MutableShortCharMapFactory.withAll(ShortCharMap map) MutableShortCharMapFactory.withInitialCapacity(int capacity) Same asMutableShortCharMapFactory.empty(). but takes in an initial capacity -
Uses of MutableShortCharMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableShortCharMapModifier and TypeMethodDescriptionMutableShortCharMap.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.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableCharShortMap.flipUniqueValues()MutableShortCharMap.reject(ShortCharPredicate predicate) MutableShortCharMap.select(ShortCharPredicate predicate) default MutableShortCharMapMutableShortCharMap.withAllKeyValues(Iterable<ShortCharPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableShortCharMap.withKeyValue(short key, char value) Associates a value with the specified key.MutableShortCharMap.withoutAllKeys(ShortIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableShortCharMap.withoutKey(short key) Removes the mapping associated with the key, if one exists, from this map.