Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableLongIntMap
-
Packages that use ImmutableLongIntMap 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 ImmutableLongIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableLongIntMap Modifier and Type Method Description ImmutableLongIntMap
ImmutableLongIntMapFactory. empty()
<T> ImmutableLongIntMap
ImmutableLongIntMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableLongIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableLongIntMap
ImmutableLongIntMapFactory. of()
Same asImmutableLongIntMapFactory.empty()
.ImmutableLongIntMap
ImmutableLongIntMapFactory. of(long key, int value)
ImmutableLongIntMap
ImmutableLongIntMapFactory. ofAll(LongIntMap map)
ImmutableLongIntMap
ImmutableLongIntMapFactory. with()
Same asImmutableLongIntMapFactory.empty()
.ImmutableLongIntMap
ImmutableLongIntMapFactory. with(long key, int value)
ImmutableLongIntMap
ImmutableLongIntMapFactory. withAll(LongIntMap map)
-
Uses of ImmutableLongIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableLongIntMap Modifier and Type Method Description ImmutableLongIntMap
ImmutableIntLongMap. flipUniqueValues()
ImmutableLongIntMap
ImmutableLongIntMap. newWithKeyValue(long key, int value)
Copy this map, associate the value with the key (replacing the value if one already exists forkey
), and return the copy as new immutable map.ImmutableLongIntMap
ImmutableLongIntMap. newWithoutAllKeys(LongIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableLongIntMap
ImmutableLongIntMap. newWithoutKey(long key)
Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableLongIntMap
ImmutableLongIntMap. reject(LongIntPredicate predicate)
ImmutableLongIntMap
ImmutableLongIntMap. select(LongIntPredicate predicate)
ImmutableLongIntMap
LongIntMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableLongIntMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableLongIntMap Modifier and Type Class Description (package private) class
ImmutableLongIntEmptyMap
ImmutableLongIntEmptyMap is an optimization forImmutableLongIntMap
of size 0.(package private) class
ImmutableLongIntHashMap
ImmutableLongIntHashMap is the non-modifiable equivalent ofLongIntHashMap
.(package private) class
ImmutableLongIntSingletonMap
ImmutableLongIntSingletonMap is an optimization forImmutableLongIntMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableLongIntMap Modifier and Type Field Description (package private) static ImmutableLongIntMap
ImmutableLongIntEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableLongIntMap Modifier and Type Method Description ImmutableLongIntMap
ImmutableLongIntMapFactoryImpl. empty()
ImmutableLongIntMap
ImmutableIntLongEmptyMap. flipUniqueValues()
ImmutableLongIntMap
ImmutableIntLongHashMap. flipUniqueValues()
ImmutableLongIntMap
ImmutableIntLongSingletonMap. flipUniqueValues()
<T> ImmutableLongIntMap
ImmutableLongIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
ImmutableLongIntMap
ImmutableLongIntEmptyMap. newWithKeyValue(long key, int value)
ImmutableLongIntMap
ImmutableLongIntHashMap. newWithKeyValue(long key, int value)
ImmutableLongIntMap
ImmutableLongIntSingletonMap. newWithKeyValue(long key, int value)
ImmutableLongIntMap
ImmutableLongIntEmptyMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongIntMap
ImmutableLongIntHashMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongIntMap
ImmutableLongIntSingletonMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongIntMap
ImmutableLongIntEmptyMap. newWithoutKey(long key)
ImmutableLongIntMap
ImmutableLongIntHashMap. newWithoutKey(long key)
ImmutableLongIntMap
ImmutableLongIntSingletonMap. newWithoutKey(long key)
ImmutableLongIntMap
ImmutableLongIntMapFactoryImpl. of()
ImmutableLongIntMap
ImmutableLongIntMapFactoryImpl. of(long key, int value)
ImmutableLongIntMap
ImmutableLongIntMapFactoryImpl. ofAll(LongIntMap map)
ImmutableLongIntMap
ImmutableLongIntEmptyMap. reject(LongIntPredicate predicate)
ImmutableLongIntMap
ImmutableLongIntHashMap. reject(LongIntPredicate predicate)
ImmutableLongIntMap
ImmutableLongIntSingletonMap. reject(LongIntPredicate predicate)
ImmutableLongIntMap
ImmutableLongIntEmptyMap. select(LongIntPredicate predicate)
ImmutableLongIntMap
ImmutableLongIntHashMap. select(LongIntPredicate predicate)
ImmutableLongIntMap
ImmutableLongIntSingletonMap. select(LongIntPredicate predicate)
ImmutableLongIntMap
ImmutableLongIntEmptyMap. toImmutable()
ImmutableLongIntMap
ImmutableLongIntHashMap. toImmutable()
ImmutableLongIntMap
ImmutableLongIntSingletonMap. toImmutable()
ImmutableLongIntMap
ImmutableLongIntMapFactoryImpl. with()
ImmutableLongIntMap
ImmutableLongIntMapFactoryImpl. with(long key, int value)
ImmutableLongIntMap
ImmutableLongIntMapFactoryImpl. withAll(LongIntMap map)
-
Uses of ImmutableLongIntMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableLongIntMap Modifier and Type Method Description ImmutableLongIntMap
LongIntHashMap. toImmutable()
ImmutableLongIntMap
SynchronizedLongIntMap. toImmutable()
ImmutableLongIntMap
UnmodifiableLongIntMap. toImmutable()
-