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