Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableShortBooleanMap
-
Packages that use ImmutableShortBooleanMap 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 ImmutableShortBooleanMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableShortBooleanMap Modifier and Type Method Description ImmutableShortBooleanMap
ImmutableShortBooleanMapFactory. empty()
<T> ImmutableShortBooleanMap
ImmutableShortBooleanMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableShortBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortBooleanMap
ImmutableShortBooleanMapFactory. of()
ImmutableShortBooleanMap
ImmutableShortBooleanMapFactory. of(short key, boolean value)
ImmutableShortBooleanMap
ImmutableShortBooleanMapFactory. ofAll(ShortBooleanMap map)
ImmutableShortBooleanMap
ImmutableShortBooleanMapFactory. with()
ImmutableShortBooleanMap
ImmutableShortBooleanMapFactory. with(short key, boolean value)
ImmutableShortBooleanMap
ImmutableShortBooleanMapFactory. withAll(ShortBooleanMap map)
-
Uses of ImmutableShortBooleanMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableShortBooleanMap Modifier and Type Method Description ImmutableShortBooleanMap
ImmutableShortBooleanMap. 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
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
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
ImmutableShortBooleanMap. reject(ShortBooleanPredicate predicate)
ImmutableShortBooleanMap
ImmutableShortBooleanMap. select(ShortBooleanPredicate predicate)
ImmutableShortBooleanMap
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 ImmutableShortBooleanMap Modifier and Type Class Description (package private) class
ImmutableShortBooleanEmptyMap
ImmutableShortBooleanEmptyMap is an optimization forImmutableShortBooleanMap
of size 0.(package private) class
ImmutableShortBooleanHashMap
ImmutableShortBooleanHashMap is the non-modifiable equivalent ofShortBooleanHashMap
.(package private) class
ImmutableShortBooleanSingletonMap
ImmutableShortBooleanSingletonMap is an optimization forImmutableShortBooleanMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableShortBooleanMap Modifier and Type Field Description (package private) static ImmutableShortBooleanMap
ImmutableShortBooleanEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableShortBooleanMap Modifier and Type Method Description ImmutableShortBooleanMap
ImmutableShortBooleanMapFactoryImpl. empty()
<T> ImmutableShortBooleanMap
ImmutableShortBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
ImmutableShortBooleanMap
ImmutableShortBooleanEmptyMap. newWithKeyValue(short key, boolean value)
ImmutableShortBooleanMap
ImmutableShortBooleanHashMap. newWithKeyValue(short key, boolean value)
ImmutableShortBooleanMap
ImmutableShortBooleanSingletonMap. newWithKeyValue(short key, boolean value)
ImmutableShortBooleanMap
ImmutableShortBooleanEmptyMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortBooleanMap
ImmutableShortBooleanHashMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortBooleanMap
ImmutableShortBooleanSingletonMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortBooleanMap
ImmutableShortBooleanEmptyMap. newWithoutKey(short key)
ImmutableShortBooleanMap
ImmutableShortBooleanHashMap. newWithoutKey(short key)
ImmutableShortBooleanMap
ImmutableShortBooleanSingletonMap. newWithoutKey(short key)
ImmutableShortBooleanMap
ImmutableShortBooleanMapFactoryImpl. of()
ImmutableShortBooleanMap
ImmutableShortBooleanMapFactoryImpl. of(short key, boolean value)
ImmutableShortBooleanMap
ImmutableShortBooleanMapFactoryImpl. ofAll(ShortBooleanMap map)
ImmutableShortBooleanMap
ImmutableShortBooleanEmptyMap. reject(ShortBooleanPredicate predicate)
ImmutableShortBooleanMap
ImmutableShortBooleanHashMap. reject(ShortBooleanPredicate predicate)
ImmutableShortBooleanMap
ImmutableShortBooleanSingletonMap. reject(ShortBooleanPredicate predicate)
ImmutableShortBooleanMap
ImmutableShortBooleanEmptyMap. select(ShortBooleanPredicate predicate)
ImmutableShortBooleanMap
ImmutableShortBooleanHashMap. select(ShortBooleanPredicate predicate)
ImmutableShortBooleanMap
ImmutableShortBooleanSingletonMap. select(ShortBooleanPredicate predicate)
ImmutableShortBooleanMap
ImmutableShortBooleanEmptyMap. toImmutable()
ImmutableShortBooleanMap
ImmutableShortBooleanHashMap. toImmutable()
ImmutableShortBooleanMap
ImmutableShortBooleanSingletonMap. toImmutable()
ImmutableShortBooleanMap
ImmutableShortBooleanMapFactoryImpl. with()
ImmutableShortBooleanMap
ImmutableShortBooleanMapFactoryImpl. with(short key, boolean value)
ImmutableShortBooleanMap
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 ImmutableShortBooleanMap Modifier and Type Method Description ImmutableShortBooleanMap
ShortBooleanHashMap. toImmutable()
ImmutableShortBooleanMap
SynchronizedShortBooleanMap. toImmutable()
ImmutableShortBooleanMap
UnmodifiableShortBooleanMap. toImmutable()
-