Class SynchronizedIntObjectMap<V>

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

public class SynchronizedIntObjectMap<V> extends Object implements MutableIntObjectMap<V>, Serializable
A synchronized view of a MutableIntObjectMap. 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: