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

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

There is a newer version: 12.0.0.M3
Show newest version
/*
 * 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.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.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
    MutableSet with(T element);

    @Override
    MutableSet without(T element);

    @Override
    MutableSet withAll(Iterable elements);

    @Override
    MutableSet withoutAll(Iterable elements);

    @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 MutableBooleanSet collectBoolean(BooleanFunction booleanFunction); @Override MutableByteSet collectByte(ByteFunction byteFunction); @Override MutableCharSet collectChar(CharFunction charFunction); @Override MutableDoubleSet collectDouble(DoubleFunction doubleFunction); @Override MutableFloatSet collectFloat(FloatFunction floatFunction); @Override MutableIntSet collectInt(IntFunction intFunction); @Override MutableLongSet collectLong(LongFunction longFunction); @Override MutableShortSet collectShort(ShortFunction shortFunction); @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(); }