com.gs.collections.impl.map.mutable.primitive.SynchronizedObjectCharMap Maven / Gradle / Ivy
Show all versions of gs-collections Show documentation
/*
* 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 java.util.Set;
import com.gs.collections.api.CharIterable;
import com.gs.collections.api.LazyCharIterable;
import com.gs.collections.api.LazyIterable;
import com.gs.collections.api.RichIterable;
import com.gs.collections.api.bag.primitive.MutableCharBag;
import com.gs.collections.api.block.function.primitive.CharFunction;
import com.gs.collections.api.block.function.primitive.CharFunction0;
import com.gs.collections.api.block.function.primitive.CharToCharFunction;
import com.gs.collections.api.block.function.primitive.CharToObjectFunction;
import com.gs.collections.api.block.function.primitive.ObjectCharToObjectFunction;
import com.gs.collections.api.block.predicate.primitive.CharPredicate;
import com.gs.collections.api.block.predicate.primitive.ObjectCharPredicate;
import com.gs.collections.api.block.procedure.Procedure;
import com.gs.collections.api.block.procedure.primitive.CharProcedure;
import com.gs.collections.api.block.procedure.primitive.ObjectCharProcedure;
import com.gs.collections.api.collection.MutableCollection;
import com.gs.collections.api.collection.primitive.MutableCharCollection;
import com.gs.collections.api.iterator.CharIterator;
import com.gs.collections.api.list.primitive.MutableCharList;
import com.gs.collections.api.map.MutableMap;
import com.gs.collections.api.map.primitive.ImmutableObjectCharMap;
import com.gs.collections.api.map.primitive.MutableObjectCharMap;
import com.gs.collections.api.map.primitive.ObjectCharMap;
import com.gs.collections.api.set.primitive.MutableCharSet;
import com.gs.collections.api.tuple.primitive.ObjectCharPair;
import com.gs.collections.impl.SynchronizedRichIterable;
import com.gs.collections.impl.collection.mutable.primitive.SynchronizedCharCollection;
import com.gs.collections.impl.factory.primitive.ObjectCharMaps;
import com.gs.collections.impl.set.mutable.SynchronizedMutableSet;
import com.gs.collections.impl.utility.LazyIterate;
import net.jcip.annotations.GuardedBy;
/**
* A synchronized view of a {@link MutableObjectCharMap}. It is imperative that the user manually synchronize on the collection when iterating over it using the
* CharIterator as per {@link Collections#synchronizedCollection(Collection)}.
*
* This file was automatically generated from template file synchronizedObjectPrimitiveMap.stg.
*
*
* @see MutableObjectCharMap#asSynchronized()
* @see MutableMap#asSynchronized()
* @since 3.1.
*/
public final class SynchronizedObjectCharMap
implements MutableObjectCharMap, Serializable
{
private static final long serialVersionUID = 1L;
private final Object lock;
@GuardedBy("this.lock")
private final MutableObjectCharMap map;
SynchronizedObjectCharMap(MutableObjectCharMap map)
{
this(map, null);
}
SynchronizedObjectCharMap(MutableObjectCharMap map, Object newLock)
{
this.map = map;
this.lock = newLock == null ? this : newLock;
}
public void clear()
{
synchronized (this.lock)
{
this.map.clear();
}
}
public void put(K key, char value)
{
synchronized (this.lock)
{
this.map.put(key, value);
}
}
public void putAll(ObjectCharMap extends K> map)
{
synchronized (this.lock)
{
this.map.putAll(map);
}
}
public void removeKey(K key)
{
synchronized (this.lock)
{
this.map.removeKey(key);
}
}
public void remove(Object key)
{
synchronized (this.lock)
{
this.map.removeKey((K) key);
}
}
public char removeKeyIfAbsent(K key, char value)
{
synchronized (this.lock)
{
return this.map.removeKeyIfAbsent(key, value);
}
}
public char getIfAbsentPut(K key, char value)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPut(key, value);
}
}
public char getIfAbsentPut(K key, CharFunction0 function)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPut(key, function);
}
}
public char getIfAbsentPutWithKey(K key, CharFunction super K> function)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPutWithKey(key, function);
}
}
public char getIfAbsentPutWith(K key, CharFunction super P> function, P parameter)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPutWith(key, function, parameter);
}
}
public char updateValue(K key, char initialValueIfAbsent, CharToCharFunction function)
{
synchronized (this.lock)
{
return this.map.updateValue(key, initialValueIfAbsent, function);
}
}
public char get(Object key)
{
synchronized (this.lock)
{
return this.map.get(key);
}
}
public char getOrThrow(Object key)
{
synchronized (this.lock)
{
return this.map.getOrThrow(key);
}
}
public char getIfAbsent(Object key, char ifAbsent)
{
synchronized (this.lock)
{
return this.map.getIfAbsent(key, ifAbsent);
}
}
public boolean containsKey(Object key)
{
synchronized (this.lock)
{
return this.map.containsKey(key);
}
}
public boolean containsValue(char value)
{
synchronized (this.lock)
{
return this.map.containsValue(value);
}
}
public void forEachValue(CharProcedure procedure)
{
synchronized (this.lock)
{
this.map.forEachValue(procedure);
}
}
public void forEachKey(Procedure super K> procedure)
{
synchronized (this.lock)
{
this.map.forEachKey(procedure);
}
}
public void forEachKeyValue(ObjectCharProcedure super K> procedure)
{
synchronized (this.lock)
{
this.map.forEachKeyValue(procedure);
}
}
public MutableObjectCharMap select(ObjectCharPredicate super K> predicate)
{
synchronized (this.lock)
{
return this.map.select(predicate);
}
}
public MutableObjectCharMap reject(ObjectCharPredicate super K> predicate)
{
synchronized (this.lock)
{
return this.map.reject(predicate);
}
}
/**
* Must be called in a synchronized block.
*/
public CharIterator charIterator()
{
return this.map.charIterator();
}
public void forEach(CharProcedure procedure)
{
synchronized (this.lock)
{
this.map.forEach(procedure);
}
}
public int count(CharPredicate predicate)
{
synchronized (this.lock)
{
return this.map.count(predicate);
}
}
public boolean anySatisfy(CharPredicate predicate)
{
synchronized (this.lock)
{
return this.map.anySatisfy(predicate);
}
}
public boolean allSatisfy(CharPredicate predicate)
{
synchronized (this.lock)
{
return this.map.allSatisfy(predicate);
}
}
public boolean noneSatisfy(CharPredicate predicate)
{
synchronized (this.lock)
{
return this.map.noneSatisfy(predicate);
}
}
public MutableCharCollection select(CharPredicate predicate)
{
synchronized (this.lock)
{
return this.map.select(predicate);
}
}
public MutableCharCollection reject(CharPredicate predicate)
{
synchronized (this.lock)
{
return this.map.reject(predicate);
}
}
public char detectIfNone(CharPredicate predicate, char ifNone)
{
synchronized (this.lock)
{
return this.map.detectIfNone(predicate, ifNone);
}
}
public MutableCollection collect(CharToObjectFunction extends V1> function)
{
synchronized (this.lock)
{
return this.map.collect(function);
}
}
public long sum()
{
synchronized (this.lock)
{
return this.map.sum();
}
}
public char addToValue(K key, char toBeAdded)
{
synchronized (this.lock)
{
return this.map.addToValue(key, toBeAdded);
}
}
public char max()
{
synchronized (this.lock)
{
return this.map.max();
}
}
public char maxIfEmpty(char defaultValue)
{
synchronized (this.lock)
{
return this.map.maxIfEmpty(defaultValue);
}
}
public char min()
{
synchronized (this.lock)
{
return this.map.min();
}
}
public char minIfEmpty(char 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 char[] toSortedArray()
{
synchronized (this.lock)
{
return this.map.toSortedArray();
}
}
public MutableCharList toSortedList()
{
synchronized (this.lock)
{
return this.map.toSortedList();
}
}
public char[] toArray()
{
synchronized (this.lock)
{
return this.map.toArray();
}
}
public boolean contains(char value)
{
synchronized (this.lock)
{
return this.map.contains(value);
}
}
public boolean containsAll(char... source)
{
synchronized (this.lock)
{
return this.map.containsAll(source);
}
}
public boolean containsAll(CharIterable source)
{
synchronized (this.lock)
{
return this.map.containsAll(source);
}
}
public MutableCharList toList()
{
synchronized (this.lock)
{
return this.map.toList();
}
}
public MutableCharSet toSet()
{
synchronized (this.lock)
{
return this.map.toSet();
}
}
public MutableCharBag toBag()
{
synchronized (this.lock)
{
return this.map.toBag();
}
}
public LazyCharIterable asLazy()
{
synchronized (this.lock)
{
return this.map.asLazy();
}
}
public MutableObjectCharMap withKeyValue(K key, char value)
{
synchronized (this.lock)
{
this.map.withKeyValue(key, value);
}
return this;
}
public MutableObjectCharMap withoutKey(K key)
{
synchronized (this.lock)
{
this.map.withoutKey(key);
}
return this;
}
public MutableObjectCharMap withoutAllKeys(Iterable extends K> keys)
{
synchronized (this.lock)
{
this.map.withoutAllKeys(keys);
}
return this;
}
public MutableObjectCharMap asUnmodifiable()
{
return new UnmodifiableObjectCharMap(this);
}
public MutableObjectCharMap asSynchronized()
{
return this;
}
public ImmutableObjectCharMap toImmutable()
{
return ObjectCharMaps.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 Set keySet()
{
synchronized (this.lock)
{
return SynchronizedMutableSet.of(this.map.keySet(), this.lock);
}
}
public MutableCharCollection values()
{
synchronized (this.lock)
{
return SynchronizedCharCollection.of(this.map.values(), this.lock);
}
}
public LazyIterable keysView()
{
return LazyIterate.adapt(this.keySet());
}
public RichIterable> keyValuesView()
{
synchronized (this.lock)
{
return SynchronizedRichIterable.of(this.map.keyValuesView(), this.lock).asLazy();
}
}
@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();
}
}
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, ObjectCharToObjectFunction super T, ? extends T> function)
{
synchronized (this.lock)
{
return this.map.injectInto(injectedValue, function);
}
}
}