Uses of Interface
org.eclipse.collections.api.map.primitive.MutableShortIntMap
| 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 MutableShortIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableShortIntMap Modifier and Type Method Description MutableShortIntMapMutableShortIntMapFactory. empty()<T> MutableShortIntMapMutableShortIntMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableShortIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableShortIntMapMutableShortIntMapFactory. of()Same asMutableShortIntMapFactory.empty().MutableShortIntMapMutableShortIntMapFactory. ofAll(ShortIntMap map)MutableShortIntMapMutableShortIntMapFactory. ofInitialCapacity(int capacity)Same asMutableShortIntMapFactory.empty().MutableShortIntMapMutableShortIntMapFactory. with()Same asMutableShortIntMapFactory.empty().MutableShortIntMapMutableShortIntMapFactory. withAll(ShortIntMap map)MutableShortIntMapMutableShortIntMapFactory. withInitialCapacity(int capacity)Same asMutableShortIntMapFactory.empty(). -
Uses of MutableShortIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableShortIntMap Modifier and Type Method Description MutableShortIntMapMutableShortIntMap. 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.MutableShortIntMapMutableShortIntMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableShortIntMapMutableIntShortMap. flipUniqueValues()MutableShortIntMapMutableShortIntMap. reject(ShortIntPredicate predicate)MutableShortIntMapMutableShortIntMap. select(ShortIntPredicate predicate)default MutableShortIntMapMutableShortIntMap. withAllKeyValues(Iterable<ShortIntPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableShortIntMapMutableShortIntMap. withKeyValue(short key, int value)Associates a value with the specified key.MutableShortIntMapMutableShortIntMap. withoutAllKeys(ShortIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableShortIntMapMutableShortIntMap. withoutKey(short key)Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableShortIntMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableShortIntMap Modifier and Type Class Description classShortIntHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classSynchronizedShortIntMapA synchronized view of aMutableShortIntMap.classUnmodifiableShortIntMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableShortIntMap Modifier and Type Method Description MutableShortIntMapShortIntHashMap. asSynchronized()MutableShortIntMapSynchronizedShortIntMap. asSynchronized()MutableShortIntMapUnmodifiableShortIntMap. asSynchronized()MutableShortIntMapShortIntHashMap. asUnmodifiable()MutableShortIntMapSynchronizedShortIntMap. asUnmodifiable()MutableShortIntMapUnmodifiableShortIntMap. asUnmodifiable()MutableShortIntMapMutableShortIntMapFactoryImpl. empty()MutableShortIntMapIntShortHashMap. flipUniqueValues()MutableShortIntMapSynchronizedIntShortMap. flipUniqueValues()MutableShortIntMapUnmodifiableIntShortMap. flipUniqueValues()<T> MutableShortIntMapMutableShortIntMapFactoryImpl. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)MutableShortIntMapMutableShortIntMapFactoryImpl. of()MutableShortIntMapMutableShortIntMapFactoryImpl. ofAll(ShortIntMap map)MutableShortIntMapMutableShortIntMapFactoryImpl. ofInitialCapacity(int capacity)MutableShortIntMapSynchronizedShortIntMap. reject(ShortIntPredicate predicate)MutableShortIntMapUnmodifiableShortIntMap. reject(ShortIntPredicate predicate)MutableShortIntMapSynchronizedShortIntMap. select(ShortIntPredicate predicate)MutableShortIntMapUnmodifiableShortIntMap. select(ShortIntPredicate predicate)MutableShortIntMapMutableShortIntMapFactoryImpl. with()MutableShortIntMapMutableShortIntMapFactoryImpl. withAll(ShortIntMap map)MutableShortIntMapMutableShortIntMapFactoryImpl. withInitialCapacity(int capacity)MutableShortIntMapSynchronizedShortIntMap. withKeyValue(short key, int value)MutableShortIntMapUnmodifiableShortIntMap. withKeyValue(short key, int value)MutableShortIntMapSynchronizedShortIntMap. withoutAllKeys(ShortIterable keys)MutableShortIntMapUnmodifiableShortIntMap. withoutAllKeys(ShortIterable keys)MutableShortIntMapSynchronizedShortIntMap. withoutKey(short key)MutableShortIntMapUnmodifiableShortIntMap. withoutKey(short key)Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableShortIntMap Constructor Description SynchronizedShortIntMap(MutableShortIntMap map)SynchronizedShortIntMap(MutableShortIntMap map, Object newLock)UnmodifiableShortIntMap(MutableShortIntMap map)