Uses of Interface
org.eclipse.collections.api.map.primitive.MutableIntCharMap
| 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 MutableIntCharMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableIntCharMap Modifier and Type Method Description MutableIntCharMapMutableIntCharMapFactory. empty()<T> MutableIntCharMapMutableIntCharMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableIntCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntCharMapMutableIntCharMapFactory. of()Same asMutableIntCharMapFactory.empty().MutableIntCharMapMutableIntCharMapFactory. ofAll(IntCharMap map)MutableIntCharMapMutableIntCharMapFactory. ofInitialCapacity(int capacity)Same asMutableIntCharMapFactory.empty().MutableIntCharMapMutableIntCharMapFactory. with()Same asMutableIntCharMapFactory.empty().MutableIntCharMapMutableIntCharMapFactory. withAll(IntCharMap map)MutableIntCharMapMutableIntCharMapFactory. withInitialCapacity(int capacity)Same asMutableIntCharMapFactory.empty(). -
Uses of MutableIntCharMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableIntCharMap Modifier and Type Method Description MutableIntCharMapMutableIntCharMap. 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.MutableIntCharMapMutableIntCharMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableIntCharMapMutableCharIntMap. flipUniqueValues()MutableIntCharMapMutableIntCharMap. reject(IntCharPredicate predicate)MutableIntCharMapMutableIntCharMap. select(IntCharPredicate predicate)default MutableIntCharMapMutableIntCharMap. withAllKeyValues(Iterable<IntCharPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableIntCharMapMutableIntCharMap. withKeyValue(int key, char value)Associates a value with the specified key.MutableIntCharMapMutableIntCharMap. withoutAllKeys(IntIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableIntCharMapMutableIntCharMap. withoutKey(int key)Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableIntCharMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableIntCharMap Modifier and Type Class Description classIntCharHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classSynchronizedIntCharMapA synchronized view of aMutableIntCharMap.classUnmodifiableIntCharMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableIntCharMap Modifier and Type Method Description MutableIntCharMapIntCharHashMap. asSynchronized()MutableIntCharMapSynchronizedIntCharMap. asSynchronized()MutableIntCharMapUnmodifiableIntCharMap. asSynchronized()MutableIntCharMapIntCharHashMap. asUnmodifiable()MutableIntCharMapSynchronizedIntCharMap. asUnmodifiable()MutableIntCharMapUnmodifiableIntCharMap. asUnmodifiable()MutableIntCharMapMutableIntCharMapFactoryImpl. empty()MutableIntCharMapCharIntHashMap. flipUniqueValues()MutableIntCharMapSynchronizedCharIntMap. flipUniqueValues()MutableIntCharMapUnmodifiableCharIntMap. flipUniqueValues()<T> MutableIntCharMapMutableIntCharMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)MutableIntCharMapMutableIntCharMapFactoryImpl. of()MutableIntCharMapMutableIntCharMapFactoryImpl. ofAll(IntCharMap map)MutableIntCharMapMutableIntCharMapFactoryImpl. ofInitialCapacity(int capacity)MutableIntCharMapSynchronizedIntCharMap. reject(IntCharPredicate predicate)MutableIntCharMapUnmodifiableIntCharMap. reject(IntCharPredicate predicate)MutableIntCharMapSynchronizedIntCharMap. select(IntCharPredicate predicate)MutableIntCharMapUnmodifiableIntCharMap. select(IntCharPredicate predicate)MutableIntCharMapMutableIntCharMapFactoryImpl. with()MutableIntCharMapMutableIntCharMapFactoryImpl. withAll(IntCharMap map)MutableIntCharMapMutableIntCharMapFactoryImpl. withInitialCapacity(int capacity)MutableIntCharMapSynchronizedIntCharMap. withKeyValue(int key, char value)MutableIntCharMapUnmodifiableIntCharMap. withKeyValue(int key, char value)MutableIntCharMapSynchronizedIntCharMap. withoutAllKeys(IntIterable keys)MutableIntCharMapUnmodifiableIntCharMap. withoutAllKeys(IntIterable keys)MutableIntCharMapSynchronizedIntCharMap. withoutKey(int key)MutableIntCharMapUnmodifiableIntCharMap. withoutKey(int key)Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableIntCharMap Constructor Description SynchronizedIntCharMap(MutableIntCharMap map)SynchronizedIntCharMap(MutableIntCharMap map, Object newLock)UnmodifiableIntCharMap(MutableIntCharMap map)