Uses of Interface
org.eclipse.collections.api.map.primitive.MutableCharShortMap
| 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 MutableCharShortMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableCharShortMap Modifier and Type Method Description MutableCharShortMapMutableCharShortMapFactory. empty()<T> MutableCharShortMapMutableCharShortMapFactory. from(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableCharShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharShortMapMutableCharShortMapFactory. of()Same asMutableCharShortMapFactory.empty().MutableCharShortMapMutableCharShortMapFactory. ofAll(CharShortMap map)MutableCharShortMapMutableCharShortMapFactory. ofInitialCapacity(int capacity)Same asMutableCharShortMapFactory.empty().MutableCharShortMapMutableCharShortMapFactory. with()Same asMutableCharShortMapFactory.empty().MutableCharShortMapMutableCharShortMapFactory. withAll(CharShortMap map)MutableCharShortMapMutableCharShortMapFactory. withInitialCapacity(int capacity)Same asMutableCharShortMapFactory.empty(). -
Uses of MutableCharShortMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableCharShortMap Modifier and Type Method Description MutableCharShortMapMutableCharShortMap. 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.MutableCharShortMapMutableCharShortMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableCharShortMapMutableShortCharMap. flipUniqueValues()MutableCharShortMapMutableCharShortMap. reject(CharShortPredicate predicate)MutableCharShortMapMutableCharShortMap. select(CharShortPredicate predicate)default MutableCharShortMapMutableCharShortMap. withAllKeyValues(Iterable<CharShortPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableCharShortMapMutableCharShortMap. withKeyValue(char key, short value)Associates a value with the specified key.MutableCharShortMapMutableCharShortMap. withoutAllKeys(CharIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableCharShortMapMutableCharShortMap. withoutKey(char key)Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableCharShortMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableCharShortMap Modifier and Type Class Description classCharShortHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classSynchronizedCharShortMapA synchronized view of aMutableCharShortMap.classUnmodifiableCharShortMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableCharShortMap Modifier and Type Method Description MutableCharShortMapCharShortHashMap. asSynchronized()MutableCharShortMapSynchronizedCharShortMap. asSynchronized()MutableCharShortMapUnmodifiableCharShortMap. asSynchronized()MutableCharShortMapCharShortHashMap. asUnmodifiable()MutableCharShortMapSynchronizedCharShortMap. asUnmodifiable()MutableCharShortMapUnmodifiableCharShortMap. asUnmodifiable()MutableCharShortMapMutableCharShortMapFactoryImpl. empty()MutableCharShortMapShortCharHashMap. flipUniqueValues()MutableCharShortMapSynchronizedShortCharMap. flipUniqueValues()MutableCharShortMapUnmodifiableShortCharMap. flipUniqueValues()<T> MutableCharShortMapMutableCharShortMapFactoryImpl. from(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)MutableCharShortMapMutableCharShortMapFactoryImpl. of()MutableCharShortMapMutableCharShortMapFactoryImpl. ofAll(CharShortMap map)MutableCharShortMapMutableCharShortMapFactoryImpl. ofInitialCapacity(int capacity)MutableCharShortMapSynchronizedCharShortMap. reject(CharShortPredicate predicate)MutableCharShortMapUnmodifiableCharShortMap. reject(CharShortPredicate predicate)MutableCharShortMapSynchronizedCharShortMap. select(CharShortPredicate predicate)MutableCharShortMapUnmodifiableCharShortMap. select(CharShortPredicate predicate)MutableCharShortMapMutableCharShortMapFactoryImpl. with()MutableCharShortMapMutableCharShortMapFactoryImpl. withAll(CharShortMap map)MutableCharShortMapMutableCharShortMapFactoryImpl. withInitialCapacity(int capacity)MutableCharShortMapSynchronizedCharShortMap. withKeyValue(char key, short value)MutableCharShortMapUnmodifiableCharShortMap. withKeyValue(char key, short value)MutableCharShortMapSynchronizedCharShortMap. withoutAllKeys(CharIterable keys)MutableCharShortMapUnmodifiableCharShortMap. withoutAllKeys(CharIterable keys)MutableCharShortMapSynchronizedCharShortMap. withoutKey(char key)MutableCharShortMapUnmodifiableCharShortMap. withoutKey(char key)Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableCharShortMap Constructor Description SynchronizedCharShortMap(MutableCharShortMap map)SynchronizedCharShortMap(MutableCharShortMap map, Object newLock)UnmodifiableCharShortMap(MutableCharShortMap map)