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