Uses of Interface
org.eclipse.collections.api.map.primitive.MutableCharShortMap
-
Packages that use MutableCharShortMap 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 MutableCharShortMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableCharShortMap Modifier and Type Method Description MutableCharShortMapMutableCharShortMapFactory. empty()<T> MutableCharShortMapMutableCharShortMapFactory. from(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableCharShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharShortMapMutableCharShortMapFactory. of()Same asMutableCharShortMapFactory.empty().default MutableCharShortMapMutableCharShortMapFactory. of(char key, short value)default MutableCharShortMapMutableCharShortMapFactory. of(char key1, short value1, char key2, short value2)default MutableCharShortMapMutableCharShortMapFactory. of(char key1, short value1, char key2, short value2, char key3, short value3)default MutableCharShortMapMutableCharShortMapFactory. of(char key1, short value1, char key2, short value2, char key3, short value3, char key4, short value4)MutableCharShortMapMutableCharShortMapFactory. ofAll(CharShortMap map)MutableCharShortMapMutableCharShortMapFactory. ofInitialCapacity(int capacity)Same asMutableCharShortMapFactory.empty().MutableCharShortMapMutableCharShortMapFactory. with()Same asMutableCharShortMapFactory.empty().default MutableCharShortMapMutableCharShortMapFactory. with(char key, short value)default MutableCharShortMapMutableCharShortMapFactory. with(char key1, short value1, char key2, short value2)default MutableCharShortMapMutableCharShortMapFactory. with(char key1, short value1, char key2, short value2, char key3, short value3)default MutableCharShortMapMutableCharShortMapFactory. with(char key1, short value1, char key2, short value2, char key3, short value3, char key4, short value4)MutableCharShortMapMutableCharShortMapFactory. withAll(CharShortMap map)MutableCharShortMapMutableCharShortMapFactory. withInitialCapacity(int capacity)Same asMutableCharShortMapFactory.empty(). -
Uses of MutableCharShortMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableCharShortMap Modifier and Type Method Description MutableCharShortMapMutableCharShortMap. 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.MutableCharShortMapMutableCharShortMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableCharShortMapMutableShortCharMap. flipUniqueValues()MutableCharShortMapMutableCharShortMap. reject(CharShortPredicate predicate)MutableCharShortMapMutableCharShortMap. select(CharShortPredicate predicate)default MutableCharShortMapMutableCharShortMap. withAllKeyValues(Iterable<CharShortPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableCharShortMapMutableCharShortMap. withKeyValue(char key, short value)Associates a value with the specified key.MutableCharShortMapMutableCharShortMap. withoutAllKeys(CharIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableCharShortMapMutableCharShortMap. withoutKey(char key)Removes the mapping associated with the key, if one exists, from this map.
-