Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableShortBooleanMap
Packages that use ImmutableShortBooleanMap
Package
Description
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
-
Uses of ImmutableShortBooleanMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableShortBooleanMapModifier and TypeMethodDescriptionImmutableShortBooleanMapFactory.empty()
ImmutableShortBooleanMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anImmutableShortBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortBooleanMapFactory.of()
ImmutableShortBooleanMapFactory.of
(short key, boolean value) ImmutableShortBooleanMapFactory.ofAll
(ShortBooleanMap map) ImmutableShortBooleanMapFactory.with()
ImmutableShortBooleanMapFactory.with
(short key, boolean value) ImmutableShortBooleanMapFactory.withAll
(ShortBooleanMap map) -
Uses of ImmutableShortBooleanMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableShortBooleanMapModifier and TypeMethodDescriptionImmutableShortBooleanMap.newWithKeyValue
(short 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.ImmutableShortBooleanMap.newWithoutAllKeys
(ShortIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableShortBooleanMap.newWithoutKey
(short key) Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableShortBooleanMap.reject
(ShortBooleanPredicate predicate) ImmutableShortBooleanMap.select
(ShortBooleanPredicate predicate) ShortBooleanMap.toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableShortBooleanMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableShortBooleanMapModifier and TypeClassDescription(package private) final class
ImmutableShortBooleanEmptyMap is an optimization forImmutableShortBooleanMap
of size 0.(package private) final class
ImmutableShortBooleanHashMap is the non-modifiable equivalent ofShortBooleanHashMap
.(package private) final class
ImmutableShortBooleanSingletonMap is an optimization forImmutableShortBooleanMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableShortBooleanMapModifier and TypeFieldDescription(package private) static final ImmutableShortBooleanMap
ImmutableShortBooleanEmptyMap.INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableShortBooleanMapModifier and TypeMethodDescriptionImmutableShortBooleanMapFactoryImpl.empty()
ImmutableShortBooleanMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) ImmutableShortBooleanEmptyMap.newWithKeyValue
(short key, boolean value) ImmutableShortBooleanHashMap.newWithKeyValue
(short key, boolean value) ImmutableShortBooleanSingletonMap.newWithKeyValue
(short key, boolean value) ImmutableShortBooleanEmptyMap.newWithoutAllKeys
(ShortIterable keys) ImmutableShortBooleanHashMap.newWithoutAllKeys
(ShortIterable keys) ImmutableShortBooleanSingletonMap.newWithoutAllKeys
(ShortIterable keys) ImmutableShortBooleanEmptyMap.newWithoutKey
(short key) ImmutableShortBooleanHashMap.newWithoutKey
(short key) ImmutableShortBooleanSingletonMap.newWithoutKey
(short key) ImmutableShortBooleanMapFactoryImpl.of()
ImmutableShortBooleanMapFactoryImpl.of
(short key, boolean value) ImmutableShortBooleanMapFactoryImpl.ofAll
(ShortBooleanMap map) ImmutableShortBooleanEmptyMap.reject
(ShortBooleanPredicate predicate) ImmutableShortBooleanHashMap.reject
(ShortBooleanPredicate predicate) ImmutableShortBooleanSingletonMap.reject
(ShortBooleanPredicate predicate) ImmutableShortBooleanEmptyMap.select
(ShortBooleanPredicate predicate) ImmutableShortBooleanHashMap.select
(ShortBooleanPredicate predicate) ImmutableShortBooleanSingletonMap.select
(ShortBooleanPredicate predicate) ImmutableShortBooleanEmptyMap.toImmutable()
ImmutableShortBooleanHashMap.toImmutable()
ImmutableShortBooleanSingletonMap.toImmutable()
ImmutableShortBooleanMapFactoryImpl.with()
ImmutableShortBooleanMapFactoryImpl.with
(short key, boolean value) ImmutableShortBooleanMapFactoryImpl.withAll
(ShortBooleanMap map) -
Uses of ImmutableShortBooleanMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableShortBooleanMapModifier and TypeMethodDescriptionShortBooleanHashMap.toImmutable()
SynchronizedShortBooleanMap.toImmutable()
UnmodifiableShortBooleanMap.toImmutable()