Uses of Interface
org.eclipse.collections.api.map.primitive.MutableLongObjectMap
Packages that use MutableLongObjectMap
Package
Description
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
-
Uses of MutableLongObjectMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableLongObjectMapModifier and TypeMethodDescription<V> MutableLongObjectMap
<V> MutableLongObjectMapFactory.empty()
<T,
V> MutableLongObjectMap <V> MutableLongObjectMapFactory.from
(Iterable<T> iterable, LongFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) Creates anMutableLongObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<V> MutableLongObjectMap
<V> MutableLongObjectMapFactory.of()
Same asMutableLongObjectMapFactory.empty()
.default <V> MutableLongObjectMap
<V> MutableLongObjectMapFactory.of
(long key, V value) default <V> MutableLongObjectMap
<V> MutableLongObjectMapFactory.of
(long key1, V value1, long key2, V value2) default <V> MutableLongObjectMap
<V> MutableLongObjectMapFactory.of
(long key1, V value1, long key2, V value2, long key3, V value3) default <V> MutableLongObjectMap
<V> MutableLongObjectMapFactory.of
(long key1, V value1, long key2, V value2, long key3, V value3, long key4, V value4) <V> MutableLongObjectMap
<V> MutableLongObjectMapFactory.ofAll
(LongObjectMap<? extends V> map) <V> MutableLongObjectMap
<V> MutableLongObjectMapFactory.ofInitialCapacity
(int capacity) Same asMutableLongObjectMapFactory.empty()
.<V> MutableLongObjectMap
<V> MutableLongObjectMapFactory.with()
Same asMutableLongObjectMapFactory.empty()
.default <V> MutableLongObjectMap
<V> MutableLongObjectMapFactory.with
(long key, V value) default <V> MutableLongObjectMap
<V> MutableLongObjectMapFactory.with
(long key1, V value1, long key2, V value2) default <V> MutableLongObjectMap
<V> MutableLongObjectMapFactory.with
(long key1, V value1, long key2, V value2, long key3, V value3) default <V> MutableLongObjectMap
<V> MutableLongObjectMapFactory.with
(long key1, V value1, long key2, V value2, long key3, V value3, long key4, V value4) <V> MutableLongObjectMap
<V> MutableLongObjectMapFactory.withAll
(LongObjectMap<? extends V> map) <V> MutableLongObjectMap
<V> MutableLongObjectMapFactory.withInitialCapacity
(int capacity) Same asMutableLongObjectMapFactory.empty()
. -
Uses of MutableLongObjectMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableLongObjectMapModifier and TypeMethodDescriptionMutableLongObjectMap.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.MutableLongObjectMap.asUnmodifiable()
Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationException
for all mutating operations.MutableObjectLongMap.flipUniqueValues()
MutableLongObjectMap.reject
(LongObjectPredicate<? super V> predicate) MutableLongObjectMap.select
(LongObjectPredicate<? super V> predicate) default MutableLongObjectMap
<V> MutableLongObjectMap.withAllKeyValues
(Iterable<LongObjectPair<V>> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableLongObjectMap.withKeyValue
(long key, V value) Associates a value with the specified key.MutableLongObjectMap.withoutAllKeys
(LongIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableLongObjectMap.withoutKey
(long key) Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableLongObjectMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableLongObjectMapModifier and TypeFieldDescriptionprivate final MutableLongObjectMap
<V> ImmutableLongObjectHashMap.delegate
-
Uses of MutableLongObjectMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableLongObjectMapModifier and TypeClassDescriptionclass
This file was automatically generated from template file primitiveObjectHashMap.stg.class
A synchronized view of aMutableLongObjectMap
.class
This file was automatically generated from template file unmodifiablePrimitiveObjectMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableLongObjectMapModifier and TypeFieldDescriptionprivate final MutableLongObjectMap
<V> SynchronizedLongObjectMap.map
private final MutableLongObjectMap
<V> UnmodifiableLongObjectMap.map
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableLongObjectMapModifier and TypeMethodDescriptionLongObjectHashMap.asSynchronized()
SynchronizedLongObjectMap.asSynchronized()
UnmodifiableLongObjectMap.asSynchronized()
LongObjectHashMap.asUnmodifiable()
SynchronizedLongObjectMap.asUnmodifiable()
UnmodifiableLongObjectMap.asUnmodifiable()
<V> MutableLongObjectMap
<V> MutableLongObjectMapFactoryImpl.empty()
ObjectLongHashMap.flipUniqueValues()
ObjectLongHashMapWithHashingStrategy.flipUniqueValues()
SynchronizedObjectLongMap.flipUniqueValues()
UnmodifiableObjectLongMap.flipUniqueValues()
<T,
V> MutableLongObjectMap <V> MutableLongObjectMapFactoryImpl.from
(Iterable<T> iterable, LongFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) <V> MutableLongObjectMap
<V> MutableLongObjectMapFactoryImpl.of()
<V> MutableLongObjectMap
<V> MutableLongObjectMapFactoryImpl.of
(long key, V value) <V> MutableLongObjectMap
<V> MutableLongObjectMapFactoryImpl.of
(long key1, V value1, long key2, V value2) <V> MutableLongObjectMap
<V> MutableLongObjectMapFactoryImpl.of
(long key1, V value1, long key2, V value2, long key3, V value3) <V> MutableLongObjectMap
<V> MutableLongObjectMapFactoryImpl.of
(long key1, V value1, long key2, V value2, long key3, V value3, long key4, V value4) <V> MutableLongObjectMap
<V> MutableLongObjectMapFactoryImpl.ofAll
(LongObjectMap<? extends V> map) <V> MutableLongObjectMap
<V> MutableLongObjectMapFactoryImpl.ofInitialCapacity
(int capacity) SynchronizedLongObjectMap.reject
(LongObjectPredicate<? super V> predicate) UnmodifiableLongObjectMap.reject
(LongObjectPredicate<? super V> predicate) SynchronizedLongObjectMap.select
(LongObjectPredicate<? super V> predicate) UnmodifiableLongObjectMap.select
(LongObjectPredicate<? super V> predicate) <V> MutableLongObjectMap
<V> MutableLongObjectMapFactoryImpl.with()
<V> MutableLongObjectMap
<V> MutableLongObjectMapFactoryImpl.with
(long key, V value) <V> MutableLongObjectMap
<V> MutableLongObjectMapFactoryImpl.with
(long key1, V value1, long key2, V value2) <V> MutableLongObjectMap
<V> MutableLongObjectMapFactoryImpl.with
(long key1, V value1, long key2, V value2, long key3, V value3) <V> MutableLongObjectMap
<V> MutableLongObjectMapFactoryImpl.with
(long key1, V value1, long key2, V value2, long key3, V value3, long key4, V value4) <V> MutableLongObjectMap
<V> MutableLongObjectMapFactoryImpl.withAll
(LongObjectMap<? extends V> map) <V> MutableLongObjectMap
<V> MutableLongObjectMapFactoryImpl.withInitialCapacity
(int capacity) SynchronizedLongObjectMap.withKeyValue
(long key, V value) UnmodifiableLongObjectMap.withKeyValue
(long key, V value) LongObjectHashMap.withoutAllKeys
(LongIterable keys) SynchronizedLongObjectMap.withoutAllKeys
(LongIterable keys) UnmodifiableLongObjectMap.withoutAllKeys
(LongIterable keys) LongObjectHashMap.withoutKey
(long key) SynchronizedLongObjectMap.withoutKey
(long key) UnmodifiableLongObjectMap.withoutKey
(long key) Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableLongObjectMapModifierConstructorDescriptionSynchronizedLongObjectMap
(MutableLongObjectMap<V> map, Object newLock)