org.eclipse.collections.impl.map.mutable.primitive.SynchronizedLongObjectMap Maven / Gradle / Ivy
Show all versions of eclipse-collections Show documentation
/*
* Copyright (c) 2022 Goldman Sachs and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v. 1.0 which accompany this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*/
package org.eclipse.collections.impl.map.mutable.primitive;
import java.io.Serializable;
import java.util.Collection;
import java.util.Collections;
import java.util.Comparator;
import java.util.Iterator;
import java.util.Map;
import java.util.Optional;
import org.eclipse.collections.api.BooleanIterable;
import org.eclipse.collections.api.ByteIterable;
import org.eclipse.collections.api.CharIterable;
import org.eclipse.collections.api.DoubleIterable;
import org.eclipse.collections.api.FloatIterable;
import org.eclipse.collections.api.IntIterable;
import org.eclipse.collections.api.LongIterable;
import org.eclipse.collections.api.ShortIterable;
import org.eclipse.collections.api.LazyLongIterable;
import org.eclipse.collections.api.LazyIterable;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.bag.ImmutableBag;
import org.eclipse.collections.api.bag.MutableBag;
import org.eclipse.collections.api.bag.primitive.MutableBooleanBag;
import org.eclipse.collections.api.bag.primitive.MutableByteBag;
import org.eclipse.collections.api.bag.primitive.MutableCharBag;
import org.eclipse.collections.api.bag.primitive.MutableDoubleBag;
import org.eclipse.collections.api.bag.primitive.MutableFloatBag;
import org.eclipse.collections.api.bag.primitive.MutableIntBag;
import org.eclipse.collections.api.bag.primitive.MutableLongBag;
import org.eclipse.collections.api.bag.primitive.MutableShortBag;
import org.eclipse.collections.api.bag.sorted.ImmutableSortedBag;
import org.eclipse.collections.api.bag.sorted.MutableSortedBag;
import org.eclipse.collections.api.bimap.MutableBiMap;
import org.eclipse.collections.api.block.function.Function;
import org.eclipse.collections.api.block.function.Function0;
import org.eclipse.collections.api.block.function.Function2;
import org.eclipse.collections.api.block.function.primitive.LongToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.BooleanFunction;
import org.eclipse.collections.api.block.function.primitive.ByteFunction;
import org.eclipse.collections.api.block.function.primitive.CharFunction;
import org.eclipse.collections.api.block.function.primitive.DoubleFunction;
import org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction;
import org.eclipse.collections.api.block.function.primitive.FloatFunction;
import org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction;
import org.eclipse.collections.api.block.function.primitive.IntFunction;
import org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction;
import org.eclipse.collections.api.block.function.primitive.LongFunction;
import org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction;
import org.eclipse.collections.api.block.function.primitive.ShortFunction;
import org.eclipse.collections.api.block.predicate.Predicate;
import org.eclipse.collections.api.block.predicate.Predicate2;
import org.eclipse.collections.api.block.predicate.primitive.LongObjectPredicate;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.block.procedure.Procedure2;
import org.eclipse.collections.api.block.procedure.primitive.LongObjectProcedure;
import org.eclipse.collections.api.block.procedure.primitive.LongProcedure;
import org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure;
import org.eclipse.collections.api.collection.primitive.MutableBooleanCollection;
import org.eclipse.collections.api.collection.primitive.MutableByteCollection;
import org.eclipse.collections.api.collection.primitive.MutableCharCollection;
import org.eclipse.collections.api.collection.primitive.MutableDoubleCollection;
import org.eclipse.collections.api.collection.primitive.MutableFloatCollection;
import org.eclipse.collections.api.collection.primitive.MutableIntCollection;
import org.eclipse.collections.api.collection.primitive.MutableLongCollection;
import org.eclipse.collections.api.collection.primitive.MutableShortCollection;
import org.eclipse.collections.api.list.ImmutableList;
import org.eclipse.collections.api.list.MutableList;
import org.eclipse.collections.api.map.MutableMap;
import org.eclipse.collections.api.map.MutableMapIterable;
import org.eclipse.collections.api.map.primitive.LongObjectMap;
import org.eclipse.collections.api.map.primitive.MutableLongObjectMap;
import org.eclipse.collections.api.map.primitive.ImmutableLongObjectMap;
import org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap;
import org.eclipse.collections.api.map.primitive.MutableObjectLongMap;
import org.eclipse.collections.api.map.sorted.MutableSortedMap;
import org.eclipse.collections.api.multimap.MutableMultimap;
import org.eclipse.collections.api.multimap.bag.MutableBagMultimap;
import org.eclipse.collections.api.ordered.OrderedIterable;
import org.eclipse.collections.api.partition.bag.PartitionMutableBag;
import org.eclipse.collections.api.set.ImmutableSet;
import org.eclipse.collections.api.set.MutableSet;
import org.eclipse.collections.api.set.primitive.MutableLongSet;
import org.eclipse.collections.api.set.sorted.ImmutableSortedSet;
import org.eclipse.collections.api.set.sorted.MutableSortedSet;
import org.eclipse.collections.api.tuple.Pair;
import org.eclipse.collections.api.tuple.primitive.LongObjectPair;
import org.eclipse.collections.impl.SynchronizedRichIterable;
import org.eclipse.collections.impl.collection.mutable.CollectionAdapter;
import org.eclipse.collections.impl.collection.mutable.SynchronizedMutableCollection;
import org.eclipse.collections.impl.factory.primitive.LongObjectMaps;
import org.eclipse.collections.impl.primitive.SynchronizedLongIterable;
import org.eclipse.collections.impl.set.mutable.primitive.SynchronizedLongSet;
/**
* A synchronized view of a {@link 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 {@link Collections#synchronizedCollection(Collection)}.
*
* This file was automatically generated from template file synchronizedPrimitiveObjectMap.stg.
*
* @see MutableLongObjectMap#asSynchronized()
* @see MutableMap#asSynchronized()
* @since 3.1.
*/
public class SynchronizedLongObjectMap
implements MutableLongObjectMap, Serializable
{
private static final long serialVersionUID = 1L;
private final Object lock;
private final MutableLongObjectMap map;
public SynchronizedLongObjectMap(MutableLongObjectMap map)
{
this(map, null);
}
public SynchronizedLongObjectMap(MutableLongObjectMap map, Object newLock)
{
if (map == null)
{
throw new IllegalArgumentException("Cannot create a SynchronizedLongObjectMap on a null map");
}
this.map = map;
this.lock = newLock == null ? this : newLock;
}
@Override
public V put(long key, V value)
{
synchronized (this.lock)
{
return this.map.put(key, value);
}
}
@Override
public V putPair(LongObjectPair keyValuePair)
{
synchronized (this.lock)
{
return this.map.put(keyValuePair.getOne(), keyValuePair.getTwo());
}
}
@Override
public void putAll(LongObjectMap extends V> map)
{
synchronized (this.lock)
{
map.forEachKeyValue(this.map::put);
}
}
@Override
public V removeKey(long key)
{
synchronized (this.lock)
{
return this.map.removeKey(key);
}
}
@Override
public V remove(long key)
{
synchronized (this.lock)
{
return this.map.remove(key);
}
}
@Override
public V getIfAbsentPut(long key, V value)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPut(key, value);
}
}
@Override
public V getIfAbsentPut(long key, Function0 extends V> function)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPut(key, function);
}
}
@Override
public V getIfAbsentPutWithKey(long key, LongToObjectFunction extends V> function)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPutWithKey(key, function);
}
}
@Override
public V getIfAbsentPutWith(long key, Function super P, ? extends V> function, P parameter)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPutWith(key, function, parameter);
}
}
@Override
public V updateValue(long key, Function0 extends V> factory, Function super V, ? extends V> function)
{
synchronized (this.lock)
{
return this.map.updateValue(key, factory, function);
}
}
@Override
public
V updateValueWith(long key, Function0 extends V> factory, Function2 super V, ? super P, ? extends V> function, P parameter)
{
synchronized (this.lock)
{
return this.map.updateValueWith(key, factory, function, parameter);
}
}
@Override
public V get(long key)
{
synchronized (this.lock)
{
return this.map.get(key);
}
}
@Override
public V getIfAbsent(long key, Function0 extends V> ifAbsent)
{
synchronized (this.lock)
{
return this.map.getIfAbsent(key, ifAbsent);
}
}
@Override
public boolean containsKey(long key)
{
synchronized (this.lock)
{
return this.map.containsKey(key);
}
}
@Override
public boolean containsValue(Object value)
{
synchronized (this.lock)
{
return this.map.containsValue(value);
}
}
@Override
public MutableLongObjectMap tap(Procedure super V> procedure)
{
synchronized (this.lock)
{
this.map.forEach(procedure);
return this;
}
}
@Override
public void forEachValue(Procedure super V> procedure)
{
synchronized (this.lock)
{
this.map.forEachValue(procedure);
}
}
@Override
public void forEachKey(LongProcedure procedure)
{
synchronized (this.lock)
{
this.map.forEachKey(procedure);
}
}
@Override
public void forEachKeyValue(LongObjectProcedure super V> procedure)
{
synchronized (this.lock)
{
this.map.forEachKeyValue(procedure);
}
}
@Override
public MutableLongObjectMap select(LongObjectPredicate super V> predicate)
{
synchronized (this.lock)
{
return this.map.select(predicate);
}
}
@Override
public MutableLongObjectMap reject(LongObjectPredicate super V> predicate)
{
synchronized (this.lock)
{
return this.map.reject(predicate);
}
}
@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 V getFirst()
{
synchronized (this.lock)
{
return this.map.getFirst();
}
}
@Override
public V getLast()
{
synchronized (this.lock)
{
return this.map.getLast();
}
}
@Override
public V getOnly()
{
synchronized (this.lock)
{
return this.map.getOnly();
}
}
@Override
public boolean contains(Object object)
{
synchronized (this.lock)
{
return this.map.contains(object);
}
}
@Override
public boolean containsAllIterable(Iterable> source)
{
synchronized (this.lock)
{
return this.map.containsAllIterable(source);
}
}
@Override
public boolean containsAll(Collection> source)
{
synchronized (this.lock)
{
return this.map.containsAll(source);
}
}
@Override
public boolean containsNoneIterable(Iterable> source)
{
synchronized (this.lock)
{
return this.map.containsNoneIterable(source);
}
}
@Override
public boolean containsNone(Collection> source)
{
synchronized (this.lock)
{
return this.map.containsNone(source);
}
}
@Override
public boolean containsAnyIterable(Iterable> source)
{
synchronized (this.lock)
{
return this.map.containsAnyIterable(source);
}
}
@Override
public boolean containsAny(Collection> source)
{
synchronized (this.lock)
{
return this.map.containsAny(source);
}
}
@Override
public boolean containsAllArguments(Object... elements)
{
synchronized (this.lock)
{
return this.map.containsAllArguments(elements);
}
}
@Override
public MutableBag select(Predicate super V> predicate)
{
synchronized (this.lock)
{
return this.map.select(predicate);
}
}
@Override
public > R select(Predicate super V> predicate, R target)
{
synchronized (this.lock)
{
return this.map.select(predicate, target);
}
}
@Override
public MutableBag selectWith(Predicate2 super V, ? super P> predicate, P parameter)
{
synchronized (this.lock)
{
return this.map.selectWith(predicate, parameter);
}
}
@Override
public > R selectWith(Predicate2 super V, ? super P> predicate, P parameter, R targetCollection)
{
synchronized (this.lock)
{
return this.map.selectWith(predicate, parameter, targetCollection);
}
}
@Override
public PartitionMutableBag partition(Predicate super V> predicate)
{
synchronized (this.lock)
{
return this.map.partition(predicate);
}
}
@Override
public PartitionMutableBag partitionWith(Predicate2 super V, ? super P> predicate, P parameter)
{
synchronized (this.lock)
{
return this.map.partitionWith(predicate, parameter);
}
}
@Override
public MutableBag selectInstancesOf(Class clazz)
{
synchronized (this.lock)
{
return this.map.selectInstancesOf(clazz);
}
}
/**
* @deprecated in 7.0. Use {@link OrderedIterable#zipWithIndex()} instead.
*/
@Deprecated
@Override
public MutableSet> zipWithIndex()
{
synchronized (this.lock)
{
return this.map.zipWithIndex();
}
}
@Override
public >> R zipWithIndex(R target)
{
synchronized (this.lock)
{
return this.map.zipWithIndex(target);
}
}
@Override
public RichIterable> chunk(int size)
{
synchronized (this.lock)
{
return this.map.chunk(size);
}
}
@Override
public MutableMap aggregateInPlaceBy(Function super V, ? extends K> groupBy, Function0 extends VV> zeroValueFactory, Procedure2 super VV, ? super V> mutatingAggregator)
{
synchronized (this.lock)
{
return this.map.aggregateInPlaceBy(groupBy, zeroValueFactory, mutatingAggregator);
}
}
@Override
public MutableMap aggregateBy(Function super V, ? extends K> groupBy, Function0 extends VV> zeroValueFactory, Function2 super VV, ? super V, ? extends VV> nonMutatingAggregator)
{
synchronized (this.lock)
{
return this.map.aggregateBy(groupBy, zeroValueFactory, nonMutatingAggregator);
}
}
@Override
public MutableBag reject(Predicate super V> predicate)
{
synchronized (this.lock)
{
return this.map.reject(predicate);
}
}
@Override
public > R reject(Predicate super V> predicate, R target)
{
synchronized (this.lock)
{
return this.map.reject(predicate, target);
}
}
@Override
public MutableBag rejectWith(Predicate2 super V, ? super P> predicate, P parameter)
{
synchronized (this.lock)
{
return this.map.rejectWith(predicate, parameter);
}
}
@Override
public > R rejectWith(Predicate2 super V, ? super P> predicate, P parameter, R targetCollection)
{
synchronized (this.lock)
{
return this.map.rejectWith(predicate, parameter, targetCollection);
}
}
@Override
public void clear()
{
synchronized (this.lock)
{
this.map.clear();
}
}
@Override
public MutableBag collect(Function super V, ? extends VV> function)
{
synchronized (this.lock)
{
return this.map.collect(function);
}
}
@Override
public MutableBooleanBag collectBoolean(BooleanFunction super V> booleanFunction)
{
synchronized (this.lock)
{
return this.map.collectBoolean(booleanFunction);
}
}
@Override
public R collectBoolean(BooleanFunction super V> booleanFunction, R target)
{
synchronized (this.lock)
{
return this.map.collectBoolean(booleanFunction, target);
}
}
@Override
public MutableByteBag collectByte(ByteFunction super V> byteFunction)
{
synchronized (this.lock)
{
return this.map.collectByte(byteFunction);
}
}
@Override
public R collectByte(ByteFunction super V> byteFunction, R target)
{
synchronized (this.lock)
{
return this.map.collectByte(byteFunction, target);
}
}
@Override
public MutableCharBag collectChar(CharFunction super V> charFunction)
{
synchronized (this.lock)
{
return this.map.collectChar(charFunction);
}
}
@Override
public R collectChar(CharFunction super V> charFunction, R target)
{
synchronized (this.lock)
{
return this.map.collectChar(charFunction, target);
}
}
@Override
public MutableDoubleBag collectDouble(DoubleFunction super V> doubleFunction)
{
synchronized (this.lock)
{
return this.map.collectDouble(doubleFunction);
}
}
@Override
public R collectDouble(DoubleFunction super V> doubleFunction, R target)
{
synchronized (this.lock)
{
return this.map.collectDouble(doubleFunction, target);
}
}
@Override
public MutableFloatBag collectFloat(FloatFunction super V> floatFunction)
{
synchronized (this.lock)
{
return this.map.collectFloat(floatFunction);
}
}
@Override
public R collectFloat(FloatFunction super V> floatFunction, R target)
{
synchronized (this.lock)
{
return this.map.collectFloat(floatFunction, target);
}
}
@Override
public MutableIntBag collectInt(IntFunction super V> intFunction)
{
synchronized (this.lock)
{
return this.map.collectInt(intFunction);
}
}
@Override
public R collectInt(IntFunction super V> intFunction, R target)
{
synchronized (this.lock)
{
return this.map.collectInt(intFunction, target);
}
}
@Override
public MutableLongBag collectLong(LongFunction super V> longFunction)
{
synchronized (this.lock)
{
return this.map.collectLong(longFunction);
}
}
@Override
public R collectLong(LongFunction super V> longFunction, R target)
{
synchronized (this.lock)
{
return this.map.collectLong(longFunction, target);
}
}
@Override
public MutableShortBag collectShort(ShortFunction super V> shortFunction)
{
synchronized (this.lock)
{
return this.map.collectShort(shortFunction);
}
}
@Override
public R collectShort(ShortFunction super V> shortFunction, R target)
{
synchronized (this.lock)
{
return this.map.collectShort(shortFunction, target);
}
}
@Override
public MutableBag collectWith(Function2 super V, ? super P, ? extends VV> function, P parameter)
{
synchronized (this.lock)
{
return this.map.collectWith(function, parameter);
}
}
@Override
public > R collectWith(Function2 super V, ? super P, ? extends VV> function, P parameter, R targetCollection)
{
synchronized (this.lock)
{
return this.map.collectWith(function, parameter, targetCollection);
}
}
@Override
public > R collect(Function super V, ? extends VV> function, R target)
{
synchronized (this.lock)
{
return this.map.collect(function, target);
}
}
@Override
public MutableBag collectIf(Predicate super V> predicate, Function super V, ? extends VV> function)
{
synchronized (this.lock)
{
return this.map.collectIf(predicate, function);
}
}
@Override
public > R collectIf(Predicate super V> predicate, Function super V, ? extends VV> function, R target)
{
synchronized (this.lock)
{
return this.map.collectIf(predicate, function, target);
}
}
@Override
public MutableBag flatCollect(Function super V, ? extends Iterable> function)
{
synchronized (this.lock)
{
return this.map.flatCollect(function);
}
}
@Override
public > R flatCollect(Function super V, ? extends Iterable> function, R target)
{
synchronized (this.lock)
{
return this.map.flatCollect(function, target);
}
}
@Override
public R flatCollectByte(
Function super V, ? extends ByteIterable> function, R target)
{
synchronized (this.lock)
{
return this.map.flatCollectByte(function, target);
}
}
@Override
public R flatCollectChar(
Function super V, ? extends CharIterable> function, R target)
{
synchronized (this.lock)
{
return this.map.flatCollectChar(function, target);
}
}
@Override
public R flatCollectInt(
Function super V, ? extends IntIterable> function, R target)
{
synchronized (this.lock)
{
return this.map.flatCollectInt(function, target);
}
}
@Override
public R flatCollectShort(
Function super V, ? extends ShortIterable> function, R target)
{
synchronized (this.lock)
{
return this.map.flatCollectShort(function, target);
}
}
@Override
public R flatCollectDouble(
Function super V, ? extends DoubleIterable> function, R target)
{
synchronized (this.lock)
{
return this.map.flatCollectDouble(function, target);
}
}
@Override
public R flatCollectFloat(
Function super V, ? extends FloatIterable> function, R target)
{
synchronized (this.lock)
{
return this.map.flatCollectFloat(function, target);
}
}
@Override
public R flatCollectLong(
Function super V, ? extends LongIterable> function, R target)
{
synchronized (this.lock)
{
return this.map.flatCollectLong(function, target);
}
}
@Override
public R flatCollectBoolean(
Function super V, ? extends BooleanIterable> function, R target)
{
synchronized (this.lock)
{
return this.map.flatCollectBoolean(function, target);
}
}
@Override
public V detect(Predicate super V> predicate)
{
synchronized (this.lock)
{
return this.map.detect(predicate);
}
}
@Override
public V detectWith(Predicate2 super V, ? super P> predicate, P parameter)
{
synchronized (this.lock)
{
return this.map.detectWith(predicate, parameter);
}
}
@Override
public Optional detectOptional(Predicate super V> predicate)
{
synchronized (this.lock)
{
return this.map.detectOptional(predicate);
}
}
@Override
public Optional detectWithOptional(Predicate2 super V, ? super P> predicate, P parameter)
{
synchronized (this.lock)
{
return this.map.detectWithOptional(predicate, parameter);
}
}
@Override
public V detectIfNone(Predicate super V> predicate, Function0 extends V> function)
{
synchronized (this.lock)
{
return this.map.detectIfNone(predicate, function);
}
}
@Override
public V detectWithIfNone(Predicate2 super V, ? super P> predicate, P parameter, Function0 extends V> function)
{
synchronized (this.lock)
{
return this.map.detectWithIfNone(predicate, parameter, function);
}
}
@Override
public int count(Predicate super V> predicate)
{
synchronized (this.lock)
{
return this.map.count(predicate);
}
}
@Override
public
int countWith(Predicate2 super V, ? super P> predicate, P parameter)
{
synchronized (this.lock)
{
return this.map.countWith(predicate, parameter);
}
}
@Override
public boolean anySatisfy(Predicate super V> predicate)
{
synchronized (this.lock)
{
return this.map.anySatisfy(predicate);
}
}
@Override
public
boolean anySatisfyWith(Predicate2 super V, ? super P> predicate, P parameter)
{
synchronized (this.lock)
{
return this.map.anySatisfyWith(predicate, parameter);
}
}
@Override
public boolean allSatisfy(Predicate super V> predicate)
{
synchronized (this.lock)
{
return this.map.allSatisfy(predicate);
}
}
@Override
public
boolean allSatisfyWith(Predicate2 super V, ? super P> predicate, P parameter)
{
synchronized (this.lock)
{
return this.map.allSatisfyWith(predicate, parameter);
}
}
@Override
public boolean noneSatisfy(Predicate super V> predicate)
{
synchronized (this.lock)
{
return this.map.noneSatisfy(predicate);
}
}
@Override
public
boolean noneSatisfyWith(Predicate2 super V, ? super P> predicate, P parameter)
{
synchronized (this.lock)
{
return this.map.noneSatisfyWith(predicate, parameter);
}
}
@Override
public IV injectInto(IV injectedValue, Function2 super IV, ? super V, ? extends IV> function)
{
synchronized (this.lock)
{
return this.map.injectInto(injectedValue, function);
}
}
@Override
public int injectInto(int injectedValue, IntObjectToIntFunction super V> function)
{
synchronized (this.lock)
{
return this.map.injectInto(injectedValue, function);
}
}
@Override
public long injectInto(long injectedValue, LongObjectToLongFunction super V> function)
{
synchronized (this.lock)
{
return this.map.injectInto(injectedValue, function);
}
}
@Override
public float injectInto(float injectedValue, FloatObjectToFloatFunction super V> function)
{
synchronized (this.lock)
{
return this.map.injectInto(injectedValue, function);
}
}
@Override
public double injectInto(double injectedValue, DoubleObjectToDoubleFunction super V> function)
{
synchronized (this.lock)
{
return this.map.injectInto(injectedValue, function);
}
}
@Override
public > R into(R target)
{
synchronized (this.lock)
{
return this.map.into(target);
}
}
@Override
public MutableList toList()
{
synchronized (this.lock)
{
return this.map.toList();
}
}
@Override
public MutableList toSortedList()
{
synchronized (this.lock)
{
return this.map.toSortedList();
}
}
@Override
public MutableList toSortedList(Comparator super V> comparator)
{
synchronized (this.lock)
{
return this.map.toSortedList(comparator);
}
}
@Override
public > MutableList toSortedListBy(Function super V, ? extends VV> function)
{
synchronized (this.lock)
{
return this.map.toSortedListBy(function);
}
}
@Override
public MutableSet toSet()
{
synchronized (this.lock)
{
return this.map.toSet();
}
}
@Override
public MutableSortedSet toSortedSet()
{
synchronized (this.lock)
{
return this.map.toSortedSet();
}
}
@Override
public MutableSortedSet toSortedSet(Comparator super V> comparator)
{
synchronized (this.lock)
{
return this.map.toSortedSet(comparator);
}
}
@Override
public > MutableSortedSet toSortedSetBy(Function super V, ? extends VV> function)
{
synchronized (this.lock)
{
return this.map.toSortedSetBy(function);
}
}
@Override
public MutableBag toBag()
{
synchronized (this.lock)
{
return this.map.toBag();
}
}
@Override
public MutableSortedBag toSortedBag()
{
synchronized (this.lock)
{
return this.map.toSortedBag();
}
}
@Override
public MutableSortedBag toSortedBag(Comparator super V> comparator)
{
synchronized (this.lock)
{
return this.map.toSortedBag(comparator);
}
}
@Override
public > MutableSortedBag toSortedBagBy(Function super V, ? extends VV> function)
{
synchronized (this.lock)
{
return this.map.toSortedBagBy(function);
}
}
@Override
public MutableMap toMap(Function super V, ? extends NK> keyFunction, Function super V, ? extends NV> valueFunction)
{
synchronized (this.lock)
{
return this.map.toMap(keyFunction, valueFunction);
}
}
@Override
public > R toMap(Function super V, ? extends NK> keyFunction, Function super V, ? extends NV> valueFunction, R target)
{
synchronized (this.lock)
{
return this.map.toMap(keyFunction, valueFunction, target);
}
}
@Override
public MutableSortedMap toSortedMap(Function super V, ? extends NK> keyFunction, Function super V, ? extends NV> valueFunction)
{
synchronized (this.lock)
{
return this.map.toSortedMap(keyFunction, valueFunction);
}
}
@Override
public MutableSortedMap toSortedMap(Comparator super NK> comparator, Function super V, ? extends NK> keyFunction, Function super V, ? extends NV> valueFunction)
{
synchronized (this.lock)
{
return this.map.toSortedMap(comparator, keyFunction, valueFunction);
}
}
@Override
public , NK, NV> MutableSortedMap toSortedMapBy(Function super NK, KK> sortBy, Function super V, ? extends NK> keyFunction, Function super V, ? extends NV> valueFunction)
{
synchronized (this.lock)
{
return this.map.toSortedMapBy(sortBy, keyFunction, valueFunction);
}
}
@Override
public MutableBiMap toBiMap(Function super V, ? extends NK> keyFunction, Function super V, ? extends NV> valueFunction)
{
synchronized (this.lock)
{
return this.map.toBiMap(keyFunction, valueFunction);
}
}
@Override
public ImmutableList toImmutableList()
{
synchronized (this.lock)
{
return this.map.toImmutableList();
}
}
@Override
public ImmutableSet toImmutableSet()
{
synchronized (this.lock)
{
return this.map.toImmutableSet();
}
}
@Override
public ImmutableBag toImmutableBag()
{
synchronized (this.lock)
{
return this.map.toImmutableBag();
}
}
@Override
public ImmutableList toImmutableSortedList()
{
synchronized (this.lock)
{
return this.map.toImmutableSortedList();
}
}
@Override
public ImmutableList toImmutableSortedList(Comparator super V> comparator)
{
synchronized (this.lock)
{
return this.map.toImmutableSortedList(comparator);
}
}
@Override
public > ImmutableList toImmutableSortedListBy(Function super V, ? extends VV> function)
{
synchronized (this.lock)
{
return this.map.toImmutableSortedListBy(function);
}
}
@Override
public ImmutableSortedSet toImmutableSortedSet()
{
synchronized (this.lock)
{
return this.map.toImmutableSortedSet();
}
}
@Override
public ImmutableSortedSet toImmutableSortedSet(Comparator super V> comparator)
{
synchronized (this.lock)
{
return this.map.toImmutableSortedSet(comparator);
}
}
@Override
public > ImmutableSortedSet toImmutableSortedSetBy(Function super V, ? extends VV> function)
{
synchronized (this.lock)
{
return this.map.toImmutableSortedSetBy(function);
}
}
@Override
public ImmutableSortedBag toImmutableSortedBag()
{
synchronized (this.lock)
{
return this.map.toImmutableSortedBag();
}
}
@Override
public ImmutableSortedBag toImmutableSortedBag(Comparator super V> comparator)
{
synchronized (this.lock)
{
return this.map.toImmutableSortedBag(comparator);
}
}
@Override
public > ImmutableSortedBag toImmutableSortedBagBy(Function super V, ? extends VV> function)
{
synchronized (this.lock)
{
return this.map.toImmutableSortedBagBy(function);
}
}
@Override
public LazyIterable asLazy()
{
synchronized (this.lock)
{
return this.map.asLazy();
}
}
@Override
public Object[] toArray()
{
synchronized (this.lock)
{
return this.map.toArray();
}
}
@Override
public T[] toArray(T[] a)
{
synchronized (this.lock)
{
return this.map.toArray(a);
}
}
@Override
public V min(Comparator super V> comparator)
{
synchronized (this.lock)
{
return this.map.min(comparator);
}
}
@Override
public V max(Comparator super V> comparator)
{
synchronized (this.lock)
{
return this.map.max(comparator);
}
}
@Override
public V min()
{
synchronized (this.lock)
{
return this.map.min();
}
}
@Override
public V max()
{
synchronized (this.lock)
{
return this.map.max();
}
}
@Override
public > V maxBy(Function super V, ? extends VV> function)
{
synchronized (this.lock)
{
return this.map.maxBy(function);
}
}
@Override
public > V minBy(Function super V, ? extends VV> function)
{
synchronized (this.lock)
{
return this.map.minBy(function);
}
}
@Override
public long sumOfInt(IntFunction super V> function)
{
synchronized (this.lock)
{
return this.map.sumOfInt(function);
}
}
@Override
public double sumOfFloat(FloatFunction super V> function)
{
synchronized (this.lock)
{
return this.map.sumOfFloat(function);
}
}
@Override
public long sumOfLong(LongFunction super V> function)
{
synchronized (this.lock)
{
return this.map.sumOfLong(function);
}
}
@Override
public double sumOfDouble(DoubleFunction super V> function)
{
synchronized (this.lock)
{
return this.map.sumOfDouble(function);
}
}
@Override
public MutableObjectLongMap sumByInt(Function super V, ? extends V1> groupBy, IntFunction super V> function)
{
synchronized (this.lock)
{
return this.map.sumByInt(groupBy, function);
}
}
@Override
public MutableObjectDoubleMap sumByFloat(Function super V, ? extends V1> groupBy, FloatFunction super V> function)
{
synchronized (this.lock)
{
return this.map.sumByFloat(groupBy, function);
}
}
@Override
public MutableObjectLongMap sumByLong(Function super V, ? extends V1> groupBy, LongFunction super V> function)
{
synchronized (this.lock)
{
return this.map.sumByLong(groupBy, function);
}
}
@Override
public MutableObjectDoubleMap sumByDouble(Function super V, ? extends V1> groupBy, DoubleFunction super V> function)
{
synchronized (this.lock)
{
return this.map.sumByDouble(groupBy, function);
}
}
@Override
public MutableLongSet keySet()
{
synchronized (this.lock)
{
return SynchronizedLongSet.of(this.map.keySet(), this.lock);
}
}
@Override
public Collection values()
{
synchronized (this.lock)
{
return SynchronizedMutableCollection.of(CollectionAdapter.adapt(this.map.values()), this.lock);
}
}
@Override
public LazyLongIterable keysView()
{
synchronized (this.lock)
{
return SynchronizedLongIterable.of(this.map.keysView(), this.lock).asLazy();
}
}
@Override
public RichIterable> keyValuesView()
{
synchronized (this.lock)
{
return SynchronizedRichIterable.of(this.map.keyValuesView(), this.lock).asLazy();
}
}
@Override
public MutableObjectLongMap flipUniqueValues()
{
synchronized (this.lock)
{
return this.map.flipUniqueValues();
}
}
@Override
public boolean equals(Object obj)
{
synchronized (this.lock)
{
return this.map.equals(obj);
}
}
@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 MutableBagMultimap groupBy(Function super V, ? extends VV> function)
{
synchronized (this.lock)
{
return this.map.groupBy(function);
}
}
@Override
public > R groupBy(Function super V, ? extends VV> function, R target)
{
synchronized (this.lock)
{
return this.map.groupBy(function, target);
}
}
@Override
public MutableBagMultimap groupByEach(Function super V, ? extends Iterable> function)
{
synchronized (this.lock)
{
return this.map.groupByEach(function);
}
}
@Override
public > R groupByEach(Function super V, ? extends Iterable> function, R target)
{
synchronized (this.lock)
{
return this.map.groupByEach(function, target);
}
}
@Override
public MutableMap groupByUniqueKey(Function super V, ? extends VV> function)
{
synchronized (this.lock)
{
return this.map.groupByUniqueKey(function);
}
}
@Override
public > R groupByUniqueKey(Function super V, ? extends VV> function, R target)
{
synchronized (this.lock)
{
return this.map.groupByUniqueKey(function, target);
}
}
/**
* @deprecated in 7.0. Use {@link OrderedIterable#zip(Iterable)} instead.
*/
@Deprecated
@Override
public MutableBag> zip(Iterable that)
{
synchronized (this.lock)
{
return this.map.zip(that);
}
}
@Override
public >> R zip(Iterable that, R target)
{
synchronized (this.lock)
{
return this.map.zip(that, target);
}
}
@Override
public MutableLongObjectMap withKeyValue(long key, V value)
{
synchronized (this.lock)
{
this.map.withKeyValue(key, value);
}
return this;
}
@Override
public MutableLongObjectMap withoutKey(long key)
{
synchronized (this.lock)
{
this.map.withoutKey(key);
}
return this;
}
@Override
public MutableLongObjectMap withoutAllKeys(LongIterable keys)
{
synchronized (this.lock)
{
this.map.withoutAllKeys(keys);
}
return this;
}
@Override
public MutableLongObjectMap asUnmodifiable()
{
synchronized (this.lock)
{
return new UnmodifiableLongObjectMap<>(this);
}
}
@Override
public MutableLongObjectMap asSynchronized()
{
return this;
}
@Override
public ImmutableLongObjectMap toImmutable()
{
synchronized (this.lock)
{
return LongObjectMaps.immutable.withAll(this);
}
}
@Override
public void forEach(Procedure super V> procedure)
{
this.each(procedure);
}
@Override
public void each(Procedure super V> procedure)
{
synchronized (this.lock)
{
this.map.forEach(procedure);
}
}
@Override
public void forEachWithIndex(ObjectIntProcedure super V> objectIntProcedure)
{
synchronized (this.lock)
{
this.map.forEachWithIndex(objectIntProcedure);
}
}
@Override
public void forEachWith(Procedure2 super V, ? super P> procedure, P parameter)
{
synchronized (this.lock)
{
this.map.forEachWith(procedure, parameter);
}
}
/**
* Must be called in a synchronized block.
*/
@Override
public Iterator iterator()
{
return this.map.iterator();
}
}