Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableByteBooleanMap
-
Packages that use ImmutableByteBooleanMap 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 ImmutableByteBooleanMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableByteBooleanMap Modifier and Type Method Description ImmutableByteBooleanMap
ImmutableByteBooleanMapFactory. empty()
<T> ImmutableByteBooleanMap
ImmutableByteBooleanMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableByteBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableByteBooleanMap
ImmutableByteBooleanMapFactory. of()
ImmutableByteBooleanMap
ImmutableByteBooleanMapFactory. of(byte key, boolean value)
ImmutableByteBooleanMap
ImmutableByteBooleanMapFactory. ofAll(ByteBooleanMap map)
ImmutableByteBooleanMap
ImmutableByteBooleanMapFactory. with()
ImmutableByteBooleanMap
ImmutableByteBooleanMapFactory. with(byte key, boolean value)
ImmutableByteBooleanMap
ImmutableByteBooleanMapFactory. withAll(ByteBooleanMap map)
-
Uses of ImmutableByteBooleanMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableByteBooleanMap Modifier and Type Method Description ImmutableByteBooleanMap
ImmutableByteBooleanMap. newWithKeyValue(byte 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.ImmutableByteBooleanMap
ImmutableByteBooleanMap. newWithoutAllKeys(ByteIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableByteBooleanMap
ImmutableByteBooleanMap. newWithoutKey(byte key)
Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableByteBooleanMap
ImmutableByteBooleanMap. reject(ByteBooleanPredicate predicate)
ImmutableByteBooleanMap
ImmutableByteBooleanMap. select(ByteBooleanPredicate predicate)
ImmutableByteBooleanMap
ByteBooleanMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableByteBooleanMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableByteBooleanMap Modifier and Type Class Description (package private) class
ImmutableByteBooleanEmptyMap
ImmutableByteBooleanEmptyMap is an optimization forImmutableByteBooleanMap
of size 0.(package private) class
ImmutableByteBooleanHashMap
ImmutableByteBooleanHashMap is the non-modifiable equivalent ofByteBooleanHashMap
.(package private) class
ImmutableByteBooleanSingletonMap
ImmutableByteBooleanSingletonMap is an optimization forImmutableByteBooleanMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableByteBooleanMap Modifier and Type Field Description (package private) static ImmutableByteBooleanMap
ImmutableByteBooleanEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableByteBooleanMap Modifier and Type Method Description ImmutableByteBooleanMap
ImmutableByteBooleanMapFactoryImpl. empty()
<T> ImmutableByteBooleanMap
ImmutableByteBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
ImmutableByteBooleanMap
ImmutableByteBooleanEmptyMap. newWithKeyValue(byte key, boolean value)
ImmutableByteBooleanMap
ImmutableByteBooleanHashMap. newWithKeyValue(byte key, boolean value)
ImmutableByteBooleanMap
ImmutableByteBooleanSingletonMap. newWithKeyValue(byte key, boolean value)
ImmutableByteBooleanMap
ImmutableByteBooleanEmptyMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteBooleanMap
ImmutableByteBooleanHashMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteBooleanMap
ImmutableByteBooleanSingletonMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteBooleanMap
ImmutableByteBooleanEmptyMap. newWithoutKey(byte key)
ImmutableByteBooleanMap
ImmutableByteBooleanHashMap. newWithoutKey(byte key)
ImmutableByteBooleanMap
ImmutableByteBooleanSingletonMap. newWithoutKey(byte key)
ImmutableByteBooleanMap
ImmutableByteBooleanMapFactoryImpl. of()
ImmutableByteBooleanMap
ImmutableByteBooleanMapFactoryImpl. of(byte key, boolean value)
ImmutableByteBooleanMap
ImmutableByteBooleanMapFactoryImpl. ofAll(ByteBooleanMap map)
ImmutableByteBooleanMap
ImmutableByteBooleanEmptyMap. reject(ByteBooleanPredicate predicate)
ImmutableByteBooleanMap
ImmutableByteBooleanHashMap. reject(ByteBooleanPredicate predicate)
ImmutableByteBooleanMap
ImmutableByteBooleanSingletonMap. reject(ByteBooleanPredicate predicate)
ImmutableByteBooleanMap
ImmutableByteBooleanEmptyMap. select(ByteBooleanPredicate predicate)
ImmutableByteBooleanMap
ImmutableByteBooleanHashMap. select(ByteBooleanPredicate predicate)
ImmutableByteBooleanMap
ImmutableByteBooleanSingletonMap. select(ByteBooleanPredicate predicate)
ImmutableByteBooleanMap
ImmutableByteBooleanEmptyMap. toImmutable()
ImmutableByteBooleanMap
ImmutableByteBooleanHashMap. toImmutable()
ImmutableByteBooleanMap
ImmutableByteBooleanSingletonMap. toImmutable()
ImmutableByteBooleanMap
ImmutableByteBooleanMapFactoryImpl. with()
ImmutableByteBooleanMap
ImmutableByteBooleanMapFactoryImpl. with(byte key, boolean value)
ImmutableByteBooleanMap
ImmutableByteBooleanMapFactoryImpl. withAll(ByteBooleanMap map)
-
Uses of ImmutableByteBooleanMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableByteBooleanMap Modifier and Type Method Description ImmutableByteBooleanMap
ByteBooleanHashMap. toImmutable()
ImmutableByteBooleanMap
SynchronizedByteBooleanMap. toImmutable()
ImmutableByteBooleanMap
UnmodifiableByteBooleanMap. toImmutable()
-