Uses of Interface
org.eclipse.collections.api.map.primitive.MutableShortCharMap
-
Packages that use 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. -
-
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 MutableShortCharMapMutableShortCharMapFactory. empty()<T> MutableShortCharMapMutableShortCharMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableShortCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableShortCharMapMutableShortCharMapFactory. 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)MutableShortCharMapMutableShortCharMapFactory. ofAll(ShortCharMap map)MutableShortCharMapMutableShortCharMapFactory. ofInitialCapacity(int capacity)Same asMutableShortCharMapFactory.empty().MutableShortCharMapMutableShortCharMapFactory. 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)MutableShortCharMapMutableShortCharMapFactory. withAll(ShortCharMap map)MutableShortCharMapMutableShortCharMapFactory. 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 MutableShortCharMapMutableShortCharMap. 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.MutableShortCharMapMutableShortCharMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableShortCharMapMutableCharShortMap. flipUniqueValues()MutableShortCharMapMutableShortCharMap. reject(ShortCharPredicate predicate)MutableShortCharMapMutableShortCharMap. select(ShortCharPredicate predicate)default MutableShortCharMapMutableShortCharMap. withAllKeyValues(Iterable<ShortCharPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableShortCharMapMutableShortCharMap. withKeyValue(short key, char value)Associates a value with the specified key.MutableShortCharMapMutableShortCharMap. withoutAllKeys(ShortIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableShortCharMapMutableShortCharMap. withoutKey(short key)Removes the mapping associated with the key, if one exists, from this map.
-