Uses of Interface
org.eclipse.collections.api.map.primitive.MutableShortBooleanMap
| 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 MutableShortBooleanMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableShortBooleanMap Modifier and Type Method Description MutableShortBooleanMapMutableShortBooleanMapFactory. empty()<T> MutableShortBooleanMapMutableShortBooleanMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableShortBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableShortBooleanMapMutableShortBooleanMapFactory. of()MutableShortBooleanMapMutableShortBooleanMapFactory. ofAll(ShortBooleanMap map)MutableShortBooleanMapMutableShortBooleanMapFactory. ofInitialCapacity(int capacity)MutableShortBooleanMapMutableShortBooleanMapFactory. with()MutableShortBooleanMapMutableShortBooleanMapFactory. withAll(ShortBooleanMap map)MutableShortBooleanMapMutableShortBooleanMapFactory. withInitialCapacity(int capacity) -
Uses of MutableShortBooleanMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableShortBooleanMap Modifier and Type Method Description MutableShortBooleanMapMutableShortBooleanMap. 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.MutableShortBooleanMapMutableShortBooleanMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableShortBooleanMapMutableShortBooleanMap. reject(ShortBooleanPredicate predicate)MutableShortBooleanMapMutableShortBooleanMap. select(ShortBooleanPredicate predicate)default MutableShortBooleanMapMutableShortBooleanMap. withAllKeyValues(Iterable<ShortBooleanPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableShortBooleanMapMutableShortBooleanMap. withKeyValue(short key, boolean value)Associates a value with the specified key.MutableShortBooleanMapMutableShortBooleanMap. withoutAllKeys(ShortIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableShortBooleanMapMutableShortBooleanMap. withoutKey(short key)Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableShortBooleanMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableShortBooleanMap Modifier and Type Class Description classShortBooleanHashMapThis file was automatically generated from template file primitiveBooleanHashMap.stg.classSynchronizedShortBooleanMapA synchronized view of aMutableShortBooleanMap.classUnmodifiableShortBooleanMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableShortBooleanMap Modifier and Type Method Description MutableShortBooleanMapShortBooleanHashMap. asSynchronized()MutableShortBooleanMapSynchronizedShortBooleanMap. asSynchronized()MutableShortBooleanMapUnmodifiableShortBooleanMap. asSynchronized()MutableShortBooleanMapShortBooleanHashMap. asUnmodifiable()MutableShortBooleanMapSynchronizedShortBooleanMap. asUnmodifiable()MutableShortBooleanMapUnmodifiableShortBooleanMap. asUnmodifiable()MutableShortBooleanMapMutableShortBooleanMapFactoryImpl. empty()<T> MutableShortBooleanMapMutableShortBooleanMapFactoryImpl. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)MutableShortBooleanMapMutableShortBooleanMapFactoryImpl. of()MutableShortBooleanMapMutableShortBooleanMapFactoryImpl. ofAll(ShortBooleanMap map)MutableShortBooleanMapMutableShortBooleanMapFactoryImpl. ofInitialCapacity(int capacity)MutableShortBooleanMapSynchronizedShortBooleanMap. reject(ShortBooleanPredicate predicate)MutableShortBooleanMapUnmodifiableShortBooleanMap. reject(ShortBooleanPredicate predicate)MutableShortBooleanMapSynchronizedShortBooleanMap. select(ShortBooleanPredicate predicate)MutableShortBooleanMapUnmodifiableShortBooleanMap. select(ShortBooleanPredicate predicate)MutableShortBooleanMapMutableShortBooleanMapFactoryImpl. with()MutableShortBooleanMapMutableShortBooleanMapFactoryImpl. withAll(ShortBooleanMap map)MutableShortBooleanMapMutableShortBooleanMapFactoryImpl. withInitialCapacity(int capacity)MutableShortBooleanMapSynchronizedShortBooleanMap. withKeyValue(short key, boolean value)MutableShortBooleanMapUnmodifiableShortBooleanMap. withKeyValue(short key, boolean value)MutableShortBooleanMapSynchronizedShortBooleanMap. withoutAllKeys(ShortIterable keys)MutableShortBooleanMapUnmodifiableShortBooleanMap. withoutAllKeys(ShortIterable keys)MutableShortBooleanMapSynchronizedShortBooleanMap. withoutKey(short key)MutableShortBooleanMapUnmodifiableShortBooleanMap. withoutKey(short key)Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableShortBooleanMap Constructor Description SynchronizedShortBooleanMap(MutableShortBooleanMap map)SynchronizedShortBooleanMap(MutableShortBooleanMap map, Object newLock)UnmodifiableShortBooleanMap(MutableShortBooleanMap map)