Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableShortShortMap
-
Packages that use ImmutableShortShortMap 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 ImmutableShortShortMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableShortShortMap Modifier and Type Method Description ImmutableShortShortMap
ImmutableShortShortMapFactory. empty()
<T> ImmutableShortShortMap
ImmutableShortShortMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableShortShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortShortMap
ImmutableShortShortMapFactory. of()
ImmutableShortShortMap
ImmutableShortShortMapFactory. of(short key, short value)
ImmutableShortShortMap
ImmutableShortShortMapFactory. ofAll(ShortShortMap map)
ImmutableShortShortMap
ImmutableShortShortMapFactory. with()
ImmutableShortShortMap
ImmutableShortShortMapFactory. with(short key, short value)
ImmutableShortShortMap
ImmutableShortShortMapFactory. withAll(ShortShortMap map)
-
Uses of ImmutableShortShortMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableShortShortMap Modifier and Type Method Description ImmutableShortShortMap
ImmutableShortShortMap. flipUniqueValues()
ImmutableShortShortMap
ImmutableShortShortMap. newWithKeyValue(short key, short 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.ImmutableShortShortMap
ImmutableShortShortMap. 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.ImmutableShortShortMap
ImmutableShortShortMap. 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.ImmutableShortShortMap
ImmutableShortShortMap. reject(ShortShortPredicate predicate)
ImmutableShortShortMap
ImmutableShortShortMap. select(ShortShortPredicate predicate)
ImmutableShortShortMap
ShortShortMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableShortShortMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableShortShortMap Modifier and Type Class Description (package private) class
ImmutableShortShortEmptyMap
ImmutableShortShortEmptyMap is an optimization forImmutableShortShortMap
of size 0.(package private) class
ImmutableShortShortHashMap
ImmutableShortShortHashMap is the non-modifiable equivalent ofShortShortHashMap
.(package private) class
ImmutableShortShortSingletonMap
ImmutableShortShortSingletonMap is an optimization forImmutableShortShortMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableShortShortMap Modifier and Type Field Description (package private) static ImmutableShortShortMap
ImmutableShortShortEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableShortShortMap Modifier and Type Method Description ImmutableShortShortMap
ImmutableShortShortMapFactoryImpl. empty()
ImmutableShortShortMap
ImmutableShortShortEmptyMap. flipUniqueValues()
ImmutableShortShortMap
ImmutableShortShortHashMap. flipUniqueValues()
ImmutableShortShortMap
ImmutableShortShortSingletonMap. flipUniqueValues()
<T> ImmutableShortShortMap
ImmutableShortShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
ImmutableShortShortMap
ImmutableShortShortEmptyMap. newWithKeyValue(short key, short value)
ImmutableShortShortMap
ImmutableShortShortHashMap. newWithKeyValue(short key, short value)
ImmutableShortShortMap
ImmutableShortShortSingletonMap. newWithKeyValue(short key, short value)
ImmutableShortShortMap
ImmutableShortShortEmptyMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortShortMap
ImmutableShortShortHashMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortShortMap
ImmutableShortShortSingletonMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortShortMap
ImmutableShortShortEmptyMap. newWithoutKey(short key)
ImmutableShortShortMap
ImmutableShortShortHashMap. newWithoutKey(short key)
ImmutableShortShortMap
ImmutableShortShortSingletonMap. newWithoutKey(short key)
ImmutableShortShortMap
ImmutableShortShortMapFactoryImpl. of()
ImmutableShortShortMap
ImmutableShortShortMapFactoryImpl. of(short key, short value)
ImmutableShortShortMap
ImmutableShortShortMapFactoryImpl. ofAll(ShortShortMap map)
ImmutableShortShortMap
ImmutableShortShortEmptyMap. reject(ShortShortPredicate predicate)
ImmutableShortShortMap
ImmutableShortShortHashMap. reject(ShortShortPredicate predicate)
ImmutableShortShortMap
ImmutableShortShortSingletonMap. reject(ShortShortPredicate predicate)
ImmutableShortShortMap
ImmutableShortShortEmptyMap. select(ShortShortPredicate predicate)
ImmutableShortShortMap
ImmutableShortShortHashMap. select(ShortShortPredicate predicate)
ImmutableShortShortMap
ImmutableShortShortSingletonMap. select(ShortShortPredicate predicate)
ImmutableShortShortMap
ImmutableShortShortEmptyMap. toImmutable()
ImmutableShortShortMap
ImmutableShortShortHashMap. toImmutable()
ImmutableShortShortMap
ImmutableShortShortSingletonMap. toImmutable()
ImmutableShortShortMap
ImmutableShortShortMapFactoryImpl. with()
ImmutableShortShortMap
ImmutableShortShortMapFactoryImpl. with(short key, short value)
ImmutableShortShortMap
ImmutableShortShortMapFactoryImpl. withAll(ShortShortMap map)
-
Uses of ImmutableShortShortMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableShortShortMap Modifier and Type Method Description ImmutableShortShortMap
ShortShortHashMap. toImmutable()
ImmutableShortShortMap
SynchronizedShortShortMap. toImmutable()
ImmutableShortShortMap
UnmodifiableShortShortMap. toImmutable()
-