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

org.eclipse.collections.api.set.MutableSet Maven / Gradle / Ivy

/*
 * Copyright (c) 2021 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.api.set;

import org.eclipse.collections.api.block.function.Function;
import org.eclipse.collections.api.block.function.Function2;
import org.eclipse.collections.api.block.function.primitive.BooleanFunction;
import org.eclipse.collections.api.block.function.primitive.ByteFunction;
import org.eclipse.collections.api.block.function.primitive.CharFunction;
import org.eclipse.collections.api.block.function.primitive.DoubleFunction;
import org.eclipse.collections.api.block.function.primitive.FloatFunction;
import org.eclipse.collections.api.block.function.primitive.IntFunction;
import org.eclipse.collections.api.block.function.primitive.LongFunction;
import org.eclipse.collections.api.block.function.primitive.ShortFunction;
import org.eclipse.collections.api.block.predicate.Predicate;
import org.eclipse.collections.api.block.predicate.Predicate2;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.factory.primitive.BooleanSets;
import org.eclipse.collections.api.factory.primitive.ByteSets;
import org.eclipse.collections.api.factory.primitive.CharSets;
import org.eclipse.collections.api.factory.primitive.DoubleSets;
import org.eclipse.collections.api.factory.primitive.FloatSets;
import org.eclipse.collections.api.factory.primitive.IntSets;
import org.eclipse.collections.api.factory.primitive.LongSets;
import org.eclipse.collections.api.factory.primitive.ShortSets;
import org.eclipse.collections.api.multimap.set.MutableSetMultimap;
import org.eclipse.collections.api.ordered.OrderedIterable;
import org.eclipse.collections.api.partition.set.PartitionMutableSet;
import org.eclipse.collections.api.set.primitive.MutableBooleanSet;
import org.eclipse.collections.api.set.primitive.MutableByteSet;
import org.eclipse.collections.api.set.primitive.MutableCharSet;
import org.eclipse.collections.api.set.primitive.MutableDoubleSet;
import org.eclipse.collections.api.set.primitive.MutableFloatSet;
import org.eclipse.collections.api.set.primitive.MutableIntSet;
import org.eclipse.collections.api.set.primitive.MutableLongSet;
import org.eclipse.collections.api.set.primitive.MutableShortSet;
import org.eclipse.collections.api.tuple.Pair;

/**
 * A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.
 */
public interface MutableSet
        extends UnsortedSetIterable, MutableSetIterable, Cloneable
{
    @Override
    default MutableSet with(T element)
    {
        this.add(element);
        return this;
    }

    @Override
    default MutableSet without(T element)
    {
        this.remove(element);
        return this;
    }

    @Override
    default MutableSet withAll(Iterable elements)
    {
        this.addAllIterable(elements);
        return this;
    }

    @Override
    default MutableSet withoutAll(Iterable elements)
    {
        this.removeAllIterable(elements);
        return this;
    }

    @Override
    MutableSet newEmpty();

    MutableSet clone();

    @Override
    MutableSet tap(Procedure procedure);

    @Override
    MutableSet select(Predicate predicate);

    @Override
    

MutableSet selectWith(Predicate2 predicate, P parameter); @Override MutableSet reject(Predicate predicate); @Override

MutableSet rejectWith(Predicate2 predicate, P parameter); @Override PartitionMutableSet partition(Predicate predicate); @Override

PartitionMutableSet partitionWith(Predicate2 predicate, P parameter); @Override MutableSet selectInstancesOf(Class clazz); @Override MutableSet collect(Function function); @Override default MutableBooleanSet collectBoolean(BooleanFunction booleanFunction) { return this.collectBoolean(booleanFunction, BooleanSets.mutable.empty()); } @Override default MutableByteSet collectByte(ByteFunction byteFunction) { return this.collectByte(byteFunction, ByteSets.mutable.empty()); } @Override default MutableCharSet collectChar(CharFunction charFunction) { return this.collectChar(charFunction, CharSets.mutable.empty()); } @Override default MutableDoubleSet collectDouble(DoubleFunction doubleFunction) { return this.collectDouble(doubleFunction, DoubleSets.mutable.empty()); } @Override default MutableFloatSet collectFloat(FloatFunction floatFunction) { return this.collectFloat(floatFunction, FloatSets.mutable.empty()); } @Override default MutableIntSet collectInt(IntFunction intFunction) { return this.collectInt(intFunction, IntSets.mutable.empty()); } @Override default MutableLongSet collectLong(LongFunction longFunction) { return this.collectLong(longFunction, LongSets.mutable.empty()); } @Override default MutableShortSet collectShort(ShortFunction shortFunction) { return this.collectShort(shortFunction, ShortSets.mutable.empty()); } @Override MutableSet collectWith(Function2 function, P parameter); @Override MutableSet collectIf(Predicate predicate, Function function); @Override MutableSet flatCollect(Function> function); /** * @since 9.2 */ @Override default MutableSet flatCollectWith(Function2> function, P parameter) { return this.flatCollect(each -> function.apply(each, parameter)); } /** * Returns an unmodifiable view of the set. * * @return an unmodifiable view of this set */ @Override MutableSet asUnmodifiable(); @Override MutableSet asSynchronized(); /** * Returns an immutable copy of this set. If the set is immutable, it returns itself. */ @Override ImmutableSet toImmutable(); @Override MutableSetMultimap groupBy(Function function); @Override MutableSetMultimap groupByEach(Function> function); /** * @deprecated in 6.0. Use {@link OrderedIterable#zip(Iterable)} instead. */ @Override @Deprecated MutableSet> zip(Iterable that); /** * @deprecated in 6.0. Use {@link OrderedIterable#zipWithIndex()} instead. */ @Override @Deprecated MutableSet> zipWithIndex(); @Override MutableSet union(SetIterable set); @Override MutableSet intersect(SetIterable set); @Override MutableSet difference(SetIterable subtrahendSet); @Override MutableSet symmetricDifference(SetIterable setB); @Override MutableSet> powerSet(); /** * Converts the MutableSet to the default ImmutableSet implementation. * * @since 11.0 */ @Override default ImmutableSet toImmutableSet() { return this.toImmutable(); } }