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

com.gs.collections.impl.map.mutable.primitive.SynchronizedIntByteMap 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.ByteIterable;
import com.gs.collections.api.IntIterable;
import com.gs.collections.api.LazyByteIterable;
import com.gs.collections.api.LazyIntIterable;
import com.gs.collections.api.RichIterable;
import com.gs.collections.api.bag.primitive.MutableByteBag;
import com.gs.collections.api.block.function.primitive.ByteFunction;
import com.gs.collections.api.block.function.primitive.ByteFunction0;
import com.gs.collections.api.block.function.primitive.ByteToByteFunction;
import com.gs.collections.api.block.function.primitive.ByteToObjectFunction;
import com.gs.collections.api.block.function.primitive.ObjectByteToObjectFunction;
import com.gs.collections.api.block.function.primitive.IntToByteFunction;
import com.gs.collections.api.block.predicate.primitive.BytePredicate;
import com.gs.collections.api.block.predicate.primitive.IntBytePredicate;
import com.gs.collections.api.block.procedure.primitive.ByteProcedure;
import com.gs.collections.api.block.procedure.primitive.IntByteProcedure;
import com.gs.collections.api.block.procedure.primitive.IntProcedure;
import com.gs.collections.api.collection.MutableCollection;
import com.gs.collections.api.collection.primitive.MutableByteCollection;
import com.gs.collections.api.iterator.ByteIterator;
import com.gs.collections.api.list.primitive.MutableByteList;
import com.gs.collections.api.map.MutableMap;
import com.gs.collections.api.map.primitive.ImmutableIntByteMap;
import com.gs.collections.api.map.primitive.IntByteMap;
import com.gs.collections.api.map.primitive.MutableIntByteMap;
import com.gs.collections.api.set.primitive.MutableIntSet;
import com.gs.collections.api.set.primitive.MutableByteSet;
import com.gs.collections.api.tuple.primitive.IntBytePair;
import com.gs.collections.impl.SynchronizedRichIterable;
import com.gs.collections.impl.factory.primitive.IntByteMaps;
import com.gs.collections.impl.set.mutable.primitive.SynchronizedIntSet;
import com.gs.collections.impl.collection.mutable.primitive.SynchronizedByteCollection;
import net.jcip.annotations.GuardedBy;

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

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

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

byte getIfAbsentPutWith(int key, ByteFunction function, P parameter) { synchronized (this.lock) { return this.map.getIfAbsentPutWith(key, function, parameter); } } public byte updateValue(int key, byte initialValueIfAbsent, ByteToByteFunction function) { synchronized (this.lock) { return this.map.updateValue(key, initialValueIfAbsent, function); } } public byte get(int key) { synchronized (this.lock) { return this.map.get(key); } } public byte getIfAbsent(int key, byte ifAbsent) { synchronized (this.lock) { return this.map.getIfAbsent(key, ifAbsent); } } public byte getOrThrow(int key) { synchronized (this.lock) { return this.map.getOrThrow(key); } } public boolean containsKey(int key) { synchronized (this.lock) { return this.map.containsKey(key); } } public boolean containsValue(byte value) { synchronized (this.lock) { return this.map.containsValue(value); } } public void forEachValue(ByteProcedure procedure) { synchronized (this.lock) { this.map.forEachValue(procedure); } } public void forEachKey(IntProcedure procedure) { synchronized (this.lock) { this.map.forEachKey(procedure); } } public void forEachKeyValue(IntByteProcedure procedure) { synchronized (this.lock) { this.map.forEachKeyValue(procedure); } } public LazyIntIterable keysView() { synchronized (this.lock) { return this.map.keysView(); } } public RichIterable keyValuesView() { synchronized (this.lock) { return SynchronizedRichIterable.of(this.map.keyValuesView(), this.lock).asLazy(); } } public MutableIntByteMap select(IntBytePredicate predicate) { synchronized (this.lock) { return this.map.select(predicate); } } public MutableIntByteMap reject(IntBytePredicate predicate) { synchronized (this.lock) { return this.map.reject(predicate); } } /** * This must be manually synchronized by the developer. */ public ByteIterator byteIterator() { return this.map.byteIterator(); } public void forEach(ByteProcedure procedure) { synchronized (this.lock) { this.map.forEach(procedure); } } public int count(BytePredicate predicate) { synchronized (this.lock) { return this.map.count(predicate); } } public boolean anySatisfy(BytePredicate predicate) { synchronized (this.lock) { return this.map.anySatisfy(predicate); } } public boolean allSatisfy(BytePredicate predicate) { synchronized (this.lock) { return this.map.allSatisfy(predicate); } } public boolean noneSatisfy(BytePredicate predicate) { synchronized (this.lock) { return this.map.noneSatisfy(predicate); } } public MutableByteCollection select(BytePredicate predicate) { synchronized (this.lock) { return this.map.select(predicate); } } public MutableByteCollection reject(BytePredicate predicate) { synchronized (this.lock) { return this.map.reject(predicate); } } public byte detectIfNone(BytePredicate predicate, byte ifNone) { synchronized (this.lock) { return this.map.detectIfNone(predicate, ifNone); } } public MutableCollection collect(ByteToObjectFunction function) { synchronized (this.lock) { return this.map.collect(function); } } public long sum() { synchronized (this.lock) { return this.map.sum(); } } public byte max() { synchronized (this.lock) { return this.map.max(); } } public byte maxIfEmpty(byte defaultValue) { synchronized (this.lock) { return this.map.maxIfEmpty(defaultValue); } } public byte min() { synchronized (this.lock) { return this.map.min(); } } public byte minIfEmpty(byte 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 byte addToValue(int key, byte toBeAdded) { synchronized (this.lock) { return this.map.addToValue(key, toBeAdded); } } public byte[] toSortedArray() { synchronized (this.lock) { return this.map.toSortedArray(); } } public MutableByteList toSortedList() { synchronized (this.lock) { return this.map.toSortedList(); } } public byte[] toArray() { synchronized (this.lock) { return this.map.toArray(); } } public boolean contains(byte value) { synchronized (this.lock) { return this.map.contains(value); } } public boolean containsAll(byte... source) { synchronized (this.lock) { return this.map.containsAll(source); } } public boolean containsAll(ByteIterable source) { synchronized (this.lock) { return this.map.containsAll(source); } } public MutableByteList toList() { synchronized (this.lock) { return this.map.toList(); } } public MutableByteSet toSet() { synchronized (this.lock) { return this.map.toSet(); } } public MutableByteBag toBag() { synchronized (this.lock) { return this.map.toBag(); } } public LazyByteIterable asLazy() { synchronized (this.lock) { return this.map.asLazy(); } } public MutableIntByteMap withKeyValue(int key, byte value) { synchronized (this.lock) { this.map.withKeyValue(key, value); } return this; } public MutableIntByteMap withoutKey(int key) { synchronized (this.lock) { this.map.withoutKey(key); } return this; } public MutableIntByteMap withoutAllKeys(IntIterable keys) { synchronized (this.lock) { this.map.withoutAllKeys(keys); } return this; } public MutableIntByteMap asUnmodifiable() { return new UnmodifiableIntByteMap(this); } public MutableIntByteMap asSynchronized() { return this; } public ImmutableIntByteMap toImmutable() { return IntByteMaps.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 MutableIntSet keySet() { synchronized (this.lock) { return SynchronizedIntSet.of(this.map.keySet(), this.lock); } } public MutableByteCollection values() { synchronized (this.lock) { return SynchronizedByteCollection.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, ObjectByteToObjectFunction function) { synchronized (this.lock) { return this.map.injectInto(injectedValue, function); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy