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