Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableShortByteMap
-
Packages that use ImmutableShortByteMap 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 ImmutableShortByteMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableShortByteMap Modifier and Type Method Description ImmutableShortByteMap
ImmutableShortByteMapFactory. empty()
<T> ImmutableShortByteMap
ImmutableShortByteMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableShortByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortByteMap
ImmutableShortByteMapFactory. of()
Same asImmutableShortByteMapFactory.empty()
.ImmutableShortByteMap
ImmutableShortByteMapFactory. of(short key, byte value)
ImmutableShortByteMap
ImmutableShortByteMapFactory. ofAll(ShortByteMap map)
ImmutableShortByteMap
ImmutableShortByteMapFactory. with()
Same asImmutableShortByteMapFactory.empty()
.ImmutableShortByteMap
ImmutableShortByteMapFactory. with(short key, byte value)
ImmutableShortByteMap
ImmutableShortByteMapFactory. withAll(ShortByteMap map)
-
Uses of ImmutableShortByteMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableShortByteMap Modifier and Type Method Description ImmutableShortByteMap
ImmutableByteShortMap. flipUniqueValues()
ImmutableShortByteMap
ImmutableShortByteMap. newWithKeyValue(short key, byte 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.ImmutableShortByteMap
ImmutableShortByteMap. 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.ImmutableShortByteMap
ImmutableShortByteMap. 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.ImmutableShortByteMap
ImmutableShortByteMap. reject(ShortBytePredicate predicate)
ImmutableShortByteMap
ImmutableShortByteMap. select(ShortBytePredicate predicate)
ImmutableShortByteMap
ShortByteMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableShortByteMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableShortByteMap Modifier and Type Class Description (package private) class
ImmutableShortByteEmptyMap
ImmutableShortByteEmptyMap is an optimization forImmutableShortByteMap
of size 0.(package private) class
ImmutableShortByteHashMap
ImmutableShortByteHashMap is the non-modifiable equivalent ofShortByteHashMap
.(package private) class
ImmutableShortByteSingletonMap
ImmutableShortByteSingletonMap is an optimization forImmutableShortByteMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableShortByteMap Modifier and Type Field Description (package private) static ImmutableShortByteMap
ImmutableShortByteEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableShortByteMap Modifier and Type Method Description ImmutableShortByteMap
ImmutableShortByteMapFactoryImpl. empty()
ImmutableShortByteMap
ImmutableByteShortEmptyMap. flipUniqueValues()
ImmutableShortByteMap
ImmutableByteShortHashMap. flipUniqueValues()
ImmutableShortByteMap
ImmutableByteShortSingletonMap. flipUniqueValues()
<T> ImmutableShortByteMap
ImmutableShortByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
ImmutableShortByteMap
ImmutableShortByteEmptyMap. newWithKeyValue(short key, byte value)
ImmutableShortByteMap
ImmutableShortByteHashMap. newWithKeyValue(short key, byte value)
ImmutableShortByteMap
ImmutableShortByteSingletonMap. newWithKeyValue(short key, byte value)
ImmutableShortByteMap
ImmutableShortByteEmptyMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortByteMap
ImmutableShortByteHashMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortByteMap
ImmutableShortByteSingletonMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortByteMap
ImmutableShortByteEmptyMap. newWithoutKey(short key)
ImmutableShortByteMap
ImmutableShortByteHashMap. newWithoutKey(short key)
ImmutableShortByteMap
ImmutableShortByteSingletonMap. newWithoutKey(short key)
ImmutableShortByteMap
ImmutableShortByteMapFactoryImpl. of()
ImmutableShortByteMap
ImmutableShortByteMapFactoryImpl. of(short key, byte value)
ImmutableShortByteMap
ImmutableShortByteMapFactoryImpl. ofAll(ShortByteMap map)
ImmutableShortByteMap
ImmutableShortByteEmptyMap. reject(ShortBytePredicate predicate)
ImmutableShortByteMap
ImmutableShortByteHashMap. reject(ShortBytePredicate predicate)
ImmutableShortByteMap
ImmutableShortByteSingletonMap. reject(ShortBytePredicate predicate)
ImmutableShortByteMap
ImmutableShortByteEmptyMap. select(ShortBytePredicate predicate)
ImmutableShortByteMap
ImmutableShortByteHashMap. select(ShortBytePredicate predicate)
ImmutableShortByteMap
ImmutableShortByteSingletonMap. select(ShortBytePredicate predicate)
ImmutableShortByteMap
ImmutableShortByteEmptyMap. toImmutable()
ImmutableShortByteMap
ImmutableShortByteHashMap. toImmutable()
ImmutableShortByteMap
ImmutableShortByteSingletonMap. toImmutable()
ImmutableShortByteMap
ImmutableShortByteMapFactoryImpl. with()
ImmutableShortByteMap
ImmutableShortByteMapFactoryImpl. with(short key, byte value)
ImmutableShortByteMap
ImmutableShortByteMapFactoryImpl. withAll(ShortByteMap map)
-
Uses of ImmutableShortByteMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableShortByteMap Modifier and Type Method Description ImmutableShortByteMap
ShortByteHashMap. toImmutable()
ImmutableShortByteMap
SynchronizedShortByteMap. toImmutable()
ImmutableShortByteMap
UnmodifiableShortByteMap. toImmutable()
-