Uses of Interface
org.eclipse.collections.api.map.primitive.MutableLongCharMap
Packages that use MutableLongCharMap
Package
Description
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
-
Uses of MutableLongCharMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableLongCharMapModifier and TypeMethodDescriptionMutableLongCharMapFactory.empty()MutableLongCharMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableLongCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongCharMapFactory.of()Same asMutableLongCharMapFactory.empty().default MutableLongCharMapMutableLongCharMapFactory.of(long key, char value) default MutableLongCharMapMutableLongCharMapFactory.of(long key1, char value1, long key2, char value2) default MutableLongCharMapMutableLongCharMapFactory.of(long key1, char value1, long key2, char value2, long key3, char value3) default MutableLongCharMapMutableLongCharMapFactory.of(long key1, char value1, long key2, char value2, long key3, char value3, long key4, char value4) MutableLongCharMapFactory.ofAll(LongCharMap map) MutableLongCharMapFactory.ofInitialCapacity(int capacity) Same asMutableLongCharMapFactory.empty().MutableLongCharMapFactory.with()Same asMutableLongCharMapFactory.empty().default MutableLongCharMapMutableLongCharMapFactory.with(long key, char value) default MutableLongCharMapMutableLongCharMapFactory.with(long key1, char value1, long key2, char value2) default MutableLongCharMapMutableLongCharMapFactory.with(long key1, char value1, long key2, char value2, long key3, char value3) default MutableLongCharMapMutableLongCharMapFactory.with(long key1, char value1, long key2, char value2, long key3, char value3, long key4, char value4) MutableLongCharMapFactory.withAll(LongCharMap map) MutableLongCharMapFactory.withInitialCapacity(int capacity) Same asMutableLongCharMapFactory.empty(). -
Uses of MutableLongCharMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableLongCharMapModifier and TypeMethodDescriptionMutableLongCharMap.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.MutableLongCharMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableCharLongMap.flipUniqueValues()MutableLongCharMap.reject(LongCharPredicate predicate) MutableLongCharMap.select(LongCharPredicate predicate) default MutableLongCharMapMutableLongCharMap.withAllKeyValues(Iterable<LongCharPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableLongCharMap.withKeyValue(long key, char value) Associates a value with the specified key.MutableLongCharMap.withoutAllKeys(LongIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableLongCharMap.withoutKey(long key) Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableLongCharMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableLongCharMapModifier and TypeFieldDescriptionprivate final MutableLongCharMapImmutableLongCharHashMap.delegate -
Uses of MutableLongCharMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableLongCharMapModifier and TypeClassDescriptionclassThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classA synchronized view of aMutableLongCharMap.classThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableLongCharMapModifier and TypeFieldDescriptionprivate final MutableLongCharMapSynchronizedLongCharMap.mapprivate final MutableLongCharMapUnmodifiableLongCharMap.mapMethods in org.eclipse.collections.impl.map.mutable.primitive that return MutableLongCharMapModifier and TypeMethodDescriptionLongCharHashMap.asSynchronized()SynchronizedLongCharMap.asSynchronized()UnmodifiableLongCharMap.asSynchronized()LongCharHashMap.asUnmodifiable()SynchronizedLongCharMap.asUnmodifiable()UnmodifiableLongCharMap.asUnmodifiable()MutableLongCharMapFactoryImpl.empty()CharLongHashMap.flipUniqueValues()SynchronizedCharLongMap.flipUniqueValues()UnmodifiableCharLongMap.flipUniqueValues()MutableLongCharMapFactoryImpl.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) MutableLongCharMapFactoryImpl.of()MutableLongCharMapFactoryImpl.of(long key, char value) MutableLongCharMapFactoryImpl.of(long key1, char value1, long key2, char value2) MutableLongCharMapFactoryImpl.of(long key1, char value1, long key2, char value2, long key3, char value3) MutableLongCharMapFactoryImpl.of(long key1, char value1, long key2, char value2, long key3, char value3, long key4, char value4) MutableLongCharMapFactoryImpl.ofAll(LongCharMap map) MutableLongCharMapFactoryImpl.ofInitialCapacity(int capacity) SynchronizedLongCharMap.reject(LongCharPredicate predicate) UnmodifiableLongCharMap.reject(LongCharPredicate predicate) SynchronizedLongCharMap.select(LongCharPredicate predicate) UnmodifiableLongCharMap.select(LongCharPredicate predicate) MutableLongCharMapFactoryImpl.with()MutableLongCharMapFactoryImpl.with(long key, char value) MutableLongCharMapFactoryImpl.with(long key1, char value1, long key2, char value2) MutableLongCharMapFactoryImpl.with(long key1, char value1, long key2, char value2, long key3, char value3) MutableLongCharMapFactoryImpl.with(long key1, char value1, long key2, char value2, long key3, char value3, long key4, char value4) MutableLongCharMapFactoryImpl.withAll(LongCharMap map) MutableLongCharMapFactoryImpl.withInitialCapacity(int capacity) SynchronizedLongCharMap.withKeyValue(long key, char value) UnmodifiableLongCharMap.withKeyValue(long key, char value) SynchronizedLongCharMap.withoutAllKeys(LongIterable keys) UnmodifiableLongCharMap.withoutAllKeys(LongIterable keys) SynchronizedLongCharMap.withoutKey(long key) UnmodifiableLongCharMap.withoutKey(long key) Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableLongCharMap