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

com.gs.collections.impl.set.mutable.UnmodifiableMutableSet Maven / Gradle / Ivy

Go to download

GS Collections is a collections framework for Java. It has JDK-compatible List, Set and Map implementations with a rich API and set of utility classes that work with any JDK compatible Collections, Arrays, Maps or Strings. The iteration protocol was inspired by the Smalltalk collection framework.

There is a newer version: 7.0.3
Show newest version
/*
 * Copyright 2015 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.set.mutable;

import java.io.Serializable;
import java.util.Collection;
import java.util.Set;
import java.util.concurrent.ExecutorService;

import com.gs.collections.api.LazyIterable;
import com.gs.collections.api.block.function.Function;
import com.gs.collections.api.block.function.Function2;
import com.gs.collections.api.block.function.primitive.BooleanFunction;
import com.gs.collections.api.block.function.primitive.ByteFunction;
import com.gs.collections.api.block.function.primitive.CharFunction;
import com.gs.collections.api.block.function.primitive.DoubleFunction;
import com.gs.collections.api.block.function.primitive.FloatFunction;
import com.gs.collections.api.block.function.primitive.IntFunction;
import com.gs.collections.api.block.function.primitive.LongFunction;
import com.gs.collections.api.block.function.primitive.ShortFunction;
import com.gs.collections.api.block.predicate.Predicate;
import com.gs.collections.api.block.predicate.Predicate2;
import com.gs.collections.api.block.procedure.Procedure;
import com.gs.collections.api.multimap.set.MutableSetMultimap;
import com.gs.collections.api.ordered.OrderedIterable;
import com.gs.collections.api.partition.set.PartitionMutableSet;
import com.gs.collections.api.set.ImmutableSet;
import com.gs.collections.api.set.MutableSet;
import com.gs.collections.api.set.ParallelUnsortedSetIterable;
import com.gs.collections.api.set.SetIterable;
import com.gs.collections.api.set.UnsortedSetIterable;
import com.gs.collections.api.set.primitive.MutableBooleanSet;
import com.gs.collections.api.set.primitive.MutableByteSet;
import com.gs.collections.api.set.primitive.MutableCharSet;
import com.gs.collections.api.set.primitive.MutableDoubleSet;
import com.gs.collections.api.set.primitive.MutableFloatSet;
import com.gs.collections.api.set.primitive.MutableIntSet;
import com.gs.collections.api.set.primitive.MutableLongSet;
import com.gs.collections.api.set.primitive.MutableShortSet;
import com.gs.collections.api.tuple.Pair;
import com.gs.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection;
import com.gs.collections.impl.collection.mutable.UnmodifiableCollectionSerializationProxy;
import com.gs.collections.impl.factory.Sets;

/**
 * An unmodifiable view of a list.
 *
 * @see MutableSet#asUnmodifiable()
 */
public class UnmodifiableMutableSet
        extends AbstractUnmodifiableMutableCollection
        implements MutableSet, Serializable
{
    UnmodifiableMutableSet(MutableSet mutableSet)
    {
        super(mutableSet);
    }

    /**
     * This method will take a MutableSet and wrap it directly in a UnmodifiableMutableSet.  It will
     * take any other non-GS-set and first adapt it will a SetAdapter, and then return a
     * UnmodifiableMutableSet that wraps the adapter.
     */
    public static > UnmodifiableMutableSet of(S set)
    {
        if (set == null)
        {
            throw new IllegalArgumentException("cannot create an UnmodifiableMutableSet for null");
        }
        return new UnmodifiableMutableSet(SetAdapter.adapt(set));
    }

    protected MutableSet getMutableSet()
    {
        return (MutableSet) this.getMutableCollection();
    }

    @Override
    public MutableSet asUnmodifiable()
    {
        return this;
    }

    @Override
    public MutableSet asSynchronized()
    {
        return SynchronizedMutableSet.of(this);
    }

    @Override
    public ImmutableSet toImmutable()
    {
        return Sets.immutable.withAll(this.getMutableSet());
    }

    @Override
    public boolean equals(Object obj)
    {
        return this.getMutableSet().equals(obj);
    }

    @Override
    public int hashCode()
    {
        return this.getMutableSet().hashCode();
    }

    @Override
    public UnmodifiableMutableSet clone()
    {
        return this;
    }

    @Override
    public MutableSet newEmpty()
    {
        return this.getMutableSet().newEmpty();
    }

    @Override
    public MutableSet tap(Procedure procedure)
    {
        this.forEach(procedure);
        return this;
    }

    @Override
    public MutableSet select(Predicate predicate)
    {
        return this.getMutableSet().select(predicate);
    }

    @Override
    public 

MutableSet selectWith(Predicate2 predicate, P parameter) { return this.getMutableSet().selectWith(predicate, parameter); } @Override public MutableSet reject(Predicate predicate) { return this.getMutableSet().reject(predicate); } @Override public

MutableSet rejectWith(Predicate2 predicate, P parameter) { return this.getMutableSet().rejectWith(predicate, parameter); } @Override public PartitionMutableSet partition(Predicate predicate) { return this.getMutableSet().partition(predicate); } @Override public

PartitionMutableSet partitionWith(Predicate2 predicate, P parameter) { return this.getMutableSet().partitionWith(predicate, parameter); } @Override public MutableSet selectInstancesOf(Class clazz) { return this.getMutableSet().selectInstancesOf(clazz); } @Override public MutableSet collect(Function function) { return this.getMutableSet().collect(function); } @Override public MutableBooleanSet collectBoolean(BooleanFunction booleanFunction) { return this.getMutableSet().collectBoolean(booleanFunction); } @Override public MutableByteSet collectByte(ByteFunction byteFunction) { return this.getMutableSet().collectByte(byteFunction); } @Override public MutableCharSet collectChar(CharFunction charFunction) { return this.getMutableSet().collectChar(charFunction); } @Override public MutableDoubleSet collectDouble(DoubleFunction doubleFunction) { return this.getMutableSet().collectDouble(doubleFunction); } @Override public MutableFloatSet collectFloat(FloatFunction floatFunction) { return this.getMutableSet().collectFloat(floatFunction); } @Override public MutableIntSet collectInt(IntFunction intFunction) { return this.getMutableSet().collectInt(intFunction); } @Override public MutableLongSet collectLong(LongFunction longFunction) { return this.getMutableSet().collectLong(longFunction); } @Override public MutableShortSet collectShort(ShortFunction shortFunction) { return this.getMutableSet().collectShort(shortFunction); } @Override public MutableSet flatCollect(Function> function) { return this.getMutableSet().flatCollect(function); } @Override public MutableSet collectWith(Function2 function, P parameter) { return this.getMutableSet().collectWith(function, parameter); } @Override public MutableSet collectIf( Predicate predicate, Function function) { return this.getMutableSet().collectIf(predicate, function); } @Override public MutableSetMultimap groupBy(Function function) { return this.getMutableSet().groupBy(function); } @Override public MutableSetMultimap groupByEach(Function> function) { return this.getMutableSet().groupByEach(function); } /** * @deprecated in 6.0. Use {@link OrderedIterable#zip(Iterable)} instead. */ @Deprecated @Override public MutableSet> zip(Iterable that) { return this.getMutableSet().zip(that); } @Override public >> R zip(Iterable that, R target) { return this.getMutableSet().zip(that, target); } /** * @deprecated in 6.0. Use {@link OrderedIterable#zipWithIndex()} instead. */ @Deprecated @Override public MutableSet> zipWithIndex() { return this.getMutableSet().zipWithIndex(); } @Override public >> R zipWithIndex(R target) { return this.getMutableSet().zipWithIndex(target); } public MutableSet union(SetIterable set) { return this.getMutableSet().union(set); } public > R unionInto(SetIterable set, R targetSet) { return this.getMutableSet().unionInto(set, targetSet); } public MutableSet intersect(SetIterable set) { return this.getMutableSet().intersect(set); } public > R intersectInto(SetIterable set, R targetSet) { return this.getMutableSet().intersectInto(set, targetSet); } public MutableSet difference(SetIterable subtrahendSet) { return this.getMutableSet().difference(subtrahendSet); } public > R differenceInto(SetIterable subtrahendSet, R targetSet) { return this.getMutableSet().differenceInto(subtrahendSet, targetSet); } public MutableSet symmetricDifference(SetIterable setB) { return this.getMutableSet().symmetricDifference(setB); } public > R symmetricDifferenceInto(SetIterable set, R targetSet) { return this.getMutableSet().symmetricDifferenceInto(set, targetSet); } public boolean isSubsetOf(SetIterable candidateSuperset) { return this.getMutableSet().isSubsetOf(candidateSuperset); } public boolean isProperSubsetOf(SetIterable candidateSuperset) { return this.getMutableSet().isProperSubsetOf(candidateSuperset); } public MutableSet> powerSet() { return this.getMutableSet().powerSet(); } public LazyIterable> cartesianProduct(SetIterable set) { return this.getMutableSet().cartesianProduct(set); } @Override public MutableSet with(T element) { throw new UnsupportedOperationException("Cannot call with() on " + this.getClass().getSimpleName()); } @Override public MutableSet without(T element) { throw new UnsupportedOperationException("Cannot call without() on " + this.getClass().getSimpleName()); } @Override public MutableSet withAll(Iterable elements) { throw new UnsupportedOperationException("Cannot call withAll() on " + this.getClass().getSimpleName()); } @Override public MutableSet withoutAll(Iterable elements) { throw new UnsupportedOperationException("Cannot call withoutAll() on " + this.getClass().getSimpleName()); } protected Object writeReplace() { return new UnmodifiableCollectionSerializationProxy(this.getMutableSet()); } public ParallelUnsortedSetIterable asParallel(ExecutorService executorService, int batchSize) { return this.getMutableSet().asParallel(executorService, batchSize); } }