Uses of Interface
org.eclipse.collections.api.map.primitive.ObjectShortMap
-
Packages that use ObjectShortMap 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 ObjectShortMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive with parameters of type ObjectShortMap Modifier and Type Method Description <K> ImmutableObjectShortMap<K>
ImmutableObjectShortMapFactory. ofAll(ObjectShortMap<? extends K> map)
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactory. ofAll(ObjectShortMap<? extends K> map)
<K> ImmutableObjectShortMap<K>
ImmutableObjectShortMapFactory. withAll(ObjectShortMap<? extends K> map)
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactory. withAll(ObjectShortMap<? extends K> map)
-
Uses of ObjectShortMap in org.eclipse.collections.api.map.primitive
Subinterfaces of ObjectShortMap in org.eclipse.collections.api.map.primitive Modifier and Type Interface Description interface
ImmutableObjectShortMap<K>
This file was automatically generated from template file immutableObjectPrimitiveMap.stg.interface
MutableObjectShortMap<K>
This file was automatically generated from template file mutableObjectPrimitiveMap.stg.Methods in org.eclipse.collections.api.map.primitive that return ObjectShortMap Modifier and Type Method Description ObjectShortMap<V>
ShortObjectMap. flipUniqueValues()
Return the ObjectShortMap that is obtained by flipping the direction of this map and making the associations from value to key.ObjectShortMap<K>
ObjectShortMap. reject(ObjectShortPredicate<? super K> predicate)
Return a copy of this map containing only the key/value pairs that do not match the predicate.ObjectShortMap<K>
ObjectShortMap. select(ObjectShortPredicate<? super K> predicate)
Return a copy of this map containing only the key/value pairs that match the predicate.default ObjectShortMap<K>
ObjectShortMap. tap(ShortProcedure procedure)
Methods in org.eclipse.collections.api.map.primitive with parameters of type ObjectShortMap Modifier and Type Method Description void
MutableObjectShortMap. putAll(ObjectShortMap<? extends K> map)
Puts all of the key/value mappings from the specified map into this map. -
Uses of ObjectShortMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ObjectShortMap Modifier and Type Class Description class
AbstractImmutableObjectShortMap<V>
This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.(package private) class
ImmutableObjectShortEmptyMap<K>
ImmutableObjectShortEmptyMap is an optimization forImmutableObjectShortMap
of size 0.(package private) class
ImmutableObjectShortHashMap<K>
ImmutableObjectShortHashMap is the non-modifiable equivalent ofObjectShortHashMap
.(package private) class
ImmutableObjectShortSingletonMap<K>
ImmutableObjectShortSingletonMap is an optimization forImmutableObjectShortMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ObjectShortMap Modifier and Type Field Description private ObjectShortMap<V>
AbstractImmutableObjectShortMap.ImmutableObjectShortMapSerializationProxy. map
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type ObjectShortMap Modifier and Type Method Description <K> ImmutableObjectShortMap<K>
ImmutableObjectShortMapFactoryImpl. ofAll(ObjectShortMap<? extends K> map)
<K> ImmutableObjectShortMap<K>
ImmutableObjectShortMapFactoryImpl. withAll(ObjectShortMap<? extends K> map)
Constructors in org.eclipse.collections.impl.map.immutable.primitive with parameters of type ObjectShortMap Constructor Description ImmutableObjectShortHashMap(ObjectShortMap<? extends K> delegate)
ImmutableObjectShortMapSerializationProxy(ObjectShortMap<V> map)
-
Uses of ObjectShortMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement ObjectShortMap Modifier and Type Class Description class
ObjectShortHashMap<K>
This file was automatically generated from template file objectPrimitiveHashMap.stg.class
ObjectShortHashMapWithHashingStrategy<K>
This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.class
SynchronizedObjectShortMap<K>
A synchronized view of aMutableObjectShortMap
.class
UnmodifiableObjectShortMap<K>
This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ObjectShortMap Modifier and Type Method Description static <K> ObjectShortHashMapWithHashingStrategy<K>
ObjectShortHashMapWithHashingStrategy. newMap(HashingStrategy<? super K> hashingStrategy, ObjectShortMap<K> map)
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactoryImpl. ofAll(ObjectShortMap<? extends K> map)
void
ObjectShortHashMap. putAll(ObjectShortMap<? extends K> map)
void
ObjectShortHashMapWithHashingStrategy. putAll(ObjectShortMap<? extends K> map)
void
SynchronizedObjectShortMap. putAll(ObjectShortMap<? extends K> map)
void
UnmodifiableObjectShortMap. putAll(ObjectShortMap<? extends K> map)
<K> MutableObjectShortMap<K>
MutableObjectShortMapFactoryImpl. withAll(ObjectShortMap<? extends K> map)
Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ObjectShortMap Constructor Description ObjectShortHashMap(ObjectShortMap<? extends K> map)
ObjectShortHashMapWithHashingStrategy(HashingStrategy<? super K> hashingStrategy, ObjectShortMap<? extends K> map)
-