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