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