Uses of Interface
org.eclipse.collections.api.map.primitive.MutableLongIntMap
-
Packages that use MutableLongIntMap 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 MutableLongIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableLongIntMap Modifier and Type Method Description MutableLongIntMap
MutableLongIntMapFactory. empty()
<T> MutableLongIntMap
MutableLongIntMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anMutableLongIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableLongIntMap
MutableLongIntMapFactory. of()
Same asMutableLongIntMapFactory.empty()
.default MutableLongIntMap
MutableLongIntMapFactory. of(long key, int value)
default MutableLongIntMap
MutableLongIntMapFactory. of(long key1, int value1, long key2, int value2)
default MutableLongIntMap
MutableLongIntMapFactory. of(long key1, int value1, long key2, int value2, long key3, int value3)
default MutableLongIntMap
MutableLongIntMapFactory. of(long key1, int value1, long key2, int value2, long key3, int value3, long key4, int value4)
MutableLongIntMap
MutableLongIntMapFactory. ofAll(LongIntMap map)
MutableLongIntMap
MutableLongIntMapFactory. ofInitialCapacity(int capacity)
Same asMutableLongIntMapFactory.empty()
.MutableLongIntMap
MutableLongIntMapFactory. with()
Same asMutableLongIntMapFactory.empty()
.default MutableLongIntMap
MutableLongIntMapFactory. with(long key, int value)
default MutableLongIntMap
MutableLongIntMapFactory. with(long key1, int value1, long key2, int value2)
default MutableLongIntMap
MutableLongIntMapFactory. with(long key1, int value1, long key2, int value2, long key3, int value3)
default MutableLongIntMap
MutableLongIntMapFactory. with(long key1, int value1, long key2, int value2, long key3, int value3, long key4, int value4)
MutableLongIntMap
MutableLongIntMapFactory. withAll(LongIntMap map)
MutableLongIntMap
MutableLongIntMapFactory. withInitialCapacity(int capacity)
Same asMutableLongIntMapFactory.empty()
. -
Uses of MutableLongIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableLongIntMap Modifier and Type Method Description MutableLongIntMap
MutableLongIntMap. 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.MutableLongIntMap
MutableLongIntMap. asUnmodifiable()
Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationException
for all mutating operations.MutableLongIntMap
MutableIntLongMap. flipUniqueValues()
MutableLongIntMap
MutableLongIntMap. reject(LongIntPredicate predicate)
MutableLongIntMap
MutableLongIntMap. select(LongIntPredicate predicate)
default MutableLongIntMap
MutableLongIntMap. withAllKeyValues(java.lang.Iterable<LongIntPair> keyValuePairs)
Puts all of the key/value mappings from the specified pairs into this map.MutableLongIntMap
MutableLongIntMap. withKeyValue(long key, int value)
Associates a value with the specified key.MutableLongIntMap
MutableLongIntMap. withoutAllKeys(LongIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableLongIntMap
MutableLongIntMap. withoutKey(long key)
Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableLongIntMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableLongIntMap Modifier and Type Field Description private MutableLongIntMap
ImmutableLongIntHashMap. delegate
-
Uses of MutableLongIntMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableLongIntMap Modifier and Type Class Description class
LongIntHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
SynchronizedLongIntMap
A synchronized view of aMutableLongIntMap
.class
UnmodifiableLongIntMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableLongIntMap Modifier and Type Field Description private MutableLongIntMap
SynchronizedLongIntMap. map
private MutableLongIntMap
UnmodifiableLongIntMap. map
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableLongIntMap Modifier and Type Method Description MutableLongIntMap
LongIntHashMap. asSynchronized()
MutableLongIntMap
SynchronizedLongIntMap. asSynchronized()
MutableLongIntMap
UnmodifiableLongIntMap. asSynchronized()
MutableLongIntMap
LongIntHashMap. asUnmodifiable()
MutableLongIntMap
SynchronizedLongIntMap. asUnmodifiable()
MutableLongIntMap
UnmodifiableLongIntMap. asUnmodifiable()
MutableLongIntMap
MutableLongIntMapFactoryImpl. empty()
MutableLongIntMap
IntLongHashMap. flipUniqueValues()
MutableLongIntMap
SynchronizedIntLongMap. flipUniqueValues()
MutableLongIntMap
UnmodifiableIntLongMap. flipUniqueValues()
<T> MutableLongIntMap
MutableLongIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
MutableLongIntMap
MutableLongIntMapFactoryImpl. of()
MutableLongIntMap
MutableLongIntMapFactoryImpl. of(long key, int value)
MutableLongIntMap
MutableLongIntMapFactoryImpl. of(long key1, int value1, long key2, int value2)
MutableLongIntMap
MutableLongIntMapFactoryImpl. of(long key1, int value1, long key2, int value2, long key3, int value3)
MutableLongIntMap
MutableLongIntMapFactoryImpl. of(long key1, int value1, long key2, int value2, long key3, int value3, long key4, int value4)
MutableLongIntMap
MutableLongIntMapFactoryImpl. ofAll(LongIntMap map)
MutableLongIntMap
MutableLongIntMapFactoryImpl. ofInitialCapacity(int capacity)
MutableLongIntMap
SynchronizedLongIntMap. reject(LongIntPredicate predicate)
MutableLongIntMap
UnmodifiableLongIntMap. reject(LongIntPredicate predicate)
MutableLongIntMap
SynchronizedLongIntMap. select(LongIntPredicate predicate)
MutableLongIntMap
UnmodifiableLongIntMap. select(LongIntPredicate predicate)
MutableLongIntMap
MutableLongIntMapFactoryImpl. with()
MutableLongIntMap
MutableLongIntMapFactoryImpl. with(long key, int value)
MutableLongIntMap
MutableLongIntMapFactoryImpl. with(long key1, int value1, long key2, int value2)
MutableLongIntMap
MutableLongIntMapFactoryImpl. with(long key1, int value1, long key2, int value2, long key3, int value3)
MutableLongIntMap
MutableLongIntMapFactoryImpl. with(long key1, int value1, long key2, int value2, long key3, int value3, long key4, int value4)
MutableLongIntMap
MutableLongIntMapFactoryImpl. withAll(LongIntMap map)
MutableLongIntMap
MutableLongIntMapFactoryImpl. withInitialCapacity(int capacity)
MutableLongIntMap
SynchronizedLongIntMap. withKeyValue(long key, int value)
MutableLongIntMap
UnmodifiableLongIntMap. withKeyValue(long key, int value)
MutableLongIntMap
SynchronizedLongIntMap. withoutAllKeys(LongIterable keys)
MutableLongIntMap
UnmodifiableLongIntMap. withoutAllKeys(LongIterable keys)
MutableLongIntMap
SynchronizedLongIntMap. withoutKey(long key)
MutableLongIntMap
UnmodifiableLongIntMap. withoutKey(long key)
Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableLongIntMap Constructor Description SynchronizedLongIntMap(MutableLongIntMap map)
SynchronizedLongIntMap(MutableLongIntMap map, java.lang.Object newLock)
UnmodifiableLongIntMap(MutableLongIntMap map)
-