Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableByteCharMap
-
Packages that use ImmutableByteCharMap 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 ImmutableByteCharMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableByteCharMap Modifier and Type Method Description ImmutableByteCharMap
ImmutableByteCharMapFactory. empty()
<T> ImmutableByteCharMap
ImmutableByteCharMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableByteCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableByteCharMap
ImmutableByteCharMapFactory. of()
Same asImmutableByteCharMapFactory.empty()
.ImmutableByteCharMap
ImmutableByteCharMapFactory. of(byte key, char value)
ImmutableByteCharMap
ImmutableByteCharMapFactory. ofAll(ByteCharMap map)
ImmutableByteCharMap
ImmutableByteCharMapFactory. with()
Same asImmutableByteCharMapFactory.empty()
.ImmutableByteCharMap
ImmutableByteCharMapFactory. with(byte key, char value)
ImmutableByteCharMap
ImmutableByteCharMapFactory. withAll(ByteCharMap map)
-
Uses of ImmutableByteCharMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableByteCharMap Modifier and Type Method Description ImmutableByteCharMap
ImmutableCharByteMap. flipUniqueValues()
ImmutableByteCharMap
ImmutableByteCharMap. newWithKeyValue(byte key, char 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.ImmutableByteCharMap
ImmutableByteCharMap. 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.ImmutableByteCharMap
ImmutableByteCharMap. 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.ImmutableByteCharMap
ImmutableByteCharMap. reject(ByteCharPredicate predicate)
ImmutableByteCharMap
ImmutableByteCharMap. select(ByteCharPredicate predicate)
ImmutableByteCharMap
ByteCharMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableByteCharMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableByteCharMap Modifier and Type Class Description (package private) class
ImmutableByteCharEmptyMap
ImmutableByteCharEmptyMap is an optimization forImmutableByteCharMap
of size 0.(package private) class
ImmutableByteCharHashMap
ImmutableByteCharHashMap is the non-modifiable equivalent ofByteCharHashMap
.(package private) class
ImmutableByteCharSingletonMap
ImmutableByteCharSingletonMap is an optimization forImmutableByteCharMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableByteCharMap Modifier and Type Field Description (package private) static ImmutableByteCharMap
ImmutableByteCharEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableByteCharMap Modifier and Type Method Description ImmutableByteCharMap
ImmutableByteCharMapFactoryImpl. empty()
ImmutableByteCharMap
ImmutableCharByteEmptyMap. flipUniqueValues()
ImmutableByteCharMap
ImmutableCharByteHashMap. flipUniqueValues()
ImmutableByteCharMap
ImmutableCharByteSingletonMap. flipUniqueValues()
<T> ImmutableByteCharMap
ImmutableByteCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
ImmutableByteCharMap
ImmutableByteCharEmptyMap. newWithKeyValue(byte key, char value)
ImmutableByteCharMap
ImmutableByteCharHashMap. newWithKeyValue(byte key, char value)
ImmutableByteCharMap
ImmutableByteCharSingletonMap. newWithKeyValue(byte key, char value)
ImmutableByteCharMap
ImmutableByteCharEmptyMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteCharMap
ImmutableByteCharHashMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteCharMap
ImmutableByteCharSingletonMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteCharMap
ImmutableByteCharEmptyMap. newWithoutKey(byte key)
ImmutableByteCharMap
ImmutableByteCharHashMap. newWithoutKey(byte key)
ImmutableByteCharMap
ImmutableByteCharSingletonMap. newWithoutKey(byte key)
ImmutableByteCharMap
ImmutableByteCharMapFactoryImpl. of()
ImmutableByteCharMap
ImmutableByteCharMapFactoryImpl. of(byte key, char value)
ImmutableByteCharMap
ImmutableByteCharMapFactoryImpl. ofAll(ByteCharMap map)
ImmutableByteCharMap
ImmutableByteCharEmptyMap. reject(ByteCharPredicate predicate)
ImmutableByteCharMap
ImmutableByteCharHashMap. reject(ByteCharPredicate predicate)
ImmutableByteCharMap
ImmutableByteCharSingletonMap. reject(ByteCharPredicate predicate)
ImmutableByteCharMap
ImmutableByteCharEmptyMap. select(ByteCharPredicate predicate)
ImmutableByteCharMap
ImmutableByteCharHashMap. select(ByteCharPredicate predicate)
ImmutableByteCharMap
ImmutableByteCharSingletonMap. select(ByteCharPredicate predicate)
ImmutableByteCharMap
ImmutableByteCharEmptyMap. toImmutable()
ImmutableByteCharMap
ImmutableByteCharHashMap. toImmutable()
ImmutableByteCharMap
ImmutableByteCharSingletonMap. toImmutable()
ImmutableByteCharMap
ImmutableByteCharMapFactoryImpl. with()
ImmutableByteCharMap
ImmutableByteCharMapFactoryImpl. with(byte key, char value)
ImmutableByteCharMap
ImmutableByteCharMapFactoryImpl. withAll(ByteCharMap map)
-
Uses of ImmutableByteCharMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableByteCharMap Modifier and Type Method Description ImmutableByteCharMap
ByteCharHashMap. toImmutable()
ImmutableByteCharMap
SynchronizedByteCharMap. toImmutable()
ImmutableByteCharMap
UnmodifiableByteCharMap. toImmutable()
-