Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableObjectBooleanMap
-
Packages that use ImmutableObjectBooleanMap 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 ImmutableObjectBooleanMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableObjectBooleanMap Modifier and Type Method Description <K> ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanMapFactory. empty()
<T,K>
ImmutableObjectBooleanMap<K>ImmutableObjectBooleanMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableObjectBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<K> ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanMapFactory. of()
<K> ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanMapFactory. of(K key, boolean value)
<K> ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanMapFactory. ofAll(ObjectBooleanMap<? extends K> map)
<K> ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanMapFactory. with()
<K> ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanMapFactory. with(K key, boolean value)
<K> ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanMapFactory. withAll(ObjectBooleanMap<? extends K> map)
-
Uses of ImmutableObjectBooleanMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableObjectBooleanMap Modifier and Type Method Description ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanMap. newWithKeyValue(K 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.ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanMap. newWithoutKey(K key)
Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanMap. reject(ObjectBooleanPredicate<? super K> predicate)
ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanMap. select(ObjectBooleanPredicate<? super K> predicate)
default ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanMap. tap(BooleanProcedure procedure)
ImmutableObjectBooleanMap<K>
ObjectBooleanMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableObjectBooleanMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableObjectBooleanMap Modifier and Type Class Description class
AbstractImmutableObjectBooleanMap<V>
This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.(package private) class
ImmutableObjectBooleanEmptyMap<K>
ImmutableObjectBooleanEmptyMap is an optimization forImmutableObjectBooleanMap
of size 0.(package private) class
ImmutableObjectBooleanHashMap<K>
ImmutableObjectBooleanHashMap is the non-modifiable equivalent ofObjectBooleanHashMap
.(package private) class
ImmutableObjectBooleanSingletonMap<K>
ImmutableObjectBooleanSingletonMap is an optimization forImmutableObjectBooleanMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableObjectBooleanMap Modifier and Type Field Description (package private) static ImmutableObjectBooleanMap<?>
ImmutableObjectBooleanEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableObjectBooleanMap Modifier and Type Method Description <K> ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanMapFactoryImpl. empty()
<T,K>
ImmutableObjectBooleanMap<K>ImmutableObjectBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, BooleanFunction<? super T> valueFunction)
ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanEmptyMap. newWithKeyValue(K key, boolean value)
ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanHashMap. newWithKeyValue(K key, boolean value)
ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanSingletonMap. newWithKeyValue(K key, boolean value)
ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanEmptyMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanHashMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanSingletonMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanEmptyMap. newWithoutKey(K key)
ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanHashMap. newWithoutKey(K key)
ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanSingletonMap. newWithoutKey(K key)
<K> ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanMapFactoryImpl. of()
<K> ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanMapFactoryImpl. of(K key, boolean value)
<K> ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanMapFactoryImpl. ofAll(ObjectBooleanMap<? extends K> map)
ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanEmptyMap. reject(ObjectBooleanPredicate<? super K> objectBooleanPredicate)
ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanHashMap. reject(ObjectBooleanPredicate<? super K> objectBooleanPredicate)
ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanSingletonMap. reject(ObjectBooleanPredicate<? super K> objectBooleanPredicate)
ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanEmptyMap. select(ObjectBooleanPredicate<? super K> objectBooleanPredicate)
ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanHashMap. select(ObjectBooleanPredicate<? super K> objectBooleanPredicate)
ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanSingletonMap. select(ObjectBooleanPredicate<? super K> objectBooleanPredicate)
ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanEmptyMap. toImmutable()
ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanHashMap. toImmutable()
ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanSingletonMap. toImmutable()
<K> ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanMapFactoryImpl. with()
<K> ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanMapFactoryImpl. with(K key, boolean value)
<K> ImmutableObjectBooleanMap<K>
ImmutableObjectBooleanMapFactoryImpl. withAll(ObjectBooleanMap<? extends K> map)
-
Uses of ImmutableObjectBooleanMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableObjectBooleanMap Modifier and Type Method Description ImmutableObjectBooleanMap<K>
ObjectBooleanHashMap. toImmutable()
ImmutableObjectBooleanMap<K>
ObjectBooleanHashMapWithHashingStrategy. toImmutable()
ImmutableObjectBooleanMap<K>
SynchronizedObjectBooleanMap. toImmutable()
ImmutableObjectBooleanMap<K>
UnmodifiableObjectBooleanMap. toImmutable()
-