/*
 * Copyright (c) 2018 Goldman Sachs and others.
 * 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.collection.mutable.primitive;

import java.io.Serializable;

import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.FloatIterable;
import org.eclipse.collections.api.LazyFloatIterable;
import org.eclipse.collections.api.bag.primitive.MutableFloatBag;
import org.eclipse.collections.api.block.function.primitive.DoubleFloatToDoubleFunction;
import org.eclipse.collections.api.block.function.primitive.FloatToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectFloatToObjectFunction;
import org.eclipse.collections.api.block.predicate.primitive.FloatPredicate;
import org.eclipse.collections.api.block.procedure.primitive.FloatProcedure;
import org.eclipse.collections.api.collection.MutableCollection;
import org.eclipse.collections.api.collection.primitive.ImmutableFloatCollection;
import org.eclipse.collections.api.collection.primitive.MutableFloatCollection;
import org.eclipse.collections.api.iterator.MutableFloatIterator;
import org.eclipse.collections.api.list.primitive.MutableFloatList;
import org.eclipse.collections.api.set.primitive.MutableFloatSet;
import org.eclipse.collections.impl.lazy.primitive.LazyFloatIterableAdapter;

This file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.
Since:3.1.
/** * This file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg. * * @since 3.1. */
public abstract class AbstractSynchronizedFloatCollection implements MutableFloatCollection, Serializable { private static final long serialVersionUID = 1L; private final Object lock; private final MutableFloatCollection collection; protected AbstractSynchronizedFloatCollection(MutableFloatCollection collection) { this(collection, null); } protected AbstractSynchronizedFloatCollection(MutableFloatCollection collection, Object newLock) { if (collection == null) { throw new IllegalArgumentException("Cannot create a AbstractSynchronizedFloatCollection on a null collection"); } this.collection = collection; this.lock = newLock == null ? this : newLock; } protected Object getLock() { return this.lock; } protected MutableFloatCollection getFloatCollection() { 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 MutableFloatCollection select(FloatPredicate predicate) { synchronized (this.lock) { return this.collection.select(predicate); } } @Override public MutableFloatCollection reject(FloatPredicate predicate) { synchronized (this.lock) { return this.collection.reject(predicate); } } @Override public <V> MutableCollection<V> collect(FloatToObjectFunction<? extends V> function) { synchronized (this.lock) { return this.collection.collect(function); } } @Override public MutableFloatCollection with(float element) { synchronized (this.lock) { this.add(element); } return this; } @Override public MutableFloatCollection without(float element) { synchronized (this.lock) { this.remove(element); } return this; } @Override public MutableFloatCollection withAll(FloatIterable elements) { synchronized (this.lock) { this.addAll(elements); } return this; } @Override public MutableFloatCollection withoutAll(FloatIterable elements) { synchronized (this.lock) { this.removeAll(elements); } return this; } @Override public MutableFloatCollection asUnmodifiable() { return new UnmodifiableFloatCollection(this); } @Override public MutableFloatCollection asSynchronized() { return this; } @Override public ImmutableFloatCollection toImmutable() { synchronized (this.lock) { return this.collection.toImmutable(); } } @Override public LazyFloatIterable asLazy() { return new LazyFloatIterableAdapter(this); } @Override public boolean contains(float value) { synchronized (this.lock) { return this.collection.contains(value); } } @Override public boolean containsAll(float... source) { synchronized (this.lock) { return this.collection.containsAll(source); } } @Override public boolean containsAll(FloatIterable source) { synchronized (this.lock) { return this.collection.containsAll(source); } } @Override public boolean add(float newItem) { synchronized (this.lock) { return this.collection.add(newItem); } } @Override public boolean addAll(float... source) { synchronized (this.lock) { return this.collection.addAll(source); } } @Override public boolean addAll(FloatIterable source) { synchronized (this.lock) { return this.collection.addAll(source); } } @Override public boolean remove(float value) { synchronized (this.lock) { return this.collection.remove(value); } } @Override public boolean removeIf(FloatPredicate predicate) { synchronized (this.lock) { return this.collection.removeIf(predicate); } } @Override public boolean removeAll(FloatIterable source) { synchronized (this.lock) { return this.collection.removeAll(source); } } @Override public boolean removeAll(float... source) { synchronized (this.lock) { return this.collection.removeAll(source); } } @Override public boolean retainAll(FloatIterable source) { synchronized (this.lock) { return this.collection.retainAll(source); } } @Override public boolean retainAll(float... source) { synchronized (this.lock) { return this.collection.retainAll(source); } }
Must be called in a synchronized block.
/** * Must be called in a synchronized block. */
@Override public MutableFloatIterator floatIterator() { return this.collection.floatIterator(); } @Override public void forEach(FloatProcedure procedure) { this.each(procedure); }
Since:7.0.
/** * @since 7.0. */
@Override public void each(FloatProcedure procedure) { synchronized (this.lock) { this.collection.forEach(procedure); } } @Override public int count(FloatPredicate predicate) { synchronized (this.lock) { return this.collection.count(predicate); } } @Override public boolean anySatisfy(FloatPredicate predicate) { synchronized (this.lock) { return this.collection.anySatisfy(predicate); } } @Override public boolean allSatisfy(FloatPredicate predicate) { synchronized (this.lock) { return this.collection.allSatisfy(predicate); } } @Override public boolean noneSatisfy(FloatPredicate predicate) { synchronized (this.lock) { return this.collection.noneSatisfy(predicate); } } @Override public float detectIfNone(FloatPredicate predicate, float ifNone) { synchronized (this.lock) { return this.collection.detectIfNone(predicate, ifNone); } } @Override public double sum() { synchronized (this.lock) { return this.collection.sum(); } } @Override public float max() { synchronized (this.lock) { return this.collection.max(); } } @Override public float min() { synchronized (this.lock) { return this.collection.min(); } } @Override public float minIfEmpty(float defaultValue) { synchronized (this.lock) { return this.collection.minIfEmpty(defaultValue); } } @Override public float maxIfEmpty(float 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 MutableFloatList toSortedList() { synchronized (this.lock) { return this.collection.toSortedList(); } } @Override public float[] toSortedArray() { synchronized (this.lock) { return this.collection.toSortedArray(); } } @Override public float[] 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 MutableFloatList toList() { synchronized (this.lock) { return this.collection.toList(); } } @Override public MutableFloatSet toSet() { synchronized (this.lock) { return this.collection.toSet(); } } @Override public MutableFloatBag toBag() { synchronized (this.lock) { return this.collection.toBag(); } } @Override public <T> T injectInto(T injectedValue, ObjectFloatToObjectFunction<? super T, ? extends T> function) { synchronized (this.lock) { return this.collection.injectInto(injectedValue, function); } } @Override public double reduce(DoubleFloatToDoubleFunction accumulator) { synchronized (this.lock) { return this.collection.reduce(accumulator); } } @Override public double reduceIfEmpty(DoubleFloatToDoubleFunction accumulator, double defaultValue) { synchronized (this.lock) { return this.collection.reduceIfEmpty(accumulator, defaultValue); } } @Override public RichIterable<FloatIterable> chunk(int size) { synchronized (this.lock) { return this.collection.chunk(size); } } }