Uses of Interface
org.eclipse.collections.api.map.primitive.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.
|
| org.eclipse.collections.impl.map.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
-
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().MutableByteCharMapMutableByteCharMapFactory. ofAll(ByteCharMap map)MutableByteCharMapMutableByteCharMapFactory. ofInitialCapacity(int capacity)Same asMutableByteCharMapFactory.empty().MutableByteCharMapMutableByteCharMapFactory. with()Same asMutableByteCharMapFactory.empty().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. -
Uses of MutableByteCharMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableByteCharMap Modifier and Type Class Description classByteCharHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classSynchronizedByteCharMapA synchronized view of aMutableByteCharMap.classUnmodifiableByteCharMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableByteCharMap Modifier and Type Method Description MutableByteCharMapByteCharHashMap. asSynchronized()MutableByteCharMapSynchronizedByteCharMap. asSynchronized()MutableByteCharMapUnmodifiableByteCharMap. asSynchronized()MutableByteCharMapByteCharHashMap. asUnmodifiable()MutableByteCharMapSynchronizedByteCharMap. asUnmodifiable()MutableByteCharMapUnmodifiableByteCharMap. asUnmodifiable()MutableByteCharMapMutableByteCharMapFactoryImpl. empty()MutableByteCharMapCharByteHashMap. flipUniqueValues()MutableByteCharMapSynchronizedCharByteMap. flipUniqueValues()MutableByteCharMapUnmodifiableCharByteMap. flipUniqueValues()<T> MutableByteCharMapMutableByteCharMapFactoryImpl. from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)MutableByteCharMapMutableByteCharMapFactoryImpl. of()MutableByteCharMapMutableByteCharMapFactoryImpl. ofAll(ByteCharMap map)MutableByteCharMapMutableByteCharMapFactoryImpl. ofInitialCapacity(int capacity)MutableByteCharMapSynchronizedByteCharMap. reject(ByteCharPredicate predicate)MutableByteCharMapUnmodifiableByteCharMap. reject(ByteCharPredicate predicate)MutableByteCharMapSynchronizedByteCharMap. select(ByteCharPredicate predicate)MutableByteCharMapUnmodifiableByteCharMap. select(ByteCharPredicate predicate)MutableByteCharMapMutableByteCharMapFactoryImpl. with()MutableByteCharMapMutableByteCharMapFactoryImpl. withAll(ByteCharMap map)MutableByteCharMapMutableByteCharMapFactoryImpl. withInitialCapacity(int capacity)MutableByteCharMapSynchronizedByteCharMap. withKeyValue(byte key, char value)MutableByteCharMapUnmodifiableByteCharMap. withKeyValue(byte key, char value)MutableByteCharMapSynchronizedByteCharMap. withoutAllKeys(ByteIterable keys)MutableByteCharMapUnmodifiableByteCharMap. withoutAllKeys(ByteIterable keys)MutableByteCharMapSynchronizedByteCharMap. withoutKey(byte key)MutableByteCharMapUnmodifiableByteCharMap. withoutKey(byte key)Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableByteCharMap Constructor Description SynchronizedByteCharMap(MutableByteCharMap map)SynchronizedByteCharMap(MutableByteCharMap map, Object newLock)UnmodifiableByteCharMap(MutableByteCharMap map)