Uses of Interface
org.eclipse.collections.api.map.primitive.MutableLongBooleanMap
| 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 MutableLongBooleanMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableLongBooleanMap Modifier and Type Method Description MutableLongBooleanMapMutableLongBooleanMapFactory. empty()<T> MutableLongBooleanMapMutableLongBooleanMapFactory. from(Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableLongBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongBooleanMapMutableLongBooleanMapFactory. of()Same asMutableLongBooleanMapFactory.empty().MutableLongBooleanMapMutableLongBooleanMapFactory. ofAll(LongBooleanMap map)MutableLongBooleanMapMutableLongBooleanMapFactory. ofInitialCapacity(int capacity)Same asMutableLongBooleanMapFactory.empty().MutableLongBooleanMapMutableLongBooleanMapFactory. with()Same asMutableLongBooleanMapFactory.empty().MutableLongBooleanMapMutableLongBooleanMapFactory. withAll(LongBooleanMap map)MutableLongBooleanMapMutableLongBooleanMapFactory. withInitialCapacity(int capacity)Same asMutableLongBooleanMapFactory.empty(). -
Uses of MutableLongBooleanMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableLongBooleanMap Modifier and Type Method Description MutableLongBooleanMapMutableLongBooleanMap. 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.MutableLongBooleanMapMutableLongBooleanMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableLongBooleanMapMutableLongBooleanMap. reject(LongBooleanPredicate predicate)MutableLongBooleanMapMutableLongBooleanMap. select(LongBooleanPredicate predicate)default MutableLongBooleanMapMutableLongBooleanMap. withAllKeyValues(Iterable<LongBooleanPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableLongBooleanMapMutableLongBooleanMap. withKeyValue(long key, boolean value)Associates a value with the specified key.MutableLongBooleanMapMutableLongBooleanMap. withoutAllKeys(LongIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableLongBooleanMapMutableLongBooleanMap. withoutKey(long key)Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableLongBooleanMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableLongBooleanMap Modifier and Type Class Description classLongBooleanHashMapThis file was automatically generated from template file primitiveBooleanHashMap.stg.classSynchronizedLongBooleanMapA synchronized view of aMutableLongBooleanMap.classUnmodifiableLongBooleanMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableLongBooleanMap Modifier and Type Method Description MutableLongBooleanMapLongBooleanHashMap. asSynchronized()MutableLongBooleanMapSynchronizedLongBooleanMap. asSynchronized()MutableLongBooleanMapUnmodifiableLongBooleanMap. asSynchronized()MutableLongBooleanMapLongBooleanHashMap. asUnmodifiable()MutableLongBooleanMapSynchronizedLongBooleanMap. asUnmodifiable()MutableLongBooleanMapUnmodifiableLongBooleanMap. asUnmodifiable()MutableLongBooleanMapMutableLongBooleanMapFactoryImpl. empty()<T> MutableLongBooleanMapMutableLongBooleanMapFactoryImpl. from(Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)MutableLongBooleanMapMutableLongBooleanMapFactoryImpl. of()MutableLongBooleanMapMutableLongBooleanMapFactoryImpl. ofAll(LongBooleanMap map)MutableLongBooleanMapMutableLongBooleanMapFactoryImpl. ofInitialCapacity(int capacity)MutableLongBooleanMapSynchronizedLongBooleanMap. reject(LongBooleanPredicate predicate)MutableLongBooleanMapUnmodifiableLongBooleanMap. reject(LongBooleanPredicate predicate)MutableLongBooleanMapSynchronizedLongBooleanMap. select(LongBooleanPredicate predicate)MutableLongBooleanMapUnmodifiableLongBooleanMap. select(LongBooleanPredicate predicate)MutableLongBooleanMapMutableLongBooleanMapFactoryImpl. with()MutableLongBooleanMapMutableLongBooleanMapFactoryImpl. withAll(LongBooleanMap map)MutableLongBooleanMapMutableLongBooleanMapFactoryImpl. withInitialCapacity(int capacity)MutableLongBooleanMapSynchronizedLongBooleanMap. withKeyValue(long key, boolean value)MutableLongBooleanMapUnmodifiableLongBooleanMap. withKeyValue(long key, boolean value)MutableLongBooleanMapSynchronizedLongBooleanMap. withoutAllKeys(LongIterable keys)MutableLongBooleanMapUnmodifiableLongBooleanMap. withoutAllKeys(LongIterable keys)MutableLongBooleanMapSynchronizedLongBooleanMap. withoutKey(long key)MutableLongBooleanMapUnmodifiableLongBooleanMap. withoutKey(long key)Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableLongBooleanMap Constructor Description SynchronizedLongBooleanMap(MutableLongBooleanMap map)SynchronizedLongBooleanMap(MutableLongBooleanMap map, Object newLock)UnmodifiableLongBooleanMap(MutableLongBooleanMap map)