Uses of Interface
org.eclipse.collections.api.map.primitive.MutableObjectShortMap
-
Packages that use MutableObjectShortMap 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.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.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 MutableObjectShortMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableObjectShortMap Modifier and Type Method Description <K> MutableObjectShortMap<K>
MutableObjectShortHashingStrategyMapFactory. empty(HashingStrategy<? super K> hashingStrategy)
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactory. empty()
<T,K>
MutableObjectShortMap<K>MutableObjectShortMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ShortFunction<? super T> valueFunction)
Creates anMutableObjectShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<K> MutableObjectShortMap<K>
MutableObjectShortHashingStrategyMapFactory. of(HashingStrategy<? super K> hashingStrategy)
Same as#empty()
.<K> MutableObjectShortMap<K>
MutableObjectShortMapFactory. of()
Same asMutableObjectShortMapFactory.empty()
.default <K> MutableObjectShortMap<K>
MutableObjectShortMapFactory. of(K key, short value)
default <K> MutableObjectShortMap<K>
MutableObjectShortMapFactory. of(K key1, short value1, K key2, short value2)
default <K> MutableObjectShortMap<K>
MutableObjectShortMapFactory. of(K key1, short value1, K key2, short value2, K key3, short value3)
default <K> MutableObjectShortMap<K>
MutableObjectShortMapFactory. of(K key1, short value1, K key2, short value2, K key3, short value3, K key4, short value4)
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactory. ofAll(ObjectShortMap<? extends K> map)
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactory. ofInitialCapacity(int capacity)
Same asMutableObjectShortMapFactory.empty()
.<K> MutableObjectShortMap<K>
MutableObjectShortHashingStrategyMapFactory. with(HashingStrategy<? super K> hashingStrategy)
Same as#empty()
.<K> MutableObjectShortMap<K>
MutableObjectShortMapFactory. with()
Same asMutableObjectShortMapFactory.empty()
.default <K> MutableObjectShortMap<K>
MutableObjectShortMapFactory. with(K key, short value)
default <K> MutableObjectShortMap<K>
MutableObjectShortMapFactory. with(K key1, short value1, K key2, short value2)
default <K> MutableObjectShortMap<K>
MutableObjectShortMapFactory. with(K key1, short value1, K key2, short value2, K key3, short value3)
default <K> MutableObjectShortMap<K>
MutableObjectShortMapFactory. with(K key1, short value1, K key2, short value2, K key3, short value3, K key4, short value4)
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactory. withAll(ObjectShortMap<? extends K> map)
<K> MutableObjectShortMap<K>
MutableObjectShortHashingStrategyMapFactory. withInitialCapacity(HashingStrategy<? super K> hashingStrategy, int initialCapacity)
Same as#empty()
but takes in an initial capacity<K> MutableObjectShortMap<K>
MutableObjectShortMapFactory. withInitialCapacity(int capacity)
Same asMutableObjectShortMapFactory.empty()
. -
Uses of MutableObjectShortMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableObjectShortMap Modifier and Type Method Description MutableObjectShortMap<K>
MutableObjectShortMap. asSynchronized()
MutableObjectShortMap<K>
MutableObjectShortMap. asUnmodifiable()
MutableObjectShortMap<V>
MutableShortObjectMap. flipUniqueValues()
MutableObjectShortMap<K>
MutableObjectShortMap. reject(ObjectShortPredicate<? super K> predicate)
MutableObjectShortMap<K>
MutableObjectShortMap. select(ObjectShortPredicate<? super K> predicate)
default MutableObjectShortMap<K>
MutableObjectShortMap. tap(ShortProcedure procedure)
default MutableObjectShortMap<K>
MutableObjectShortMap. withAllKeyValues(java.lang.Iterable<ObjectShortPair<K>> keyValuePairs)
MutableObjectShortMap<K>
MutableObjectShortMap. withKeyValue(K key, short value)
Associates a value with the specified key.MutableObjectShortMap<K>
MutableObjectShortMap. withoutAllKeys(java.lang.Iterable<? extends K> keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableObjectShortMap<K>
MutableObjectShortMap. withoutKey(K key)
Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableObjectShortMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableObjectShortMap Modifier and Type Field Description private MutableObjectShortMap<K>
ImmutableObjectShortHashMap. delegate
-
Uses of MutableObjectShortMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableObjectShortMap Modifier and Type Class Description class
ObjectShortHashMap<K>
This file was automatically generated from template file objectPrimitiveHashMap.stg.class
ObjectShortHashMapWithHashingStrategy<K>
This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.class
SynchronizedObjectShortMap<K>
A synchronized view of aMutableObjectShortMap
.class
UnmodifiableObjectShortMap<K>
This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableObjectShortMap Modifier and Type Field Description private MutableObjectShortMap<K>
SynchronizedObjectShortMap. map
private MutableObjectShortMap<K>
UnmodifiableObjectShortMap. map
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableObjectShortMap Modifier and Type Method Description MutableObjectShortMap<K>
ObjectShortHashMap. asSynchronized()
MutableObjectShortMap<K>
ObjectShortHashMapWithHashingStrategy. asSynchronized()
MutableObjectShortMap<K>
SynchronizedObjectShortMap. asSynchronized()
MutableObjectShortMap<K>
UnmodifiableObjectShortMap. asSynchronized()
MutableObjectShortMap<K>
ObjectShortHashMap. asUnmodifiable()
MutableObjectShortMap<K>
ObjectShortHashMapWithHashingStrategy. asUnmodifiable()
MutableObjectShortMap<K>
SynchronizedObjectShortMap. asUnmodifiable()
MutableObjectShortMap<K>
UnmodifiableObjectShortMap. asUnmodifiable()
<K> MutableObjectShortMap<K>
MutableObjectShortHashingStrategyMapFactoryImpl. empty(HashingStrategy<? super K> hashingStrategy)
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactoryImpl. empty()
MutableObjectShortMap<V>
ShortObjectHashMap. flipUniqueValues()
MutableObjectShortMap<V>
SynchronizedShortObjectMap. flipUniqueValues()
MutableObjectShortMap<V>
UnmodifiableShortObjectMap. flipUniqueValues()
<T,K>
MutableObjectShortMap<K>MutableObjectShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ShortFunction<? super T> valueFunction)
<K> MutableObjectShortMap<K>
MutableObjectShortHashingStrategyMapFactoryImpl. of(HashingStrategy<? super K> hashingStrategy)
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactoryImpl. of()
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactoryImpl. of(K key, short value)
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactoryImpl. of(K key1, short value1, K key2, short value2)
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactoryImpl. of(K key1, short value1, K key2, short value2, K key3, short value3)
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactoryImpl. of(K key1, short value1, K key2, short value2, K key3, short value3, K key4, short value4)
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactoryImpl. ofAll(ObjectShortMap<? extends K> map)
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactoryImpl. ofInitialCapacity(int capacity)
MutableObjectShortMap<K>
SynchronizedObjectShortMap. reject(ObjectShortPredicate<? super K> predicate)
MutableObjectShortMap<K>
UnmodifiableObjectShortMap. reject(ObjectShortPredicate<? super K> predicate)
MutableObjectShortMap<K>
SynchronizedObjectShortMap. select(ObjectShortPredicate<? super K> predicate)
MutableObjectShortMap<K>
UnmodifiableObjectShortMap. select(ObjectShortPredicate<? super K> predicate)
<K> MutableObjectShortMap<K>
MutableObjectShortHashingStrategyMapFactoryImpl. with(HashingStrategy<? super K> hashingStrategy)
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactoryImpl. with()
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactoryImpl. with(K key, short value)
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactoryImpl. with(K key1, short value1, K key2, short value2)
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactoryImpl. with(K key1, short value1, K key2, short value2, K key3, short value3)
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactoryImpl. with(K key1, short value1, K key2, short value2, K key3, short value3, K key4, short value4)
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactoryImpl. withAll(ObjectShortMap<? extends K> map)
<K> MutableObjectShortMap<K>
MutableObjectShortHashingStrategyMapFactoryImpl. withInitialCapacity(HashingStrategy<? super K> hashingStrategy, int initialCapacity)
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactoryImpl. withInitialCapacity(int capacity)
MutableObjectShortMap<K>
SynchronizedObjectShortMap. withKeyValue(K key, short value)
MutableObjectShortMap<K>
UnmodifiableObjectShortMap. withKeyValue(K key, short value)
MutableObjectShortMap<K>
SynchronizedObjectShortMap. withoutAllKeys(java.lang.Iterable<? extends K> keys)
MutableObjectShortMap<K>
UnmodifiableObjectShortMap. withoutAllKeys(java.lang.Iterable<? extends K> keys)
MutableObjectShortMap<K>
SynchronizedObjectShortMap. withoutKey(K key)
MutableObjectShortMap<K>
UnmodifiableObjectShortMap. withoutKey(K key)
Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableObjectShortMap Constructor Description SynchronizedObjectShortMap(MutableObjectShortMap<K> map)
SynchronizedObjectShortMap(MutableObjectShortMap<K> map, java.lang.Object newLock)
UnmodifiableObjectShortMap(MutableObjectShortMap<K> map)
-