Uses of Interface
org.eclipse.collections.api.map.primitive.MutableCharLongMap
| 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.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
-
Uses of MutableCharLongMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableCharLongMap Modifier and Type Method Description MutableCharLongMapMutableCharLongMapFactory. empty()<T> MutableCharLongMapMutableCharLongMapFactory. from(Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anMutableCharLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharLongMapMutableCharLongMapFactory. of()Same asMutableCharLongMapFactory.empty().MutableCharLongMapMutableCharLongMapFactory. ofAll(CharLongMap map)MutableCharLongMapMutableCharLongMapFactory. ofInitialCapacity(int capacity)Same asMutableCharLongMapFactory.empty().MutableCharLongMapMutableCharLongMapFactory. with()Same asMutableCharLongMapFactory.empty().MutableCharLongMapMutableCharLongMapFactory. withAll(CharLongMap map)MutableCharLongMapMutableCharLongMapFactory. withInitialCapacity(int capacity)Same asMutableCharLongMapFactory.empty(). -
Uses of MutableCharLongMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableCharLongMap Modifier and Type Method Description MutableCharLongMapMutableCharLongMap. 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.MutableCharLongMapMutableCharLongMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableCharLongMapMutableLongCharMap. flipUniqueValues()MutableCharLongMapMutableCharLongMap. reject(CharLongPredicate predicate)MutableCharLongMapMutableCharLongMap. select(CharLongPredicate predicate)default MutableCharLongMapMutableCharLongMap. withAllKeyValues(Iterable<CharLongPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableCharLongMapMutableCharLongMap. withKeyValue(char key, long value)Associates a value with the specified key.MutableCharLongMapMutableCharLongMap. withoutAllKeys(CharIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableCharLongMapMutableCharLongMap. withoutKey(char key)Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableCharLongMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableCharLongMap Modifier and Type Class Description classCharLongHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classSynchronizedCharLongMapA synchronized view of aMutableCharLongMap.classUnmodifiableCharLongMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableCharLongMap Modifier and Type Method Description MutableCharLongMapCharLongHashMap. asSynchronized()MutableCharLongMapSynchronizedCharLongMap. asSynchronized()MutableCharLongMapUnmodifiableCharLongMap. asSynchronized()MutableCharLongMapCharLongHashMap. asUnmodifiable()MutableCharLongMapSynchronizedCharLongMap. asUnmodifiable()MutableCharLongMapUnmodifiableCharLongMap. asUnmodifiable()MutableCharLongMapMutableCharLongMapFactoryImpl. empty()MutableCharLongMapLongCharHashMap. flipUniqueValues()MutableCharLongMapSynchronizedLongCharMap. flipUniqueValues()MutableCharLongMapUnmodifiableLongCharMap. flipUniqueValues()<T> MutableCharLongMapMutableCharLongMapFactoryImpl. from(Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)MutableCharLongMapMutableCharLongMapFactoryImpl. of()MutableCharLongMapMutableCharLongMapFactoryImpl. ofAll(CharLongMap map)MutableCharLongMapMutableCharLongMapFactoryImpl. ofInitialCapacity(int capacity)MutableCharLongMapSynchronizedCharLongMap. reject(CharLongPredicate predicate)MutableCharLongMapUnmodifiableCharLongMap. reject(CharLongPredicate predicate)MutableCharLongMapSynchronizedCharLongMap. select(CharLongPredicate predicate)MutableCharLongMapUnmodifiableCharLongMap. select(CharLongPredicate predicate)MutableCharLongMapMutableCharLongMapFactoryImpl. with()MutableCharLongMapMutableCharLongMapFactoryImpl. withAll(CharLongMap map)MutableCharLongMapMutableCharLongMapFactoryImpl. withInitialCapacity(int capacity)MutableCharLongMapSynchronizedCharLongMap. withKeyValue(char key, long value)MutableCharLongMapUnmodifiableCharLongMap. withKeyValue(char key, long value)MutableCharLongMapSynchronizedCharLongMap. withoutAllKeys(CharIterable keys)MutableCharLongMapUnmodifiableCharLongMap. withoutAllKeys(CharIterable keys)MutableCharLongMapSynchronizedCharLongMap. withoutKey(char key)MutableCharLongMapUnmodifiableCharLongMap. withoutKey(char key)Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableCharLongMap Constructor Description SynchronizedCharLongMap(MutableCharLongMap map)SynchronizedCharLongMap(MutableCharLongMap map, Object newLock)UnmodifiableCharLongMap(MutableCharLongMap map)