All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gs.collections.impl.map.mutable.primitive.SynchronizedCharDoubleMap Maven / Gradle / Ivy

/*
 * Copyright 2014 Goldman Sachs.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.gs.collections.impl.map.mutable.primitive;

import java.io.Serializable;
import java.util.Collection;
import java.util.Collections;

import com.gs.collections.api.DoubleIterable;
import com.gs.collections.api.CharIterable;
import com.gs.collections.api.LazyDoubleIterable;
import com.gs.collections.api.LazyCharIterable;
import com.gs.collections.api.RichIterable;
import com.gs.collections.api.bag.primitive.MutableDoubleBag;
import com.gs.collections.api.block.function.primitive.DoubleFunction;
import com.gs.collections.api.block.function.primitive.DoubleFunction0;
import com.gs.collections.api.block.function.primitive.DoubleToDoubleFunction;
import com.gs.collections.api.block.function.primitive.DoubleToObjectFunction;
import com.gs.collections.api.block.function.primitive.ObjectDoubleToObjectFunction;
import com.gs.collections.api.block.function.primitive.CharToDoubleFunction;
import com.gs.collections.api.block.predicate.primitive.DoublePredicate;
import com.gs.collections.api.block.predicate.primitive.CharDoublePredicate;
import com.gs.collections.api.block.procedure.primitive.DoubleProcedure;
import com.gs.collections.api.block.procedure.primitive.CharDoubleProcedure;
import com.gs.collections.api.block.procedure.primitive.CharProcedure;
import com.gs.collections.api.collection.MutableCollection;
import com.gs.collections.api.collection.primitive.MutableDoubleCollection;
import com.gs.collections.api.iterator.DoubleIterator;
import com.gs.collections.api.list.primitive.MutableDoubleList;
import com.gs.collections.api.map.MutableMap;
import com.gs.collections.api.map.primitive.ImmutableCharDoubleMap;
import com.gs.collections.api.map.primitive.CharDoubleMap;
import com.gs.collections.api.map.primitive.MutableCharDoubleMap;
import com.gs.collections.api.set.primitive.MutableCharSet;
import com.gs.collections.api.set.primitive.MutableDoubleSet;
import com.gs.collections.api.tuple.primitive.CharDoublePair;
import com.gs.collections.impl.SynchronizedRichIterable;
import com.gs.collections.impl.factory.primitive.CharDoubleMaps;
import com.gs.collections.impl.set.mutable.primitive.SynchronizedCharSet;
import com.gs.collections.impl.collection.mutable.primitive.SynchronizedDoubleCollection;
import net.jcip.annotations.GuardedBy;

/**
 * A synchronized view of a {@link MutableCharDoubleMap}. It is imperative that the user manually synchronize on the collection when iterating over it using the
 * {@link DoubleIterator} as per {@link Collections#synchronizedCollection(Collection)}.
 * 

* This file was automatically generated from template file synchronizedPrimitivePrimitiveMap.stg. *

* * @see MutableCharDoubleMap#asSynchronized() * @see MutableMap#asSynchronized() * @since 3.1. */ public final class SynchronizedCharDoubleMap implements MutableCharDoubleMap, Serializable { private static final long serialVersionUID = 1L; private final Object lock; @GuardedBy("this.lock") private final MutableCharDoubleMap map; SynchronizedCharDoubleMap(MutableCharDoubleMap map) { this(map, null); } SynchronizedCharDoubleMap(MutableCharDoubleMap map, Object newLock) { this.map = map; this.lock = newLock == null ? this : newLock; } public void clear() { synchronized (this.lock) { this.map.clear(); } } public void put(char key, double value) { synchronized (this.lock) { this.map.put(key, value); } } public void putAll(CharDoubleMap map) { synchronized (this.lock) { this.map.putAll(map); } } public void removeKey(char key) { synchronized (this.lock) { this.map.removeKey(key); } } public void remove(char key) { synchronized (this.lock) { this.map.remove(key); } } public double removeKeyIfAbsent(char key, double value) { synchronized (this.lock) { return this.map.removeKeyIfAbsent(key, value); } } public double getIfAbsentPut(char key, double value) { synchronized (this.lock) { return this.map.getIfAbsentPut(key, value); } } public double getIfAbsentPut(char key, DoubleFunction0 function) { synchronized (this.lock) { return this.map.getIfAbsentPut(key, function); } } public double getIfAbsentPutWithKey(char key, CharToDoubleFunction function) { synchronized (this.lock) { return this.map.getIfAbsentPutWithKey(key, function); } } public

double getIfAbsentPutWith(char key, DoubleFunction function, P parameter) { synchronized (this.lock) { return this.map.getIfAbsentPutWith(key, function, parameter); } } public double updateValue(char key, double initialValueIfAbsent, DoubleToDoubleFunction function) { synchronized (this.lock) { return this.map.updateValue(key, initialValueIfAbsent, function); } } public double get(char key) { synchronized (this.lock) { return this.map.get(key); } } public double getIfAbsent(char key, double ifAbsent) { synchronized (this.lock) { return this.map.getIfAbsent(key, ifAbsent); } } public double getOrThrow(char key) { synchronized (this.lock) { return this.map.getOrThrow(key); } } public boolean containsKey(char key) { synchronized (this.lock) { return this.map.containsKey(key); } } public boolean containsValue(double value) { synchronized (this.lock) { return this.map.containsValue(value); } } public void forEachValue(DoubleProcedure procedure) { synchronized (this.lock) { this.map.forEachValue(procedure); } } public void forEachKey(CharProcedure procedure) { synchronized (this.lock) { this.map.forEachKey(procedure); } } public void forEachKeyValue(CharDoubleProcedure procedure) { synchronized (this.lock) { this.map.forEachKeyValue(procedure); } } public LazyCharIterable keysView() { synchronized (this.lock) { return this.map.keysView(); } } public RichIterable keyValuesView() { synchronized (this.lock) { return SynchronizedRichIterable.of(this.map.keyValuesView(), this.lock).asLazy(); } } public MutableCharDoubleMap select(CharDoublePredicate predicate) { synchronized (this.lock) { return this.map.select(predicate); } } public MutableCharDoubleMap reject(CharDoublePredicate predicate) { synchronized (this.lock) { return this.map.reject(predicate); } } /** * This must be manually synchronized by the developer. */ public DoubleIterator doubleIterator() { return this.map.doubleIterator(); } public void forEach(DoubleProcedure procedure) { synchronized (this.lock) { this.map.forEach(procedure); } } public int count(DoublePredicate predicate) { synchronized (this.lock) { return this.map.count(predicate); } } public boolean anySatisfy(DoublePredicate predicate) { synchronized (this.lock) { return this.map.anySatisfy(predicate); } } public boolean allSatisfy(DoublePredicate predicate) { synchronized (this.lock) { return this.map.allSatisfy(predicate); } } public boolean noneSatisfy(DoublePredicate predicate) { synchronized (this.lock) { return this.map.noneSatisfy(predicate); } } public MutableDoubleCollection select(DoublePredicate predicate) { synchronized (this.lock) { return this.map.select(predicate); } } public MutableDoubleCollection reject(DoublePredicate predicate) { synchronized (this.lock) { return this.map.reject(predicate); } } public double detectIfNone(DoublePredicate predicate, double ifNone) { synchronized (this.lock) { return this.map.detectIfNone(predicate, ifNone); } } public MutableCollection collect(DoubleToObjectFunction function) { synchronized (this.lock) { return this.map.collect(function); } } public double sum() { synchronized (this.lock) { return this.map.sum(); } } public double max() { synchronized (this.lock) { return this.map.max(); } } public double maxIfEmpty(double defaultValue) { synchronized (this.lock) { return this.map.maxIfEmpty(defaultValue); } } public double min() { synchronized (this.lock) { return this.map.min(); } } public double minIfEmpty(double defaultValue) { synchronized (this.lock) { return this.map.minIfEmpty(defaultValue); } } public double average() { synchronized (this.lock) { return this.map.average(); } } public double median() { synchronized (this.lock) { return this.map.median(); } } public double addToValue(char key, double toBeAdded) { synchronized (this.lock) { return this.map.addToValue(key, toBeAdded); } } public double[] toSortedArray() { synchronized (this.lock) { return this.map.toSortedArray(); } } public MutableDoubleList toSortedList() { synchronized (this.lock) { return this.map.toSortedList(); } } public double[] toArray() { synchronized (this.lock) { return this.map.toArray(); } } public boolean contains(double value) { synchronized (this.lock) { return this.map.contains(value); } } public boolean containsAll(double... source) { synchronized (this.lock) { return this.map.containsAll(source); } } public boolean containsAll(DoubleIterable source) { synchronized (this.lock) { return this.map.containsAll(source); } } public MutableDoubleList toList() { synchronized (this.lock) { return this.map.toList(); } } public MutableDoubleSet toSet() { synchronized (this.lock) { return this.map.toSet(); } } public MutableDoubleBag toBag() { synchronized (this.lock) { return this.map.toBag(); } } public LazyDoubleIterable asLazy() { synchronized (this.lock) { return this.map.asLazy(); } } public MutableCharDoubleMap withKeyValue(char key, double value) { synchronized (this.lock) { this.map.withKeyValue(key, value); } return this; } public MutableCharDoubleMap withoutKey(char key) { synchronized (this.lock) { this.map.withoutKey(key); } return this; } public MutableCharDoubleMap withoutAllKeys(CharIterable keys) { synchronized (this.lock) { this.map.withoutAllKeys(keys); } return this; } public MutableCharDoubleMap asUnmodifiable() { return new UnmodifiableCharDoubleMap(this); } public MutableCharDoubleMap asSynchronized() { return this; } public ImmutableCharDoubleMap toImmutable() { return CharDoubleMaps.immutable.withAll(this); } public int size() { synchronized (this.lock) { return this.map.size(); } } public boolean isEmpty() { synchronized (this.lock) { return this.map.isEmpty(); } } public boolean notEmpty() { synchronized (this.lock) { return this.map.notEmpty(); } } public MutableCharSet keySet() { synchronized (this.lock) { return SynchronizedCharSet.of(this.map.keySet(), this.lock); } } public MutableDoubleCollection values() { synchronized (this.lock) { return SynchronizedDoubleCollection.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(); } } public String makeString() { synchronized (this.lock) { return this.map.makeString(); } } public String makeString(String separator) { synchronized (this.lock) { return this.map.makeString(separator); } } public String makeString(String start, String separator, String end) { synchronized (this.lock) { return this.map.makeString(start, separator, end); } } public void appendString(Appendable appendable) { synchronized (this.lock) { this.map.appendString(appendable); } } public void appendString(Appendable appendable, String separator) { synchronized (this.lock) { this.map.appendString(appendable, separator); } } public void appendString(Appendable appendable, String start, String separator, String end) { synchronized (this.lock) { this.map.appendString(appendable, start, separator, end); } } public T injectInto(T injectedValue, ObjectDoubleToObjectFunction function) { synchronized (this.lock) { return this.map.injectInto(injectedValue, function); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy