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