package org.eclipse.collections.impl.collection.mutable.primitive;
import java.io.Serializable;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.CharIterable;
import org.eclipse.collections.api.LazyCharIterable;
import org.eclipse.collections.api.bag.primitive.MutableCharBag;
import org.eclipse.collections.api.block.function.primitive.LongCharToLongFunction;
import org.eclipse.collections.api.block.function.primitive.CharToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectCharToObjectFunction;
import org.eclipse.collections.api.block.predicate.primitive.CharPredicate;
import org.eclipse.collections.api.block.procedure.primitive.CharProcedure;
import org.eclipse.collections.api.collection.MutableCollection;
import org.eclipse.collections.api.collection.primitive.ImmutableCharCollection;
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.set.primitive.MutableCharSet;
import org.eclipse.collections.impl.lazy.primitive.LazyCharIterableAdapter;
public abstract class AbstractSynchronizedCharCollection
implements MutableCharCollection, Serializable
{
private static final long serialVersionUID = 1L;
private final Object lock;
private final MutableCharCollection collection;
protected AbstractSynchronizedCharCollection(MutableCharCollection collection)
{
this(collection, null);
}
protected AbstractSynchronizedCharCollection(MutableCharCollection collection, Object newLock)
{
if (collection == null)
{
throw new IllegalArgumentException("Cannot create a AbstractSynchronizedCharCollection on a null collection");
}
this.collection = collection;
this.lock = newLock == null ? this : newLock;
}
protected Object getLock()
{
return this.lock;
}
protected MutableCharCollection getCharCollection()
{
return this.collection;
}
@Override
public int size()
{
synchronized (this.lock)
{
return this.collection.size();
}
}
@Override
public boolean isEmpty()
{
synchronized (this.lock)
{
return this.collection.isEmpty();
}
}
@Override
public boolean notEmpty()
{
synchronized (this.lock)
{
return this.collection.notEmpty();
}
}
@Override
public void clear()
{
synchronized (this.lock)
{
this.collection.clear();
}
}
@Override
public MutableCharCollection select(CharPredicate predicate)
{
synchronized (this.lock)
{
return this.collection.select(predicate);
}
}
@Override
public MutableCharCollection reject(CharPredicate predicate)
{
synchronized (this.lock)
{
return this.collection.reject(predicate);
}
}
@Override
public <V> MutableCollection<V> collect(CharToObjectFunction<? extends V> function)
{
synchronized (this.lock)
{
return this.collection.collect(function);
}
}
@Override
public MutableCharCollection with(char element)
{
synchronized (this.lock)
{
this.add(element);
}
return this;
}
@Override
public MutableCharCollection without(char element)
{
synchronized (this.lock)
{
this.remove(element);
}
return this;
}
@Override
public MutableCharCollection withAll(CharIterable elements)
{
synchronized (this.lock)
{
this.addAll(elements);
}
return this;
}
@Override
public MutableCharCollection withoutAll(CharIterable elements)
{
synchronized (this.lock)
{
this.removeAll(elements);
}
return this;
}
@Override
public MutableCharCollection asUnmodifiable()
{
return new UnmodifiableCharCollection(this);
}
@Override
public MutableCharCollection asSynchronized()
{
return this;
}
@Override
public ImmutableCharCollection toImmutable()
{
synchronized (this.lock)
{
return this.collection.toImmutable();
}
}
@Override
public LazyCharIterable asLazy()
{
return new LazyCharIterableAdapter(this);
}
@Override
public boolean contains(char value)
{
synchronized (this.lock)
{
return this.collection.contains(value);
}
}
@Override
public boolean containsAll(char... source)
{
synchronized (this.lock)
{
return this.collection.containsAll(source);
}
}
@Override
public boolean containsAll(CharIterable source)
{
synchronized (this.lock)
{
return this.collection.containsAll(source);
}
}
@Override
public boolean add(char newItem)
{
synchronized (this.lock)
{
return this.collection.add(newItem);
}
}
@Override
public boolean addAll(char... source)
{
synchronized (this.lock)
{
return this.collection.addAll(source);
}
}
@Override
public boolean addAll(CharIterable source)
{
synchronized (this.lock)
{
return this.collection.addAll(source);
}
}
@Override
public boolean remove(char value)
{
synchronized (this.lock)
{
return this.collection.remove(value);
}
}
@Override
public boolean removeIf(CharPredicate predicate)
{
synchronized (this.lock)
{
return this.collection.removeIf(predicate);
}
}
@Override
public boolean removeAll(CharIterable source)
{
synchronized (this.lock)
{
return this.collection.removeAll(source);
}
}
@Override
public boolean removeAll(char... source)
{
synchronized (this.lock)
{
return this.collection.removeAll(source);
}
}
@Override
public boolean retainAll(CharIterable source)
{
synchronized (this.lock)
{
return this.collection.retainAll(source);
}
}
@Override
public boolean retainAll(char... source)
{
synchronized (this.lock)
{
return this.collection.retainAll(source);
}
}
@Override
public MutableCharIterator charIterator()
{
return this.collection.charIterator();
}
@Override
public void forEach(CharProcedure procedure)
{
this.each(procedure);
}
@Override
public void each(CharProcedure procedure)
{
synchronized (this.lock)
{
this.collection.forEach(procedure);
}
}
@Override
public int count(CharPredicate predicate)
{
synchronized (this.lock)
{
return this.collection.count(predicate);
}
}
@Override
public boolean anySatisfy(CharPredicate predicate)
{
synchronized (this.lock)
{
return this.collection.anySatisfy(predicate);
}
}
@Override
public boolean allSatisfy(CharPredicate predicate)
{
synchronized (this.lock)
{
return this.collection.allSatisfy(predicate);
}
}
@Override
public boolean noneSatisfy(CharPredicate predicate)
{
synchronized (this.lock)
{
return this.collection.noneSatisfy(predicate);
}
}
@Override
public char detectIfNone(CharPredicate predicate, char ifNone)
{
synchronized (this.lock)
{
return this.collection.detectIfNone(predicate, ifNone);
}
}
@Override
public long sum()
{
synchronized (this.lock)
{
return this.collection.sum();
}
}
@Override
public char max()
{
synchronized (this.lock)
{
return this.collection.max();
}
}
@Override
public char min()
{
synchronized (this.lock)
{
return this.collection.min();
}
}
@Override
public char minIfEmpty(char defaultValue)
{
synchronized (this.lock)
{
return this.collection.minIfEmpty(defaultValue);
}
}
@Override
public char maxIfEmpty(char defaultValue)
{
synchronized (this.lock)
{
return this.collection.maxIfEmpty(defaultValue);
}
}
@Override
public double average()
{
synchronized (this.lock)
{
return this.collection.average();
}
}
@Override
public double median()
{
synchronized (this.lock)
{
return this.collection.median();
}
}
@Override
public MutableCharList toSortedList()
{
synchronized (this.lock)
{
return this.collection.toSortedList();
}
}
@Override
public char[] toSortedArray()
{
synchronized (this.lock)
{
return this.collection.toSortedArray();
}
}
@Override
public char[] toArray()
{
synchronized (this.lock)
{
return this.collection.toArray();
}
}
@Override
public String toString()
{
synchronized (this.lock)
{
return this.collection.toString();
}
}
@Override
public String makeString()
{
synchronized (this.lock)
{
return this.collection.makeString();
}
}
@Override
public String makeString(String separator)
{
synchronized (this.lock)
{
return this.collection.makeString(separator);
}
}
@Override
public String makeString(String start, String separator, String end)
{
synchronized (this.lock)
{
return this.collection.makeString(start, separator, end);
}
}
@Override
public void appendString(Appendable appendable)
{
synchronized (this.lock)
{
this.collection.appendString(appendable);
}
}
@Override
public void appendString(Appendable appendable, String separator)
{
synchronized (this.lock)
{
this.collection.appendString(appendable, separator);
}
}
@Override
public void appendString(
Appendable appendable,
String start,
String separator,
String end)
{
synchronized (this.lock)
{
this.collection.appendString(appendable, start, separator, end);
}
}
@Override
public MutableCharList toList()
{
synchronized (this.lock)
{
return this.collection.toList();
}
}
@Override
public MutableCharSet toSet()
{
synchronized (this.lock)
{
return this.collection.toSet();
}
}
@Override
public MutableCharBag toBag()
{
synchronized (this.lock)
{
return this.collection.toBag();
}
}
@Override
public <T> T injectInto(T injectedValue, ObjectCharToObjectFunction<? super T, ? extends T> function)
{
synchronized (this.lock)
{
return this.collection.injectInto(injectedValue, function);
}
}
@Override
public long reduce(LongCharToLongFunction accumulator)
{
synchronized (this.lock)
{
return this.collection.reduce(accumulator);
}
}
@Override
public long reduceIfEmpty(LongCharToLongFunction accumulator, long defaultValue)
{
synchronized (this.lock)
{
return this.collection.reduceIfEmpty(accumulator, defaultValue);
}
}
@Override
public RichIterable<CharIterable> chunk(int size)
{
synchronized (this.lock)
{
return this.collection.chunk(size);
}
}
}