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