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