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

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

Go to download

GS Collections is a collections framework for Java. It has JDK-compatible List, Set and Map implementations with a rich API and set of utility classes that work with any JDK compatible Collections, Arrays, Maps or Strings. The iteration protocol was inspired by the Smalltalk collection framework.

There is a newer version: 7.0.3
Show newest version
/*
 * 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.IntIterable;
import com.gs.collections.api.ShortIterable;
import com.gs.collections.api.LazyIntIterable;
import com.gs.collections.api.LazyShortIterable;
import com.gs.collections.api.RichIterable;
import com.gs.collections.api.bag.primitive.MutableIntBag;
import com.gs.collections.api.block.function.primitive.IntFunction;
import com.gs.collections.api.block.function.primitive.IntFunction0;
import com.gs.collections.api.block.function.primitive.IntToIntFunction;
import com.gs.collections.api.block.function.primitive.IntToObjectFunction;
import com.gs.collections.api.block.function.primitive.ObjectIntToObjectFunction;
import com.gs.collections.api.block.function.primitive.ShortToIntFunction;
import com.gs.collections.api.block.predicate.primitive.IntPredicate;
import com.gs.collections.api.block.predicate.primitive.ShortIntPredicate;
import com.gs.collections.api.block.procedure.primitive.IntProcedure;
import com.gs.collections.api.block.procedure.primitive.ShortIntProcedure;
import com.gs.collections.api.block.procedure.primitive.ShortProcedure;
import com.gs.collections.api.collection.MutableCollection;
import com.gs.collections.api.collection.primitive.MutableIntCollection;
import com.gs.collections.api.iterator.IntIterator;
import com.gs.collections.api.list.primitive.MutableIntList;
import com.gs.collections.api.map.MutableMap;
import com.gs.collections.api.map.primitive.ImmutableShortIntMap;
import com.gs.collections.api.map.primitive.ShortIntMap;
import com.gs.collections.api.map.primitive.MutableShortIntMap;
import com.gs.collections.api.set.primitive.MutableShortSet;
import com.gs.collections.api.set.primitive.MutableIntSet;
import com.gs.collections.api.tuple.primitive.ShortIntPair;
import com.gs.collections.impl.SynchronizedRichIterable;
import com.gs.collections.impl.factory.primitive.ShortIntMaps;
import com.gs.collections.impl.set.mutable.primitive.SynchronizedShortSet;
import com.gs.collections.impl.collection.mutable.primitive.SynchronizedIntCollection;
import net.jcip.annotations.GuardedBy;

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

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

* * @see MutableShortIntMap#asSynchronized() * @see MutableMap#asSynchronized() * @since 3.1. */ public final class SynchronizedShortIntMap implements MutableShortIntMap, Serializable { private static final long serialVersionUID = 1L; private final Object lock; @GuardedBy("this.lock") private final MutableShortIntMap map; SynchronizedShortIntMap(MutableShortIntMap map) { this(map, null); } SynchronizedShortIntMap(MutableShortIntMap map, Object newLock) { this.map = map; this.lock = newLock == null ? this : newLock; } public void clear() { synchronized (this.lock) { this.map.clear(); } } public void put(short key, int value) { synchronized (this.lock) { this.map.put(key, value); } } public void putAll(ShortIntMap map) { synchronized (this.lock) { this.map.putAll(map); } } public void removeKey(short key) { synchronized (this.lock) { this.map.removeKey(key); } } public void remove(short key) { synchronized (this.lock) { this.map.remove(key); } } public int removeKeyIfAbsent(short key, int value) { synchronized (this.lock) { return this.map.removeKeyIfAbsent(key, value); } } public int getIfAbsentPut(short key, int value) { synchronized (this.lock) { return this.map.getIfAbsentPut(key, value); } } public int getIfAbsentPut(short key, IntFunction0 function) { synchronized (this.lock) { return this.map.getIfAbsentPut(key, function); } } public int getIfAbsentPutWithKey(short key, ShortToIntFunction function) { synchronized (this.lock) { return this.map.getIfAbsentPutWithKey(key, function); } } public

int getIfAbsentPutWith(short key, IntFunction function, P parameter) { synchronized (this.lock) { return this.map.getIfAbsentPutWith(key, function, parameter); } } public int updateValue(short key, int initialValueIfAbsent, IntToIntFunction function) { synchronized (this.lock) { return this.map.updateValue(key, initialValueIfAbsent, function); } } public int get(short key) { synchronized (this.lock) { return this.map.get(key); } } public int getIfAbsent(short key, int ifAbsent) { synchronized (this.lock) { return this.map.getIfAbsent(key, ifAbsent); } } public int getOrThrow(short key) { synchronized (this.lock) { return this.map.getOrThrow(key); } } public boolean containsKey(short key) { synchronized (this.lock) { return this.map.containsKey(key); } } public boolean containsValue(int value) { synchronized (this.lock) { return this.map.containsValue(value); } } public void forEachValue(IntProcedure procedure) { synchronized (this.lock) { this.map.forEachValue(procedure); } } public void forEachKey(ShortProcedure procedure) { synchronized (this.lock) { this.map.forEachKey(procedure); } } public void forEachKeyValue(ShortIntProcedure procedure) { synchronized (this.lock) { this.map.forEachKeyValue(procedure); } } public LazyShortIterable keysView() { synchronized (this.lock) { return this.map.keysView(); } } public RichIterable keyValuesView() { synchronized (this.lock) { return SynchronizedRichIterable.of(this.map.keyValuesView(), this.lock).asLazy(); } } public MutableShortIntMap select(ShortIntPredicate predicate) { synchronized (this.lock) { return this.map.select(predicate); } } public MutableShortIntMap reject(ShortIntPredicate predicate) { synchronized (this.lock) { return this.map.reject(predicate); } } /** * This must be manually synchronized by the developer. */ public IntIterator intIterator() { return this.map.intIterator(); } public void forEach(IntProcedure procedure) { synchronized (this.lock) { this.map.forEach(procedure); } } public int count(IntPredicate predicate) { synchronized (this.lock) { return this.map.count(predicate); } } public boolean anySatisfy(IntPredicate predicate) { synchronized (this.lock) { return this.map.anySatisfy(predicate); } } public boolean allSatisfy(IntPredicate predicate) { synchronized (this.lock) { return this.map.allSatisfy(predicate); } } public boolean noneSatisfy(IntPredicate predicate) { synchronized (this.lock) { return this.map.noneSatisfy(predicate); } } public MutableIntCollection select(IntPredicate predicate) { synchronized (this.lock) { return this.map.select(predicate); } } public MutableIntCollection reject(IntPredicate predicate) { synchronized (this.lock) { return this.map.reject(predicate); } } public int detectIfNone(IntPredicate predicate, int ifNone) { synchronized (this.lock) { return this.map.detectIfNone(predicate, ifNone); } } public MutableCollection collect(IntToObjectFunction function) { synchronized (this.lock) { return this.map.collect(function); } } public long sum() { synchronized (this.lock) { return this.map.sum(); } } public int max() { synchronized (this.lock) { return this.map.max(); } } public int maxIfEmpty(int defaultValue) { synchronized (this.lock) { return this.map.maxIfEmpty(defaultValue); } } public int min() { synchronized (this.lock) { return this.map.min(); } } public int minIfEmpty(int 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 int addToValue(short key, int toBeAdded) { synchronized (this.lock) { return this.map.addToValue(key, toBeAdded); } } public int[] toSortedArray() { synchronized (this.lock) { return this.map.toSortedArray(); } } public MutableIntList toSortedList() { synchronized (this.lock) { return this.map.toSortedList(); } } public int[] toArray() { synchronized (this.lock) { return this.map.toArray(); } } public boolean contains(int value) { synchronized (this.lock) { return this.map.contains(value); } } public boolean containsAll(int... source) { synchronized (this.lock) { return this.map.containsAll(source); } } public boolean containsAll(IntIterable source) { synchronized (this.lock) { return this.map.containsAll(source); } } public MutableIntList toList() { synchronized (this.lock) { return this.map.toList(); } } public MutableIntSet toSet() { synchronized (this.lock) { return this.map.toSet(); } } public MutableIntBag toBag() { synchronized (this.lock) { return this.map.toBag(); } } public LazyIntIterable asLazy() { synchronized (this.lock) { return this.map.asLazy(); } } public MutableShortIntMap withKeyValue(short key, int value) { synchronized (this.lock) { this.map.withKeyValue(key, value); } return this; } public MutableShortIntMap withoutKey(short key) { synchronized (this.lock) { this.map.withoutKey(key); } return this; } public MutableShortIntMap withoutAllKeys(ShortIterable keys) { synchronized (this.lock) { this.map.withoutAllKeys(keys); } return this; } public MutableShortIntMap asUnmodifiable() { return new UnmodifiableShortIntMap(this); } public MutableShortIntMap asSynchronized() { return this; } public ImmutableShortIntMap toImmutable() { return ShortIntMaps.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 MutableShortSet keySet() { synchronized (this.lock) { return SynchronizedShortSet.of(this.map.keySet(), this.lock); } } public MutableIntCollection values() { synchronized (this.lock) { return SynchronizedIntCollection.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, ObjectIntToObjectFunction function) { synchronized (this.lock) { return this.map.injectInto(injectedValue, function); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy