Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableLongLongMap
-
Packages that use ImmutableLongLongMap 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 ImmutableLongLongMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableLongLongMap Modifier and Type Method Description ImmutableLongLongMap
ImmutableLongLongMapFactory. empty()
<T> ImmutableLongLongMap
ImmutableLongLongMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableLongLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableLongLongMap
ImmutableLongLongMapFactory. of()
Same asImmutableLongLongMapFactory.empty()
.ImmutableLongLongMap
ImmutableLongLongMapFactory. of(long key, long value)
ImmutableLongLongMap
ImmutableLongLongMapFactory. ofAll(LongLongMap map)
ImmutableLongLongMap
ImmutableLongLongMapFactory. with()
Same asImmutableLongLongMapFactory.empty()
.ImmutableLongLongMap
ImmutableLongLongMapFactory. with(long key, long value)
ImmutableLongLongMap
ImmutableLongLongMapFactory. withAll(LongLongMap map)
-
Uses of ImmutableLongLongMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableLongLongMap Modifier and Type Method Description ImmutableLongLongMap
ImmutableLongLongMap. flipUniqueValues()
ImmutableLongLongMap
ImmutableLongLongMap. newWithKeyValue(long key, long 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.ImmutableLongLongMap
ImmutableLongLongMap. 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.ImmutableLongLongMap
ImmutableLongLongMap. 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.ImmutableLongLongMap
ImmutableLongLongMap. reject(LongLongPredicate predicate)
ImmutableLongLongMap
ImmutableLongLongMap. select(LongLongPredicate predicate)
ImmutableLongLongMap
LongLongMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableLongLongMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableLongLongMap Modifier and Type Class Description (package private) class
ImmutableLongLongEmptyMap
ImmutableLongLongEmptyMap is an optimization forImmutableLongLongMap
of size 0.(package private) class
ImmutableLongLongHashMap
ImmutableLongLongHashMap is the non-modifiable equivalent ofLongLongHashMap
.(package private) class
ImmutableLongLongSingletonMap
ImmutableLongLongSingletonMap is an optimization forImmutableLongLongMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableLongLongMap Modifier and Type Field Description (package private) static ImmutableLongLongMap
ImmutableLongLongEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableLongLongMap Modifier and Type Method Description ImmutableLongLongMap
ImmutableLongLongMapFactoryImpl. empty()
ImmutableLongLongMap
ImmutableLongLongEmptyMap. flipUniqueValues()
ImmutableLongLongMap
ImmutableLongLongHashMap. flipUniqueValues()
ImmutableLongLongMap
ImmutableLongLongSingletonMap. flipUniqueValues()
<T> ImmutableLongLongMap
ImmutableLongLongMapFactoryImpl. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
ImmutableLongLongMap
ImmutableLongLongEmptyMap. newWithKeyValue(long key, long value)
ImmutableLongLongMap
ImmutableLongLongHashMap. newWithKeyValue(long key, long value)
ImmutableLongLongMap
ImmutableLongLongSingletonMap. newWithKeyValue(long key, long value)
ImmutableLongLongMap
ImmutableLongLongEmptyMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongLongMap
ImmutableLongLongHashMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongLongMap
ImmutableLongLongSingletonMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongLongMap
ImmutableLongLongEmptyMap. newWithoutKey(long key)
ImmutableLongLongMap
ImmutableLongLongHashMap. newWithoutKey(long key)
ImmutableLongLongMap
ImmutableLongLongSingletonMap. newWithoutKey(long key)
ImmutableLongLongMap
ImmutableLongLongMapFactoryImpl. of()
ImmutableLongLongMap
ImmutableLongLongMapFactoryImpl. of(long key, long value)
ImmutableLongLongMap
ImmutableLongLongMapFactoryImpl. ofAll(LongLongMap map)
ImmutableLongLongMap
ImmutableLongLongEmptyMap. reject(LongLongPredicate predicate)
ImmutableLongLongMap
ImmutableLongLongHashMap. reject(LongLongPredicate predicate)
ImmutableLongLongMap
ImmutableLongLongSingletonMap. reject(LongLongPredicate predicate)
ImmutableLongLongMap
ImmutableLongLongEmptyMap. select(LongLongPredicate predicate)
ImmutableLongLongMap
ImmutableLongLongHashMap. select(LongLongPredicate predicate)
ImmutableLongLongMap
ImmutableLongLongSingletonMap. select(LongLongPredicate predicate)
ImmutableLongLongMap
ImmutableLongLongEmptyMap. toImmutable()
ImmutableLongLongMap
ImmutableLongLongHashMap. toImmutable()
ImmutableLongLongMap
ImmutableLongLongSingletonMap. toImmutable()
ImmutableLongLongMap
ImmutableLongLongMapFactoryImpl. with()
ImmutableLongLongMap
ImmutableLongLongMapFactoryImpl. with(long key, long value)
ImmutableLongLongMap
ImmutableLongLongMapFactoryImpl. withAll(LongLongMap map)
-
Uses of ImmutableLongLongMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableLongLongMap Modifier and Type Method Description ImmutableLongLongMap
LongLongHashMap. toImmutable()
ImmutableLongLongMap
SynchronizedLongLongMap. toImmutable()
ImmutableLongLongMap
UnmodifiableLongLongMap. toImmutable()
-