Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableIntBooleanMap
-
Packages that use ImmutableIntBooleanMap 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 ImmutableIntBooleanMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableIntBooleanMap Modifier and Type Method Description ImmutableIntBooleanMap
ImmutableIntBooleanMapFactory. empty()
<T> ImmutableIntBooleanMap
ImmutableIntBooleanMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableIntBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableIntBooleanMap
ImmutableIntBooleanMapFactory. of()
ImmutableIntBooleanMap
ImmutableIntBooleanMapFactory. of(int key, boolean value)
ImmutableIntBooleanMap
ImmutableIntBooleanMapFactory. ofAll(IntBooleanMap map)
ImmutableIntBooleanMap
ImmutableIntBooleanMapFactory. with()
ImmutableIntBooleanMap
ImmutableIntBooleanMapFactory. with(int key, boolean value)
ImmutableIntBooleanMap
ImmutableIntBooleanMapFactory. withAll(IntBooleanMap map)
-
Uses of ImmutableIntBooleanMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableIntBooleanMap Modifier and Type Method Description ImmutableIntBooleanMap
ImmutableIntBooleanMap. newWithKeyValue(int 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.ImmutableIntBooleanMap
ImmutableIntBooleanMap. newWithoutAllKeys(IntIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableIntBooleanMap
ImmutableIntBooleanMap. newWithoutKey(int key)
Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableIntBooleanMap
ImmutableIntBooleanMap. reject(IntBooleanPredicate predicate)
ImmutableIntBooleanMap
ImmutableIntBooleanMap. select(IntBooleanPredicate predicate)
ImmutableIntBooleanMap
IntBooleanMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableIntBooleanMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableIntBooleanMap Modifier and Type Class Description (package private) class
ImmutableIntBooleanEmptyMap
ImmutableIntBooleanEmptyMap is an optimization forImmutableIntBooleanMap
of size 0.(package private) class
ImmutableIntBooleanHashMap
ImmutableIntBooleanHashMap is the non-modifiable equivalent ofIntBooleanHashMap
.(package private) class
ImmutableIntBooleanSingletonMap
ImmutableIntBooleanSingletonMap is an optimization forImmutableIntBooleanMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableIntBooleanMap Modifier and Type Field Description (package private) static ImmutableIntBooleanMap
ImmutableIntBooleanEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableIntBooleanMap Modifier and Type Method Description ImmutableIntBooleanMap
ImmutableIntBooleanMapFactoryImpl. empty()
<T> ImmutableIntBooleanMap
ImmutableIntBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
ImmutableIntBooleanMap
ImmutableIntBooleanEmptyMap. newWithKeyValue(int key, boolean value)
ImmutableIntBooleanMap
ImmutableIntBooleanHashMap. newWithKeyValue(int key, boolean value)
ImmutableIntBooleanMap
ImmutableIntBooleanSingletonMap. newWithKeyValue(int key, boolean value)
ImmutableIntBooleanMap
ImmutableIntBooleanEmptyMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntBooleanMap
ImmutableIntBooleanHashMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntBooleanMap
ImmutableIntBooleanSingletonMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntBooleanMap
ImmutableIntBooleanEmptyMap. newWithoutKey(int key)
ImmutableIntBooleanMap
ImmutableIntBooleanHashMap. newWithoutKey(int key)
ImmutableIntBooleanMap
ImmutableIntBooleanSingletonMap. newWithoutKey(int key)
ImmutableIntBooleanMap
ImmutableIntBooleanMapFactoryImpl. of()
ImmutableIntBooleanMap
ImmutableIntBooleanMapFactoryImpl. of(int key, boolean value)
ImmutableIntBooleanMap
ImmutableIntBooleanMapFactoryImpl. ofAll(IntBooleanMap map)
ImmutableIntBooleanMap
ImmutableIntBooleanEmptyMap. reject(IntBooleanPredicate predicate)
ImmutableIntBooleanMap
ImmutableIntBooleanHashMap. reject(IntBooleanPredicate predicate)
ImmutableIntBooleanMap
ImmutableIntBooleanSingletonMap. reject(IntBooleanPredicate predicate)
ImmutableIntBooleanMap
ImmutableIntBooleanEmptyMap. select(IntBooleanPredicate predicate)
ImmutableIntBooleanMap
ImmutableIntBooleanHashMap. select(IntBooleanPredicate predicate)
ImmutableIntBooleanMap
ImmutableIntBooleanSingletonMap. select(IntBooleanPredicate predicate)
ImmutableIntBooleanMap
ImmutableIntBooleanEmptyMap. toImmutable()
ImmutableIntBooleanMap
ImmutableIntBooleanHashMap. toImmutable()
ImmutableIntBooleanMap
ImmutableIntBooleanSingletonMap. toImmutable()
ImmutableIntBooleanMap
ImmutableIntBooleanMapFactoryImpl. with()
ImmutableIntBooleanMap
ImmutableIntBooleanMapFactoryImpl. with(int key, boolean value)
ImmutableIntBooleanMap
ImmutableIntBooleanMapFactoryImpl. withAll(IntBooleanMap map)
-
Uses of ImmutableIntBooleanMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableIntBooleanMap Modifier and Type Method Description ImmutableIntBooleanMap
IntBooleanHashMap. toImmutable()
ImmutableIntBooleanMap
SynchronizedIntBooleanMap. toImmutable()
ImmutableIntBooleanMap
UnmodifiableIntBooleanMap. toImmutable()
-