Uses of Interface
org.eclipse.collections.api.map.primitive.MutableShortCharMap
| 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 MutableShortCharMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableShortCharMap Modifier and Type Method Description MutableShortCharMapMutableShortCharMapFactory. empty()<T> MutableShortCharMapMutableShortCharMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableShortCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableShortCharMapMutableShortCharMapFactory. of()Same asMutableShortCharMapFactory.empty().MutableShortCharMapMutableShortCharMapFactory. ofAll(ShortCharMap map)MutableShortCharMapMutableShortCharMapFactory. ofInitialCapacity(int capacity)Same asMutableShortCharMapFactory.empty().MutableShortCharMapMutableShortCharMapFactory. with()Same asMutableShortCharMapFactory.empty().MutableShortCharMapMutableShortCharMapFactory. withAll(ShortCharMap map)MutableShortCharMapMutableShortCharMapFactory. 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 MutableShortCharMap Modifier and Type Method Description MutableShortCharMapMutableShortCharMap. 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.MutableShortCharMapMutableShortCharMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableShortCharMapMutableCharShortMap. flipUniqueValues()MutableShortCharMapMutableShortCharMap. reject(ShortCharPredicate predicate)MutableShortCharMapMutableShortCharMap. select(ShortCharPredicate predicate)default MutableShortCharMapMutableShortCharMap. withAllKeyValues(Iterable<ShortCharPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableShortCharMapMutableShortCharMap. withKeyValue(short key, char value)Associates a value with the specified key.MutableShortCharMapMutableShortCharMap. withoutAllKeys(ShortIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableShortCharMapMutableShortCharMap. 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.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableShortCharMap Modifier and Type Class Description classShortCharHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classSynchronizedShortCharMapA synchronized view of aMutableShortCharMap.classUnmodifiableShortCharMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableShortCharMap Modifier and Type Method Description MutableShortCharMapShortCharHashMap. asSynchronized()MutableShortCharMapSynchronizedShortCharMap. asSynchronized()MutableShortCharMapUnmodifiableShortCharMap. asSynchronized()MutableShortCharMapShortCharHashMap. asUnmodifiable()MutableShortCharMapSynchronizedShortCharMap. asUnmodifiable()MutableShortCharMapUnmodifiableShortCharMap. asUnmodifiable()MutableShortCharMapMutableShortCharMapFactoryImpl. empty()MutableShortCharMapCharShortHashMap. flipUniqueValues()MutableShortCharMapSynchronizedCharShortMap. flipUniqueValues()MutableShortCharMapUnmodifiableCharShortMap. flipUniqueValues()<T> MutableShortCharMapMutableShortCharMapFactoryImpl. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)MutableShortCharMapMutableShortCharMapFactoryImpl. of()MutableShortCharMapMutableShortCharMapFactoryImpl. ofAll(ShortCharMap map)MutableShortCharMapMutableShortCharMapFactoryImpl. ofInitialCapacity(int capacity)MutableShortCharMapSynchronizedShortCharMap. reject(ShortCharPredicate predicate)MutableShortCharMapUnmodifiableShortCharMap. reject(ShortCharPredicate predicate)MutableShortCharMapSynchronizedShortCharMap. select(ShortCharPredicate predicate)MutableShortCharMapUnmodifiableShortCharMap. select(ShortCharPredicate predicate)MutableShortCharMapMutableShortCharMapFactoryImpl. with()MutableShortCharMapMutableShortCharMapFactoryImpl. withAll(ShortCharMap map)MutableShortCharMapMutableShortCharMapFactoryImpl. withInitialCapacity(int capacity)MutableShortCharMapSynchronizedShortCharMap. withKeyValue(short key, char value)MutableShortCharMapUnmodifiableShortCharMap. withKeyValue(short key, char value)MutableShortCharMapSynchronizedShortCharMap. withoutAllKeys(ShortIterable keys)MutableShortCharMapUnmodifiableShortCharMap. withoutAllKeys(ShortIterable keys)MutableShortCharMapSynchronizedShortCharMap. withoutKey(short key)MutableShortCharMapUnmodifiableShortCharMap. withoutKey(short key)Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableShortCharMap Constructor Description SynchronizedShortCharMap(MutableShortCharMap map)SynchronizedShortCharMap(MutableShortCharMap map, Object newLock)UnmodifiableShortCharMap(MutableShortCharMap map)