Uses of Interface
org.eclipse.collections.api.map.primitive.MutableIntShortMap
| 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 MutableIntShortMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableIntShortMap Modifier and Type Method Description MutableIntShortMapMutableIntShortMapFactory. empty()<T> MutableIntShortMapMutableIntShortMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableIntShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntShortMapMutableIntShortMapFactory. of()Same asMutableIntShortMapFactory.empty().MutableIntShortMapMutableIntShortMapFactory. ofAll(IntShortMap map)MutableIntShortMapMutableIntShortMapFactory. ofInitialCapacity(int capacity)Same asMutableIntShortMapFactory.empty().MutableIntShortMapMutableIntShortMapFactory. with()Same asMutableIntShortMapFactory.empty().MutableIntShortMapMutableIntShortMapFactory. withAll(IntShortMap map)MutableIntShortMapMutableIntShortMapFactory. withInitialCapacity(int capacity)Same asMutableIntShortMapFactory.empty(). -
Uses of MutableIntShortMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableIntShortMap Modifier and Type Method Description MutableIntShortMapMutableIntShortMap. 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.MutableIntShortMapMutableIntShortMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableIntShortMapMutableShortIntMap. flipUniqueValues()MutableIntShortMapMutableIntShortMap. reject(IntShortPredicate predicate)MutableIntShortMapMutableIntShortMap. select(IntShortPredicate predicate)default MutableIntShortMapMutableIntShortMap. withAllKeyValues(Iterable<IntShortPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableIntShortMapMutableIntShortMap. withKeyValue(int key, short value)Associates a value with the specified key.MutableIntShortMapMutableIntShortMap. withoutAllKeys(IntIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableIntShortMapMutableIntShortMap. withoutKey(int key)Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableIntShortMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableIntShortMap Modifier and Type Class Description classIntShortHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classSynchronizedIntShortMapA synchronized view of aMutableIntShortMap.classUnmodifiableIntShortMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableIntShortMap Modifier and Type Method Description MutableIntShortMapIntShortHashMap. asSynchronized()MutableIntShortMapSynchronizedIntShortMap. asSynchronized()MutableIntShortMapUnmodifiableIntShortMap. asSynchronized()MutableIntShortMapIntShortHashMap. asUnmodifiable()MutableIntShortMapSynchronizedIntShortMap. asUnmodifiable()MutableIntShortMapUnmodifiableIntShortMap. asUnmodifiable()MutableIntShortMapMutableIntShortMapFactoryImpl. empty()MutableIntShortMapShortIntHashMap. flipUniqueValues()MutableIntShortMapSynchronizedShortIntMap. flipUniqueValues()MutableIntShortMapUnmodifiableShortIntMap. flipUniqueValues()<T> MutableIntShortMapMutableIntShortMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)MutableIntShortMapMutableIntShortMapFactoryImpl. of()MutableIntShortMapMutableIntShortMapFactoryImpl. ofAll(IntShortMap map)MutableIntShortMapMutableIntShortMapFactoryImpl. ofInitialCapacity(int capacity)MutableIntShortMapSynchronizedIntShortMap. reject(IntShortPredicate predicate)MutableIntShortMapUnmodifiableIntShortMap. reject(IntShortPredicate predicate)MutableIntShortMapSynchronizedIntShortMap. select(IntShortPredicate predicate)MutableIntShortMapUnmodifiableIntShortMap. select(IntShortPredicate predicate)MutableIntShortMapMutableIntShortMapFactoryImpl. with()MutableIntShortMapMutableIntShortMapFactoryImpl. withAll(IntShortMap map)MutableIntShortMapMutableIntShortMapFactoryImpl. withInitialCapacity(int capacity)MutableIntShortMapSynchronizedIntShortMap. withKeyValue(int key, short value)MutableIntShortMapUnmodifiableIntShortMap. withKeyValue(int key, short value)MutableIntShortMapSynchronizedIntShortMap. withoutAllKeys(IntIterable keys)MutableIntShortMapUnmodifiableIntShortMap. withoutAllKeys(IntIterable keys)MutableIntShortMapSynchronizedIntShortMap. withoutKey(int key)MutableIntShortMapUnmodifiableIntShortMap. withoutKey(int key)Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableIntShortMap Constructor Description SynchronizedIntShortMap(MutableIntShortMap map)SynchronizedIntShortMap(MutableIntShortMap map, Object newLock)UnmodifiableIntShortMap(MutableIntShortMap map)