Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableLongCharMap
-
Packages that use ImmutableLongCharMap 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 ImmutableLongCharMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableLongCharMap Modifier and Type Method Description ImmutableLongCharMap
ImmutableLongCharMapFactory. empty()
<T> ImmutableLongCharMap
ImmutableLongCharMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableLongCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableLongCharMap
ImmutableLongCharMapFactory. of()
Same asImmutableLongCharMapFactory.empty()
.ImmutableLongCharMap
ImmutableLongCharMapFactory. of(long key, char value)
ImmutableLongCharMap
ImmutableLongCharMapFactory. ofAll(LongCharMap map)
ImmutableLongCharMap
ImmutableLongCharMapFactory. with()
Same asImmutableLongCharMapFactory.empty()
.ImmutableLongCharMap
ImmutableLongCharMapFactory. with(long key, char value)
ImmutableLongCharMap
ImmutableLongCharMapFactory. withAll(LongCharMap map)
-
Uses of ImmutableLongCharMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableLongCharMap Modifier and Type Method Description ImmutableLongCharMap
ImmutableCharLongMap. flipUniqueValues()
ImmutableLongCharMap
ImmutableLongCharMap. newWithKeyValue(long key, char 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.ImmutableLongCharMap
ImmutableLongCharMap. 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.ImmutableLongCharMap
ImmutableLongCharMap. 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.ImmutableLongCharMap
ImmutableLongCharMap. reject(LongCharPredicate predicate)
ImmutableLongCharMap
ImmutableLongCharMap. select(LongCharPredicate predicate)
ImmutableLongCharMap
LongCharMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableLongCharMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableLongCharMap Modifier and Type Class Description (package private) class
ImmutableLongCharEmptyMap
ImmutableLongCharEmptyMap is an optimization forImmutableLongCharMap
of size 0.(package private) class
ImmutableLongCharHashMap
ImmutableLongCharHashMap is the non-modifiable equivalent ofLongCharHashMap
.(package private) class
ImmutableLongCharSingletonMap
ImmutableLongCharSingletonMap is an optimization forImmutableLongCharMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableLongCharMap Modifier and Type Field Description (package private) static ImmutableLongCharMap
ImmutableLongCharEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableLongCharMap Modifier and Type Method Description ImmutableLongCharMap
ImmutableLongCharMapFactoryImpl. empty()
ImmutableLongCharMap
ImmutableCharLongEmptyMap. flipUniqueValues()
ImmutableLongCharMap
ImmutableCharLongHashMap. flipUniqueValues()
ImmutableLongCharMap
ImmutableCharLongSingletonMap. flipUniqueValues()
<T> ImmutableLongCharMap
ImmutableLongCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
ImmutableLongCharMap
ImmutableLongCharEmptyMap. newWithKeyValue(long key, char value)
ImmutableLongCharMap
ImmutableLongCharHashMap. newWithKeyValue(long key, char value)
ImmutableLongCharMap
ImmutableLongCharSingletonMap. newWithKeyValue(long key, char value)
ImmutableLongCharMap
ImmutableLongCharEmptyMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongCharMap
ImmutableLongCharHashMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongCharMap
ImmutableLongCharSingletonMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongCharMap
ImmutableLongCharEmptyMap. newWithoutKey(long key)
ImmutableLongCharMap
ImmutableLongCharHashMap. newWithoutKey(long key)
ImmutableLongCharMap
ImmutableLongCharSingletonMap. newWithoutKey(long key)
ImmutableLongCharMap
ImmutableLongCharMapFactoryImpl. of()
ImmutableLongCharMap
ImmutableLongCharMapFactoryImpl. of(long key, char value)
ImmutableLongCharMap
ImmutableLongCharMapFactoryImpl. ofAll(LongCharMap map)
ImmutableLongCharMap
ImmutableLongCharEmptyMap. reject(LongCharPredicate predicate)
ImmutableLongCharMap
ImmutableLongCharHashMap. reject(LongCharPredicate predicate)
ImmutableLongCharMap
ImmutableLongCharSingletonMap. reject(LongCharPredicate predicate)
ImmutableLongCharMap
ImmutableLongCharEmptyMap. select(LongCharPredicate predicate)
ImmutableLongCharMap
ImmutableLongCharHashMap. select(LongCharPredicate predicate)
ImmutableLongCharMap
ImmutableLongCharSingletonMap. select(LongCharPredicate predicate)
ImmutableLongCharMap
ImmutableLongCharEmptyMap. toImmutable()
ImmutableLongCharMap
ImmutableLongCharHashMap. toImmutable()
ImmutableLongCharMap
ImmutableLongCharSingletonMap. toImmutable()
ImmutableLongCharMap
ImmutableLongCharMapFactoryImpl. with()
ImmutableLongCharMap
ImmutableLongCharMapFactoryImpl. with(long key, char value)
ImmutableLongCharMap
ImmutableLongCharMapFactoryImpl. withAll(LongCharMap map)
-
Uses of ImmutableLongCharMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableLongCharMap Modifier and Type Method Description ImmutableLongCharMap
LongCharHashMap. toImmutable()
ImmutableLongCharMap
SynchronizedLongCharMap. toImmutable()
ImmutableLongCharMap
UnmodifiableLongCharMap. toImmutable()
-