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