Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableLongBooleanMap
-
Packages that use ImmutableLongBooleanMap 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.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.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 ImmutableLongBooleanMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableLongBooleanMap Modifier and Type Method Description ImmutableLongBooleanMap
ImmutableLongBooleanMapFactory. empty()
<T> ImmutableLongBooleanMap
ImmutableLongBooleanMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableLongBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableLongBooleanMap
ImmutableLongBooleanMapFactory. of()
ImmutableLongBooleanMap
ImmutableLongBooleanMapFactory. of(long key, boolean value)
ImmutableLongBooleanMap
ImmutableLongBooleanMapFactory. ofAll(LongBooleanMap map)
ImmutableLongBooleanMap
ImmutableLongBooleanMapFactory. with()
ImmutableLongBooleanMap
ImmutableLongBooleanMapFactory. with(long key, boolean value)
ImmutableLongBooleanMap
ImmutableLongBooleanMapFactory. withAll(LongBooleanMap map)
-
Uses of ImmutableLongBooleanMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableLongBooleanMap Modifier and Type Method Description ImmutableLongBooleanMap
ImmutableLongBooleanMap. newWithKeyValue(long key, boolean value)
Copy this map, associate the value with the key (replacing the value if one already exists forkey
), and return the copy as new immutable map.ImmutableLongBooleanMap
ImmutableLongBooleanMap. newWithoutAllKeys(LongIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableLongBooleanMap
ImmutableLongBooleanMap. newWithoutKey(long key)
Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableLongBooleanMap
ImmutableLongBooleanMap. reject(LongBooleanPredicate predicate)
ImmutableLongBooleanMap
ImmutableLongBooleanMap. select(LongBooleanPredicate predicate)
ImmutableLongBooleanMap
LongBooleanMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableLongBooleanMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableLongBooleanMap Modifier and Type Class Description (package private) class
ImmutableLongBooleanEmptyMap
ImmutableLongBooleanEmptyMap is an optimization forImmutableLongBooleanMap
of size 0.(package private) class
ImmutableLongBooleanHashMap
ImmutableLongBooleanHashMap is the non-modifiable equivalent ofLongBooleanHashMap
.(package private) class
ImmutableLongBooleanSingletonMap
ImmutableLongBooleanSingletonMap is an optimization forImmutableLongBooleanMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableLongBooleanMap Modifier and Type Field Description (package private) static ImmutableLongBooleanMap
ImmutableLongBooleanEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableLongBooleanMap Modifier and Type Method Description ImmutableLongBooleanMap
ImmutableLongBooleanMapFactoryImpl. empty()
<T> ImmutableLongBooleanMap
ImmutableLongBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
ImmutableLongBooleanMap
ImmutableLongBooleanEmptyMap. newWithKeyValue(long key, boolean value)
ImmutableLongBooleanMap
ImmutableLongBooleanHashMap. newWithKeyValue(long key, boolean value)
ImmutableLongBooleanMap
ImmutableLongBooleanSingletonMap. newWithKeyValue(long key, boolean value)
ImmutableLongBooleanMap
ImmutableLongBooleanEmptyMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongBooleanMap
ImmutableLongBooleanHashMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongBooleanMap
ImmutableLongBooleanSingletonMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongBooleanMap
ImmutableLongBooleanEmptyMap. newWithoutKey(long key)
ImmutableLongBooleanMap
ImmutableLongBooleanHashMap. newWithoutKey(long key)
ImmutableLongBooleanMap
ImmutableLongBooleanSingletonMap. newWithoutKey(long key)
ImmutableLongBooleanMap
ImmutableLongBooleanMapFactoryImpl. of()
ImmutableLongBooleanMap
ImmutableLongBooleanMapFactoryImpl. of(long key, boolean value)
ImmutableLongBooleanMap
ImmutableLongBooleanMapFactoryImpl. ofAll(LongBooleanMap map)
ImmutableLongBooleanMap
ImmutableLongBooleanEmptyMap. reject(LongBooleanPredicate predicate)
ImmutableLongBooleanMap
ImmutableLongBooleanHashMap. reject(LongBooleanPredicate predicate)
ImmutableLongBooleanMap
ImmutableLongBooleanSingletonMap. reject(LongBooleanPredicate predicate)
ImmutableLongBooleanMap
ImmutableLongBooleanEmptyMap. select(LongBooleanPredicate predicate)
ImmutableLongBooleanMap
ImmutableLongBooleanHashMap. select(LongBooleanPredicate predicate)
ImmutableLongBooleanMap
ImmutableLongBooleanSingletonMap. select(LongBooleanPredicate predicate)
ImmutableLongBooleanMap
ImmutableLongBooleanEmptyMap. toImmutable()
ImmutableLongBooleanMap
ImmutableLongBooleanHashMap. toImmutable()
ImmutableLongBooleanMap
ImmutableLongBooleanSingletonMap. toImmutable()
ImmutableLongBooleanMap
ImmutableLongBooleanMapFactoryImpl. with()
ImmutableLongBooleanMap
ImmutableLongBooleanMapFactoryImpl. with(long key, boolean value)
ImmutableLongBooleanMap
ImmutableLongBooleanMapFactoryImpl. withAll(LongBooleanMap map)
-
Uses of ImmutableLongBooleanMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableLongBooleanMap Modifier and Type Method Description ImmutableLongBooleanMap
LongBooleanHashMap. toImmutable()
ImmutableLongBooleanMap
SynchronizedLongBooleanMap. toImmutable()
ImmutableLongBooleanMap
UnmodifiableLongBooleanMap. toImmutable()
-