Uses of Interface
org.eclipse.collections.api.map.primitive.MutableCharByteMap
-
Packages that use MutableCharByteMap 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.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.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 MutableCharByteMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableCharByteMap Modifier and Type Method Description MutableCharByteMapMutableCharByteMapFactory. empty()<T> MutableCharByteMapMutableCharByteMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableCharByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharByteMapMutableCharByteMapFactory. of()Same asMutableCharByteMapFactory.empty().default MutableCharByteMapMutableCharByteMapFactory. of(char key, byte value)default MutableCharByteMapMutableCharByteMapFactory. of(char key1, byte value1, char key2, byte value2)default MutableCharByteMapMutableCharByteMapFactory. of(char key1, byte value1, char key2, byte value2, char key3, byte value3)default MutableCharByteMapMutableCharByteMapFactory. of(char key1, byte value1, char key2, byte value2, char key3, byte value3, char key4, byte value4)MutableCharByteMapMutableCharByteMapFactory. ofAll(CharByteMap map)MutableCharByteMapMutableCharByteMapFactory. ofInitialCapacity(int capacity)Same asMutableCharByteMapFactory.empty().MutableCharByteMapMutableCharByteMapFactory. with()Same asMutableCharByteMapFactory.empty().default MutableCharByteMapMutableCharByteMapFactory. with(char key, byte value)default MutableCharByteMapMutableCharByteMapFactory. with(char key1, byte value1, char key2, byte value2)default MutableCharByteMapMutableCharByteMapFactory. with(char key1, byte value1, char key2, byte value2, char key3, byte value3)default MutableCharByteMapMutableCharByteMapFactory. with(char key1, byte value1, char key2, byte value2, char key3, byte value3, char key4, byte value4)MutableCharByteMapMutableCharByteMapFactory. withAll(CharByteMap map)MutableCharByteMapMutableCharByteMapFactory. withInitialCapacity(int capacity)Same asMutableCharByteMapFactory.empty(). -
Uses of MutableCharByteMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableCharByteMap Modifier and Type Method Description MutableCharByteMapMutableCharByteMap. 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.MutableCharByteMapMutableCharByteMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableCharByteMapMutableByteCharMap. flipUniqueValues()MutableCharByteMapMutableCharByteMap. reject(CharBytePredicate predicate)MutableCharByteMapMutableCharByteMap. select(CharBytePredicate predicate)default MutableCharByteMapMutableCharByteMap. withAllKeyValues(java.lang.Iterable<CharBytePair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableCharByteMapMutableCharByteMap. withKeyValue(char key, byte value)Associates a value with the specified key.MutableCharByteMapMutableCharByteMap. withoutAllKeys(CharIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableCharByteMapMutableCharByteMap. withoutKey(char key)Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableCharByteMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableCharByteMap Modifier and Type Field Description private MutableCharByteMapImmutableCharByteHashMap. delegate -
Uses of MutableCharByteMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableCharByteMap Modifier and Type Class Description classCharByteHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classSynchronizedCharByteMapA synchronized view of aMutableCharByteMap.classUnmodifiableCharByteMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableCharByteMap Modifier and Type Field Description private MutableCharByteMapSynchronizedCharByteMap. mapprivate MutableCharByteMapUnmodifiableCharByteMap. mapMethods in org.eclipse.collections.impl.map.mutable.primitive that return MutableCharByteMap Modifier and Type Method Description MutableCharByteMapCharByteHashMap. asSynchronized()MutableCharByteMapSynchronizedCharByteMap. asSynchronized()MutableCharByteMapUnmodifiableCharByteMap. asSynchronized()MutableCharByteMapCharByteHashMap. asUnmodifiable()MutableCharByteMapSynchronizedCharByteMap. asUnmodifiable()MutableCharByteMapUnmodifiableCharByteMap. asUnmodifiable()MutableCharByteMapMutableCharByteMapFactoryImpl. empty()MutableCharByteMapByteCharHashMap. flipUniqueValues()MutableCharByteMapSynchronizedByteCharMap. flipUniqueValues()MutableCharByteMapUnmodifiableByteCharMap. flipUniqueValues()<T> MutableCharByteMapMutableCharByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)MutableCharByteMapMutableCharByteMapFactoryImpl. of()MutableCharByteMapMutableCharByteMapFactoryImpl. of(char key, byte value)MutableCharByteMapMutableCharByteMapFactoryImpl. of(char key1, byte value1, char key2, byte value2)MutableCharByteMapMutableCharByteMapFactoryImpl. of(char key1, byte value1, char key2, byte value2, char key3, byte value3)MutableCharByteMapMutableCharByteMapFactoryImpl. of(char key1, byte value1, char key2, byte value2, char key3, byte value3, char key4, byte value4)MutableCharByteMapMutableCharByteMapFactoryImpl. ofAll(CharByteMap map)MutableCharByteMapMutableCharByteMapFactoryImpl. ofInitialCapacity(int capacity)MutableCharByteMapSynchronizedCharByteMap. reject(CharBytePredicate predicate)MutableCharByteMapUnmodifiableCharByteMap. reject(CharBytePredicate predicate)MutableCharByteMapSynchronizedCharByteMap. select(CharBytePredicate predicate)MutableCharByteMapUnmodifiableCharByteMap. select(CharBytePredicate predicate)MutableCharByteMapMutableCharByteMapFactoryImpl. with()MutableCharByteMapMutableCharByteMapFactoryImpl. with(char key, byte value)MutableCharByteMapMutableCharByteMapFactoryImpl. with(char key1, byte value1, char key2, byte value2)MutableCharByteMapMutableCharByteMapFactoryImpl. with(char key1, byte value1, char key2, byte value2, char key3, byte value3)MutableCharByteMapMutableCharByteMapFactoryImpl. with(char key1, byte value1, char key2, byte value2, char key3, byte value3, char key4, byte value4)MutableCharByteMapMutableCharByteMapFactoryImpl. withAll(CharByteMap map)MutableCharByteMapMutableCharByteMapFactoryImpl. withInitialCapacity(int capacity)MutableCharByteMapSynchronizedCharByteMap. withKeyValue(char key, byte value)MutableCharByteMapUnmodifiableCharByteMap. withKeyValue(char key, byte value)MutableCharByteMapSynchronizedCharByteMap. withoutAllKeys(CharIterable keys)MutableCharByteMapUnmodifiableCharByteMap. withoutAllKeys(CharIterable keys)MutableCharByteMapSynchronizedCharByteMap. withoutKey(char key)MutableCharByteMapUnmodifiableCharByteMap. withoutKey(char key)Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableCharByteMap Constructor Description SynchronizedCharByteMap(MutableCharByteMap map)SynchronizedCharByteMap(MutableCharByteMap map, java.lang.Object newLock)UnmodifiableCharByteMap(MutableCharByteMap map)
-