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