package org.eclipse.collections.impl.map.mutable.primitive;
import java.io.Serializable;
import java.util.Collection;
import java.util.Collections;
import org.eclipse.collections.api.ShortIterable;
import org.eclipse.collections.api.DoubleIterable;
import org.eclipse.collections.api.LazyShortIterable;
import org.eclipse.collections.api.LazyDoubleIterable;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.bag.MutableBag;
import org.eclipse.collections.api.bag.primitive.MutableShortBag;
import org.eclipse.collections.api.block.function.primitive.ShortFunction;
import org.eclipse.collections.api.block.function.primitive.ShortFunction0;
import org.eclipse.collections.api.block.function.primitive.ShortToShortFunction;
import org.eclipse.collections.api.block.function.primitive.ShortToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.DoubleShortToShortFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectShortToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.DoubleToShortFunction;
import org.eclipse.collections.api.block.predicate.primitive.ShortPredicate;
import org.eclipse.collections.api.block.predicate.primitive.DoubleShortPredicate;
import org.eclipse.collections.api.block.procedure.primitive.ShortProcedure;
import org.eclipse.collections.api.block.procedure.primitive.DoubleShortProcedure;
import org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure;
import org.eclipse.collections.api.collection.primitive.MutableShortCollection;
import org.eclipse.collections.api.iterator.MutableShortIterator;
import org.eclipse.collections.api.list.primitive.MutableShortList;
import org.eclipse.collections.api.map.MutableMap;
import org.eclipse.collections.api.map.primitive.ImmutableDoubleShortMap;
import org.eclipse.collections.api.map.primitive.DoubleShortMap;
import org.eclipse.collections.api.map.primitive.MutableDoubleShortMap;
import org.eclipse.collections.api.map.primitive.MutableShortDoubleMap;
import org.eclipse.collections.api.set.primitive.MutableDoubleSet;
import org.eclipse.collections.api.set.primitive.MutableShortSet;
import org.eclipse.collections.api.tuple.primitive.DoubleShortPair;
import org.eclipse.collections.impl.SynchronizedRichIterable;
import org.eclipse.collections.impl.factory.primitive.DoubleShortMaps;
import org.eclipse.collections.impl.set.mutable.primitive.SynchronizedDoubleSet;
import org.eclipse.collections.impl.collection.mutable.primitive.SynchronizedShortCollection;
public class SynchronizedDoubleShortMap
implements MutableDoubleShortMap, Serializable
{
private static final long serialVersionUID = 1L;
private final Object lock;
private final MutableDoubleShortMap map;
public SynchronizedDoubleShortMap(MutableDoubleShortMap map)
{
this(map, null);
}
public SynchronizedDoubleShortMap(MutableDoubleShortMap map, Object newLock)
{
if (map == null)
{
throw new IllegalArgumentException("Cannot create a SynchronizedDoubleShortMap on a null map");
}
this.map = map;
this.lock = newLock == null ? this : newLock;
}
@Override
public void clear()
{
synchronized (this.lock)
{
this.map.clear();
}
}
@Override
public void put(double key, short value)
{
synchronized (this.lock)
{
this.map.put(key, value);
}
}
@Override
public void putPair(DoubleShortPair keyValuePair)
{
synchronized (this.lock)
{
this.map.put(keyValuePair.getOne(), keyValuePair.getTwo());
}
}
@Override
public void putAll(DoubleShortMap map)
{
synchronized (this.lock)
{
this.map.putAll(map);
}
}
@Override
public void updateValues(DoubleShortToShortFunction function)
{
synchronized (this.lock)
{
this.map.updateValues(function);
}
}
@Override
public void removeKey(double key)
{
synchronized (this.lock)
{
this.map.removeKey(key);
}
}
@Override
public void remove(double key)
{
synchronized (this.lock)
{
this.map.remove(key);
}
}
@Override
public short removeKeyIfAbsent(double key, short value)
{
synchronized (this.lock)
{
return this.map.removeKeyIfAbsent(key, value);
}
}
@Override
public short getIfAbsentPut(double key, short value)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPut(key, value);
}
}
@Override
public short getIfAbsentPut(double key, ShortFunction0 function)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPut(key, function);
}
}
@Override
public short getIfAbsentPutWithKey(double key, DoubleToShortFunction function)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPutWithKey(key, function);
}
}
@Override
public <P> short getIfAbsentPutWith(double key, ShortFunction<? super P> function, P parameter)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPutWith(key, function, parameter);
}
}
@Override
public short updateValue(double key, short initialValueIfAbsent, ShortToShortFunction function)
{
synchronized (this.lock)
{
return this.map.updateValue(key, initialValueIfAbsent, function);
}
}
@Override
public short get(double key)
{
synchronized (this.lock)
{
return this.map.get(key);
}
}
@Override
public short getIfAbsent(double key, short ifAbsent)
{
synchronized (this.lock)
{
return this.map.getIfAbsent(key, ifAbsent);
}
}
@Override
public short getOrThrow(double key)
{
synchronized (this.lock)
{
return this.map.getOrThrow(key);
}
}
@Override
public boolean containsKey(double key)
{
synchronized (this.lock)
{
return this.map.containsKey(key);
}
}
@Override
public boolean containsValue(short value)
{
synchronized (this.lock)
{
return this.map.containsValue(value);
}
}
@Override
public void forEachValue(ShortProcedure procedure)
{
synchronized (this.lock)
{
this.map.forEachValue(procedure);
}
}
@Override
public void forEachKey(DoubleProcedure procedure)
{
synchronized (this.lock)
{
this.map.forEachKey(procedure);
}
}
@Override
public void forEachKeyValue(DoubleShortProcedure procedure)
{
synchronized (this.lock)
{
this.map.forEachKeyValue(procedure);
}
}
@Override
public LazyDoubleIterable keysView()
{
synchronized (this.lock)
{
return this.map.keysView();
}
}
@Override
public RichIterable<DoubleShortPair> keyValuesView()
{
synchronized (this.lock)
{
return SynchronizedRichIterable.of(this.map.keyValuesView(), this.lock).asLazy();
}
}
@Override
public MutableShortDoubleMap flipUniqueValues()
{
synchronized (this.lock)
{
return this.map.flipUniqueValues();
}
}
@Override
public MutableDoubleShortMap select(DoubleShortPredicate predicate)
{
synchronized (this.lock)
{
return this.map.select(predicate);
}
}
@Override
public MutableDoubleShortMap reject(DoubleShortPredicate predicate)
{
synchronized (this.lock)
{
return this.map.reject(predicate);
}
}
@Override
public MutableShortIterator shortIterator()
{
return this.map.shortIterator();
}
@Override
public void forEach(ShortProcedure procedure)
{
this.each(procedure);
}
@Override
public void each(ShortProcedure procedure)
{
synchronized (this.lock)
{
this.map.forEach(procedure);
}
}
@Override
public int count(ShortPredicate predicate)
{
synchronized (this.lock)
{
return this.map.count(predicate);
}
}
@Override
public boolean anySatisfy(ShortPredicate predicate)
{
synchronized (this.lock)
{
return this.map.anySatisfy(predicate);
}
}
@Override
public boolean allSatisfy(ShortPredicate predicate)
{
synchronized (this.lock)
{
return this.map.allSatisfy(predicate);
}
}
@Override
public boolean noneSatisfy(ShortPredicate predicate)
{
synchronized (this.lock)
{
return this.map.noneSatisfy(predicate);
}
}
@Override
public MutableShortBag select(ShortPredicate predicate)
{
synchronized (this.lock)
{
return this.map.select(predicate);
}
}
@Override
public MutableShortBag reject(ShortPredicate predicate)
{
synchronized (this.lock)
{
return this.map.reject(predicate);
}
}
@Override
public <V> MutableBag<V> collect(ShortToObjectFunction<? extends V> function)
{
synchronized (this.lock)
{
return this.map.collect(function);
}
}
@Override
public short detectIfNone(ShortPredicate predicate, short ifNone)
{
synchronized (this.lock)
{
return this.map.detectIfNone(predicate, ifNone);
}
}
@Override
public long sum()
{
synchronized (this.lock)
{
return this.map.sum();
}
}
@Override
public short max()
{
synchronized (this.lock)
{
return this.map.max();
}
}
@Override
public short maxIfEmpty(short defaultValue)
{
synchronized (this.lock)
{
return this.map.maxIfEmpty(defaultValue);
}
}
@Override
public short min()
{
synchronized (this.lock)
{
return this.map.min();
}
}
@Override
public short minIfEmpty(short defaultValue)
{
synchronized (this.lock)
{
return this.map.minIfEmpty(defaultValue);
}
}
@Override
public double average()
{
synchronized (this.lock)
{
return this.map.average();
}
}
@Override
public double median()
{
synchronized (this.lock)
{
return this.map.median();
}
}
@Override
public short addToValue(double key, short toBeAdded)
{
synchronized (this.lock)
{
return this.map.addToValue(key, toBeAdded);
}
}
@Override
public short[] toSortedArray()
{
synchronized (this.lock)
{
return this.map.toSortedArray();
}
}
@Override
public MutableShortList toSortedList()
{
synchronized (this.lock)
{
return this.map.toSortedList();
}
}
@Override
public short[] toArray()
{
synchronized (this.lock)
{
return this.map.toArray();
}
}
@Override
public short[] toArray(short[] target)
{
synchronized (this.lock)
{
return this.map.toArray(target);
}
}
@Override
public boolean contains(short value)
{
synchronized (this.lock)
{
return this.map.contains(value);
}
}
@Override
public boolean containsAll(short... source)
{
synchronized (this.lock)
{
return this.map.containsAll(source);
}
}
@Override
public boolean containsAll(ShortIterable source)
{
synchronized (this.lock)
{
return this.map.containsAll(source);
}
}
@Override
public MutableShortList toList()
{
synchronized (this.lock)
{
return this.map.toList();
}
}
@Override
public MutableShortSet toSet()
{
synchronized (this.lock)
{
return this.map.toSet();
}
}
@Override
public MutableShortBag toBag()
{
synchronized (this.lock)
{
return this.map.toBag();
}
}
@Override
public LazyShortIterable asLazy()
{
synchronized (this.lock)
{
return this.map.asLazy();
}
}
@Override
public MutableDoubleShortMap withKeyValue(double key, short value)
{
synchronized (this.lock)
{
this.map.withKeyValue(key, value);
}
return this;
}
@Override
public MutableDoubleShortMap withoutKey(double key)
{
synchronized (this.lock)
{
this.map.withoutKey(key);
}
return this;
}
@Override
public MutableDoubleShortMap withoutAllKeys(DoubleIterable keys)
{
synchronized (this.lock)
{
this.map.withoutAllKeys(keys);
}
return this;
}
@Override
public MutableDoubleShortMap asUnmodifiable()
{
synchronized (this.lock)
{
return new UnmodifiableDoubleShortMap(this);
}
}
@Override
public MutableDoubleShortMap asSynchronized()
{
return this;
}
@Override
public ImmutableDoubleShortMap toImmutable()
{
synchronized (this.lock)
{
return DoubleShortMaps.immutable.withAll(this);
}
}
@Override
public int size()
{
synchronized (this.lock)
{
return this.map.size();
}
}
@Override
public boolean isEmpty()
{
synchronized (this.lock)
{
return this.map.isEmpty();
}
}
@Override
public boolean notEmpty()
{
synchronized (this.lock)
{
return this.map.notEmpty();
}
}
@Override
public MutableDoubleSet keySet()
{
synchronized (this.lock)
{
return SynchronizedDoubleSet.of(this.map.keySet(), this.lock);
}
}
@Override
public MutableShortCollection values()
{
synchronized (this.lock)
{
return SynchronizedShortCollection.of(this.map.values(), this.lock);
}
}
@Override
public boolean equals(Object otherMap)
{
synchronized (this.lock)
{
return this.map.equals(otherMap);
}
}
@Override
public int hashCode()
{
synchronized (this.lock)
{
return this.map.hashCode();
}
}
@Override
public String toString()
{
synchronized (this.lock)
{
return this.map.toString();
}
}
@Override
public String makeString()
{
synchronized (this.lock)
{
return this.map.makeString();
}
}
@Override
public String makeString(String separator)
{
synchronized (this.lock)
{
return this.map.makeString(separator);
}
}
@Override
public String makeString(String start, String separator, String end)
{
synchronized (this.lock)
{
return this.map.makeString(start, separator, end);
}
}
@Override
public void appendString(Appendable appendable)
{
synchronized (this.lock)
{
this.map.appendString(appendable);
}
}
@Override
public void appendString(Appendable appendable, String separator)
{
synchronized (this.lock)
{
this.map.appendString(appendable, separator);
}
}
@Override
public void appendString(Appendable appendable, String start, String separator, String end)
{
synchronized (this.lock)
{
this.map.appendString(appendable, start, separator, end);
}
}
@Override
public <T> T injectInto(T injectedValue, ObjectShortToObjectFunction<? super T, ? extends T> function)
{
synchronized (this.lock)
{
return this.map.injectInto(injectedValue, function);
}
}
@Override
public RichIterable<ShortIterable> chunk(int size)
{
synchronized (this.lock)
{
return this.map.chunk(size);
}
}
}