Uses of Interface
org.eclipse.collections.api.map.primitive.MutableShortCharMap
Packages that use MutableShortCharMap
Package
Description
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
-
Uses of MutableShortCharMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableShortCharMapModifier and TypeMethodDescriptionMutableShortCharMapFactory.empty()MutableShortCharMapFactory.from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableShortCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableShortCharMapFactory.of()Same asMutableShortCharMapFactory.empty().default MutableShortCharMapMutableShortCharMapFactory.of(short key, char value) default MutableShortCharMapMutableShortCharMapFactory.of(short key1, char value1, short key2, char value2) default MutableShortCharMapMutableShortCharMapFactory.of(short key1, char value1, short key2, char value2, short key3, char value3) default MutableShortCharMapMutableShortCharMapFactory.of(short key1, char value1, short key2, char value2, short key3, char value3, short key4, char value4) MutableShortCharMapFactory.ofAll(ShortCharMap map) MutableShortCharMapFactory.ofInitialCapacity(int capacity) Same asMutableShortCharMapFactory.empty().MutableShortCharMapFactory.with()Same asMutableShortCharMapFactory.empty().default MutableShortCharMapMutableShortCharMapFactory.with(short key, char value) default MutableShortCharMapMutableShortCharMapFactory.with(short key1, char value1, short key2, char value2) default MutableShortCharMapMutableShortCharMapFactory.with(short key1, char value1, short key2, char value2, short key3, char value3) default MutableShortCharMapMutableShortCharMapFactory.with(short key1, char value1, short key2, char value2, short key3, char value3, short key4, char value4) MutableShortCharMapFactory.withAll(ShortCharMap map) MutableShortCharMapFactory.withInitialCapacity(int capacity) Same asMutableShortCharMapFactory.empty(). -
Uses of MutableShortCharMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableShortCharMapModifier and TypeMethodDescriptionMutableShortCharMap.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.MutableShortCharMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableCharShortMap.flipUniqueValues()MutableShortCharMap.reject(ShortCharPredicate predicate) MutableShortCharMap.select(ShortCharPredicate predicate) default MutableShortCharMapMutableShortCharMap.withAllKeyValues(Iterable<ShortCharPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableShortCharMap.withKeyValue(short key, char value) Associates a value with the specified key.MutableShortCharMap.withoutAllKeys(ShortIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableShortCharMap.withoutKey(short key) Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableShortCharMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableShortCharMapModifier and TypeFieldDescriptionprivate final MutableShortCharMapImmutableShortCharHashMap.delegate -
Uses of MutableShortCharMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableShortCharMapModifier and TypeClassDescriptionclassThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classA synchronized view of aMutableShortCharMap.classThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableShortCharMapModifier and TypeFieldDescriptionprivate final MutableShortCharMapSynchronizedShortCharMap.mapprivate final MutableShortCharMapUnmodifiableShortCharMap.mapMethods in org.eclipse.collections.impl.map.mutable.primitive that return MutableShortCharMapModifier and TypeMethodDescriptionShortCharHashMap.asSynchronized()SynchronizedShortCharMap.asSynchronized()UnmodifiableShortCharMap.asSynchronized()ShortCharHashMap.asUnmodifiable()SynchronizedShortCharMap.asUnmodifiable()UnmodifiableShortCharMap.asUnmodifiable()MutableShortCharMapFactoryImpl.empty()CharShortHashMap.flipUniqueValues()SynchronizedCharShortMap.flipUniqueValues()UnmodifiableCharShortMap.flipUniqueValues()MutableShortCharMapFactoryImpl.from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) MutableShortCharMapFactoryImpl.of()MutableShortCharMapFactoryImpl.of(short key, char value) MutableShortCharMapFactoryImpl.of(short key1, char value1, short key2, char value2) MutableShortCharMapFactoryImpl.of(short key1, char value1, short key2, char value2, short key3, char value3) MutableShortCharMapFactoryImpl.of(short key1, char value1, short key2, char value2, short key3, char value3, short key4, char value4) MutableShortCharMapFactoryImpl.ofAll(ShortCharMap map) MutableShortCharMapFactoryImpl.ofInitialCapacity(int capacity) SynchronizedShortCharMap.reject(ShortCharPredicate predicate) UnmodifiableShortCharMap.reject(ShortCharPredicate predicate) SynchronizedShortCharMap.select(ShortCharPredicate predicate) UnmodifiableShortCharMap.select(ShortCharPredicate predicate) MutableShortCharMapFactoryImpl.with()MutableShortCharMapFactoryImpl.with(short key, char value) MutableShortCharMapFactoryImpl.with(short key1, char value1, short key2, char value2) MutableShortCharMapFactoryImpl.with(short key1, char value1, short key2, char value2, short key3, char value3) MutableShortCharMapFactoryImpl.with(short key1, char value1, short key2, char value2, short key3, char value3, short key4, char value4) MutableShortCharMapFactoryImpl.withAll(ShortCharMap map) MutableShortCharMapFactoryImpl.withInitialCapacity(int capacity) SynchronizedShortCharMap.withKeyValue(short key, char value) UnmodifiableShortCharMap.withKeyValue(short key, char value) SynchronizedShortCharMap.withoutAllKeys(ShortIterable keys) UnmodifiableShortCharMap.withoutAllKeys(ShortIterable keys) SynchronizedShortCharMap.withoutKey(short key) UnmodifiableShortCharMap.withoutKey(short key) Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableShortCharMap