Class SynchronizedLongObjectMap<V>

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

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