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