Uses of Interface
org.eclipse.collections.api.map.primitive.MutableLongShortMap
| 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 MutableLongShortMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableLongShortMap Modifier and Type Method Description MutableLongShortMapMutableLongShortMapFactory. empty()<T> MutableLongShortMapMutableLongShortMapFactory. from(Iterable<T> iterable, LongFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableLongShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongShortMapMutableLongShortMapFactory. of()Same asMutableLongShortMapFactory.empty().MutableLongShortMapMutableLongShortMapFactory. ofAll(LongShortMap map)MutableLongShortMapMutableLongShortMapFactory. ofInitialCapacity(int capacity)Same asMutableLongShortMapFactory.empty().MutableLongShortMapMutableLongShortMapFactory. with()Same asMutableLongShortMapFactory.empty().MutableLongShortMapMutableLongShortMapFactory. withAll(LongShortMap map)MutableLongShortMapMutableLongShortMapFactory. withInitialCapacity(int capacity)Same asMutableLongShortMapFactory.empty(). -
Uses of MutableLongShortMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableLongShortMap Modifier and Type Method Description MutableLongShortMapMutableLongShortMap. 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.MutableLongShortMapMutableLongShortMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableLongShortMapMutableShortLongMap. flipUniqueValues()MutableLongShortMapMutableLongShortMap. reject(LongShortPredicate predicate)MutableLongShortMapMutableLongShortMap. select(LongShortPredicate predicate)default MutableLongShortMapMutableLongShortMap. withAllKeyValues(Iterable<LongShortPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableLongShortMapMutableLongShortMap. withKeyValue(long key, short value)Associates a value with the specified key.MutableLongShortMapMutableLongShortMap. withoutAllKeys(LongIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableLongShortMapMutableLongShortMap. withoutKey(long key)Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableLongShortMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableLongShortMap Modifier and Type Class Description classLongShortHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classSynchronizedLongShortMapA synchronized view of aMutableLongShortMap.classUnmodifiableLongShortMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableLongShortMap Modifier and Type Method Description MutableLongShortMapLongShortHashMap. asSynchronized()MutableLongShortMapSynchronizedLongShortMap. asSynchronized()MutableLongShortMapUnmodifiableLongShortMap. asSynchronized()MutableLongShortMapLongShortHashMap. asUnmodifiable()MutableLongShortMapSynchronizedLongShortMap. asUnmodifiable()MutableLongShortMapUnmodifiableLongShortMap. asUnmodifiable()MutableLongShortMapMutableLongShortMapFactoryImpl. empty()MutableLongShortMapShortLongHashMap. flipUniqueValues()MutableLongShortMapSynchronizedShortLongMap. flipUniqueValues()MutableLongShortMapUnmodifiableShortLongMap. flipUniqueValues()<T> MutableLongShortMapMutableLongShortMapFactoryImpl. from(Iterable<T> iterable, LongFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)MutableLongShortMapMutableLongShortMapFactoryImpl. of()MutableLongShortMapMutableLongShortMapFactoryImpl. ofAll(LongShortMap map)MutableLongShortMapMutableLongShortMapFactoryImpl. ofInitialCapacity(int capacity)MutableLongShortMapSynchronizedLongShortMap. reject(LongShortPredicate predicate)MutableLongShortMapUnmodifiableLongShortMap. reject(LongShortPredicate predicate)MutableLongShortMapSynchronizedLongShortMap. select(LongShortPredicate predicate)MutableLongShortMapUnmodifiableLongShortMap. select(LongShortPredicate predicate)MutableLongShortMapMutableLongShortMapFactoryImpl. with()MutableLongShortMapMutableLongShortMapFactoryImpl. withAll(LongShortMap map)MutableLongShortMapMutableLongShortMapFactoryImpl. withInitialCapacity(int capacity)MutableLongShortMapSynchronizedLongShortMap. withKeyValue(long key, short value)MutableLongShortMapUnmodifiableLongShortMap. withKeyValue(long key, short value)MutableLongShortMapSynchronizedLongShortMap. withoutAllKeys(LongIterable keys)MutableLongShortMapUnmodifiableLongShortMap. withoutAllKeys(LongIterable keys)MutableLongShortMapSynchronizedLongShortMap. withoutKey(long key)MutableLongShortMapUnmodifiableLongShortMap. withoutKey(long key)Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableLongShortMap Constructor Description SynchronizedLongShortMap(MutableLongShortMap map)SynchronizedLongShortMap(MutableLongShortMap map, Object newLock)UnmodifiableLongShortMap(MutableLongShortMap map)