Class SynchronizedDoubleObjectMap<V>

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

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