Class SynchronizedShortObjectMap<V>

java.lang.Object
org.eclipse.collections.impl.map.mutable.primitive.SynchronizedShortObjectMap<V>
All Implemented Interfaces:
Serializable, Iterable<V>, InternalIterable<V>, MutablePrimitiveObjectMap<V>, MutableShortObjectMap<V>, PrimitiveObjectMap<V>, ShortObjectMap<V>, RichIterable<V>

public class SynchronizedShortObjectMap<V> extends Object implements MutableShortObjectMap<V>, Serializable
A synchronized view of a MutableShortObjectMap. It is imperative that the user manually synchronize on the collection when iterating over it using the standard JDK iterator or JDK 5 for loop, as per Collections.synchronizedCollection(Collection).

This file was automatically generated from template file synchronizedPrimitiveObjectMap.stg.

Since:
3.1.
See Also: