Uses of Interface
org.eclipse.collections.api.map.primitive.MutableLongObjectMap
-
Packages that use MutableLongObjectMap 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 MutableLongObjectMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableLongObjectMap Modifier and Type Method Description <V> MutableLongObjectMap<V>
MutableLongObjectMapFactory. empty()
<T,V>
MutableLongObjectMap<V>MutableLongObjectMapFactory. from(java.lang.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 MutableLongObjectMap Modifier and Type Method Description MutableLongObjectMap<V>
MutableLongObjectMap. 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<V>
MutableLongObjectMap. asUnmodifiable()
Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationException
for all mutating operations.MutableLongObjectMap<K>
MutableObjectLongMap. flipUniqueValues()
MutableLongObjectMap<V>
MutableLongObjectMap. reject(LongObjectPredicate<? super V> predicate)
MutableLongObjectMap<V>
MutableLongObjectMap. select(LongObjectPredicate<? super V> predicate)
MutableLongObjectMap<V>
MutableLongObjectMap. tap(Procedure<? super V> procedure)
default MutableLongObjectMap<V>
MutableLongObjectMap. withAllKeyValues(java.lang.Iterable<LongObjectPair<V>> keyValuePairs)
Puts all of the key/value mappings from the specified pairs into this map.MutableLongObjectMap<V>
MutableLongObjectMap. withKeyValue(long key, V value)
Associates a value with the specified key.MutableLongObjectMap<V>
MutableLongObjectMap. withoutAllKeys(LongIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableLongObjectMap<V>
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 MutableLongObjectMap Modifier and Type Field Description private 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 MutableLongObjectMap Modifier and Type Class Description class
LongObjectHashMap<V>
This file was automatically generated from template file primitiveObjectHashMap.stg.class
SynchronizedLongObjectMap<V>
A synchronized view of aMutableLongObjectMap
.class
UnmodifiableLongObjectMap<V>
This file was automatically generated from template file unmodifiablePrimitiveObjectMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableLongObjectMap Modifier and Type Field Description private MutableLongObjectMap<V>
SynchronizedLongObjectMap. map
private MutableLongObjectMap<V>
UnmodifiableLongObjectMap. map
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableLongObjectMap Modifier and Type Method Description MutableLongObjectMap<V>
LongObjectHashMap. asSynchronized()
MutableLongObjectMap<V>
SynchronizedLongObjectMap. asSynchronized()
MutableLongObjectMap<V>
UnmodifiableLongObjectMap. asSynchronized()
MutableLongObjectMap<V>
LongObjectHashMap. asUnmodifiable()
MutableLongObjectMap<V>
SynchronizedLongObjectMap. asUnmodifiable()
MutableLongObjectMap<V>
UnmodifiableLongObjectMap. asUnmodifiable()
<V> MutableLongObjectMap<V>
MutableLongObjectMapFactoryImpl. empty()
MutableLongObjectMap<K>
ObjectLongHashMap. flipUniqueValues()
MutableLongObjectMap<K>
ObjectLongHashMapWithHashingStrategy. flipUniqueValues()
MutableLongObjectMap<K>
SynchronizedObjectLongMap. flipUniqueValues()
MutableLongObjectMap<K>
UnmodifiableObjectLongMap. flipUniqueValues()
<T,V>
MutableLongObjectMap<V>MutableLongObjectMapFactoryImpl. from(java.lang.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)
MutableLongObjectMap<V>
SynchronizedLongObjectMap. reject(LongObjectPredicate<? super V> predicate)
MutableLongObjectMap<V>
UnmodifiableLongObjectMap. reject(LongObjectPredicate<? super V> predicate)
MutableLongObjectMap<V>
SynchronizedLongObjectMap. select(LongObjectPredicate<? super V> predicate)
MutableLongObjectMap<V>
UnmodifiableLongObjectMap. select(LongObjectPredicate<? super V> predicate)
MutableLongObjectMap<V>
SynchronizedLongObjectMap. tap(Procedure<? super V> procedure)
MutableLongObjectMap<V>
UnmodifiableLongObjectMap. tap(Procedure<? super V> procedure)
<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)
MutableLongObjectMap<V>
SynchronizedLongObjectMap. withKeyValue(long key, V value)
MutableLongObjectMap<V>
UnmodifiableLongObjectMap. withKeyValue(long key, V value)
MutableLongObjectMap<V>
LongObjectHashMap. withoutAllKeys(LongIterable keys)
MutableLongObjectMap<V>
SynchronizedLongObjectMap. withoutAllKeys(LongIterable keys)
MutableLongObjectMap<V>
UnmodifiableLongObjectMap. withoutAllKeys(LongIterable keys)
MutableLongObjectMap<V>
LongObjectHashMap. withoutKey(long key)
MutableLongObjectMap<V>
SynchronizedLongObjectMap. withoutKey(long key)
MutableLongObjectMap<V>
UnmodifiableLongObjectMap. withoutKey(long key)
Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableLongObjectMap Constructor Description SynchronizedLongObjectMap(MutableLongObjectMap<V> map)
SynchronizedLongObjectMap(MutableLongObjectMap<V> map, java.lang.Object newLock)
UnmodifiableLongObjectMap(MutableLongObjectMap<V> map)
-