/*
 * Copyright (c) 2018 Goldman Sachs.
 * 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 org.eclipse.collections.api.CharIterable;
import org.eclipse.collections.api.ShortIterable;
import org.eclipse.collections.api.LazyCharIterable;
import org.eclipse.collections.api.LazyShortIterable;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.bag.MutableBag;
import org.eclipse.collections.api.bag.primitive.MutableCharBag;
import org.eclipse.collections.api.block.function.primitive.CharFunction;
import org.eclipse.collections.api.block.function.primitive.CharFunction0;
import org.eclipse.collections.api.block.function.primitive.CharToCharFunction;
import org.eclipse.collections.api.block.function.primitive.CharToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.ShortCharToCharFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectCharToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.ShortToCharFunction;
import org.eclipse.collections.api.block.predicate.primitive.CharPredicate;
import org.eclipse.collections.api.block.predicate.primitive.ShortCharPredicate;
import org.eclipse.collections.api.block.procedure.primitive.CharProcedure;
import org.eclipse.collections.api.block.procedure.primitive.ShortCharProcedure;
import org.eclipse.collections.api.block.procedure.primitive.ShortProcedure;
import org.eclipse.collections.api.collection.primitive.MutableCharCollection;
import org.eclipse.collections.api.iterator.MutableCharIterator;
import org.eclipse.collections.api.list.primitive.MutableCharList;
import org.eclipse.collections.api.map.MutableMap;
import org.eclipse.collections.api.map.primitive.ImmutableShortCharMap;
import org.eclipse.collections.api.map.primitive.ShortCharMap;
import org.eclipse.collections.api.map.primitive.MutableShortCharMap;
import org.eclipse.collections.api.map.primitive.MutableCharShortMap;
import org.eclipse.collections.api.set.primitive.MutableShortSet;
import org.eclipse.collections.api.set.primitive.MutableCharSet;
import org.eclipse.collections.api.tuple.primitive.ShortCharPair;
import org.eclipse.collections.impl.SynchronizedRichIterable;
import org.eclipse.collections.impl.factory.primitive.ShortCharMaps;
import org.eclipse.collections.impl.set.mutable.primitive.SynchronizedShortSet;
import org.eclipse.collections.impl.collection.mutable.primitive.SynchronizedCharCollection;

A synchronized view of a MutableShortCharMap. It is imperative that the user manually synchronize on the collection when iterating over it using the MutableCharIterator as per Collections.synchronizedCollection(Collection<Object>).

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

See Also:
Since:3.1.
/** * A synchronized view of a {@link MutableShortCharMap}. It is imperative that the user manually synchronize on the collection when iterating over it using the * {@link MutableCharIterator} as per {@link Collections#synchronizedCollection(Collection)}. * <p> * This file was automatically generated from template file synchronizedPrimitivePrimitiveMap.stg. * * @see MutableShortCharMap#asSynchronized() * @see MutableMap#asSynchronized() * @since 3.1. */
public class SynchronizedShortCharMap implements MutableShortCharMap, Serializable { private static final long serialVersionUID = 1L; private final Object lock; private final MutableShortCharMap map; public SynchronizedShortCharMap(MutableShortCharMap map) { this(map, null); } public SynchronizedShortCharMap(MutableShortCharMap map, Object newLock) { if (map == null) { throw new IllegalArgumentException("Cannot create a SynchronizedShortCharMap 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(short key, char value) { synchronized (this.lock) { this.map.put(key, value); } } @Override public void putPair(ShortCharPair keyValuePair) { synchronized (this.lock) { this.map.put(keyValuePair.getOne(), keyValuePair.getTwo()); } } @Override public void putAll(ShortCharMap map) { synchronized (this.lock) { this.map.putAll(map); } } @Override public void updateValues(ShortCharToCharFunction function) { synchronized (this.lock) { this.map.updateValues(function); } } @Override public void removeKey(short key) { synchronized (this.lock) { this.map.removeKey(key); } } @Override public void remove(short key) { synchronized (this.lock) { this.map.remove(key); } } @Override public char removeKeyIfAbsent(short key, char value) { synchronized (this.lock) { return this.map.removeKeyIfAbsent(key, value); } } @Override public char getIfAbsentPut(short key, char value) { synchronized (this.lock) { return this.map.getIfAbsentPut(key, value); } } @Override public char getIfAbsentPut(short key, CharFunction0 function) { synchronized (this.lock) { return this.map.getIfAbsentPut(key, function); } } @Override public char getIfAbsentPutWithKey(short key, ShortToCharFunction function) { synchronized (this.lock) { return this.map.getIfAbsentPutWithKey(key, function); } } @Override public <P> char getIfAbsentPutWith(short key, CharFunction<? super P> function, P parameter) { synchronized (this.lock) { return this.map.getIfAbsentPutWith(key, function, parameter); } } @Override public char updateValue(short key, char initialValueIfAbsent, CharToCharFunction function) { synchronized (this.lock) { return this.map.updateValue(key, initialValueIfAbsent, function); } } @Override public char get(short key) { synchronized (this.lock) { return this.map.get(key); } } @Override public char getIfAbsent(short key, char ifAbsent) { synchronized (this.lock) { return this.map.getIfAbsent(key, ifAbsent); } } @Override public char getOrThrow(short key) { synchronized (this.lock) { return this.map.getOrThrow(key); } } @Override public boolean containsKey(short key) { synchronized (this.lock) { return this.map.containsKey(key); } } @Override public boolean containsValue(char value) { synchronized (this.lock) { return this.map.containsValue(value); } } @Override public void forEachValue(CharProcedure procedure) { synchronized (this.lock) { this.map.forEachValue(procedure); } } @Override public void forEachKey(ShortProcedure procedure) { synchronized (this.lock) { this.map.forEachKey(procedure); } } @Override public void forEachKeyValue(ShortCharProcedure procedure) { synchronized (this.lock) { this.map.forEachKeyValue(procedure); } } @Override public LazyShortIterable keysView() { synchronized (this.lock) { return this.map.keysView(); } } @Override public RichIterable<ShortCharPair> keyValuesView() { synchronized (this.lock) { return SynchronizedRichIterable.of(this.map.keyValuesView(), this.lock).asLazy(); } } @Override public MutableCharShortMap flipUniqueValues() { synchronized (this.lock) { return this.map.flipUniqueValues(); } } @Override public MutableShortCharMap select(ShortCharPredicate predicate) { synchronized (this.lock) { return this.map.select(predicate); } } @Override public MutableShortCharMap reject(ShortCharPredicate predicate) { synchronized (this.lock) { return this.map.reject(predicate); } }
This must be manually synchronized by the developer.
/** * This must be manually synchronized by the developer. */
@Override public MutableCharIterator charIterator() { return this.map.charIterator(); } @Override public void forEach(CharProcedure procedure) { this.each(procedure); }
Since:7.0.
/** * @since 7.0. */
@Override public void each(CharProcedure procedure) { synchronized (this.lock) { this.map.forEach(procedure); } } @Override public int count(CharPredicate predicate) { synchronized (this.lock) { return this.map.count(predicate); } } @Override public boolean anySatisfy(CharPredicate predicate) { synchronized (this.lock) { return this.map.anySatisfy(predicate); } } @Override public boolean allSatisfy(CharPredicate predicate) { synchronized (this.lock) { return this.map.allSatisfy(predicate); } } @Override public boolean noneSatisfy(CharPredicate predicate) { synchronized (this.lock) { return this.map.noneSatisfy(predicate); } } @Override public MutableCharBag select(CharPredicate predicate) { synchronized (this.lock) { return this.map.select(predicate); } } @Override public MutableCharBag reject(CharPredicate predicate) { synchronized (this.lock) { return this.map.reject(predicate); } } @Override public <V> MutableBag<V> collect(CharToObjectFunction<? extends V> function) { synchronized (this.lock) { return this.map.collect(function); } } @Override public char detectIfNone(CharPredicate predicate, char ifNone) { synchronized (this.lock) { return this.map.detectIfNone(predicate, ifNone); } } @Override public long sum() { synchronized (this.lock) { return this.map.sum(); } } @Override public char max() { synchronized (this.lock) { return this.map.max(); } } @Override public char maxIfEmpty(char defaultValue) { synchronized (this.lock) { return this.map.maxIfEmpty(defaultValue); } } @Override public char min() { synchronized (this.lock) { return this.map.min(); } } @Override public char minIfEmpty(char 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 char addToValue(short key, char toBeAdded) { synchronized (this.lock) { return this.map.addToValue(key, toBeAdded); } } @Override public char[] toSortedArray() { synchronized (this.lock) { return this.map.toSortedArray(); } } @Override public MutableCharList toSortedList() { synchronized (this.lock) { return this.map.toSortedList(); } } @Override public char[] toArray() { synchronized (this.lock) { return this.map.toArray(); } } @Override public char[] toArray(char[] target) { synchronized (this.lock) { return this.map.toArray(target); } } @Override public boolean contains(char value) { synchronized (this.lock) { return this.map.contains(value); } } @Override public boolean containsAll(char... source) { synchronized (this.lock) { return this.map.containsAll(source); } } @Override public boolean containsAll(CharIterable source) { synchronized (this.lock) { return this.map.containsAll(source); } } @Override public MutableCharList toList() { synchronized (this.lock) { return this.map.toList(); } } @Override public MutableCharSet toSet() { synchronized (this.lock) { return this.map.toSet(); } } @Override public MutableCharBag toBag() { synchronized (this.lock) { return this.map.toBag(); } } @Override public LazyCharIterable asLazy() { synchronized (this.lock) { return this.map.asLazy(); } } @Override public MutableShortCharMap withKeyValue(short key, char value) { synchronized (this.lock) { this.map.withKeyValue(key, value); } return this; } @Override public MutableShortCharMap withoutKey(short key) { synchronized (this.lock) { this.map.withoutKey(key); } return this; } @Override public MutableShortCharMap withoutAllKeys(ShortIterable keys) { synchronized (this.lock) { this.map.withoutAllKeys(keys); } return this; } @Override public MutableShortCharMap asUnmodifiable() { synchronized (this.lock) { return new UnmodifiableShortCharMap(this); } } @Override public MutableShortCharMap asSynchronized() { return this; } @Override public ImmutableShortCharMap toImmutable() { synchronized (this.lock) { return ShortCharMaps.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 MutableShortSet keySet() { synchronized (this.lock) { return SynchronizedShortSet.of(this.map.keySet(), this.lock); } } @Override public MutableCharCollection values() { synchronized (this.lock) { return SynchronizedCharCollection.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, ObjectCharToObjectFunction<? super T, ? extends T> function) { synchronized (this.lock) { return this.map.injectInto(injectedValue, function); } } @Override public RichIterable<CharIterable> chunk(int size) { synchronized (this.lock) { return this.map.chunk(size); } } }