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