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) 2015 Goldman Sachs.
 * 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 implementation of a JCF Set which provides methods matching the Smalltalk Collection protocol.
 */
public interface MutableSet
        extends UnsortedSetIterable, MutableSetIterable, Cloneable
{
    MutableSet with(T element);

    MutableSet without(T element);

    MutableSet withAll(Iterable elements);

    MutableSet withoutAll(Iterable elements);

    MutableSet newEmpty();

    MutableSet clone();

    MutableSet tap(Procedure procedure);

    MutableSet select(Predicate predicate);

    

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

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

PartitionMutableSet partitionWith(Predicate2 predicate, P parameter); MutableSet selectInstancesOf(Class clazz); MutableSet collect(Function function); MutableBooleanSet collectBoolean(BooleanFunction booleanFunction); MutableByteSet collectByte(ByteFunction byteFunction); MutableCharSet collectChar(CharFunction charFunction); MutableDoubleSet collectDouble(DoubleFunction doubleFunction); MutableFloatSet collectFloat(FloatFunction floatFunction); MutableIntSet collectInt(IntFunction intFunction); MutableLongSet collectLong(LongFunction longFunction); MutableShortSet collectShort(ShortFunction shortFunction); MutableSet collectWith(Function2 function, P parameter); MutableSet collectIf(Predicate predicate, Function function); MutableSet flatCollect(Function> function); /** * Returns an unmodifable view of the set. * The returned set will be Serializable if this set is Serializable. * * @return an unmodifiable view of this set */ MutableSet asUnmodifiable(); MutableSet asSynchronized(); /** * Returns an immutable copy of this set. If the set is immutable, it returns itself. *

* The returned set will be Serializable if this set is Serializable. */ ImmutableSet toImmutable(); MutableSetMultimap groupBy(Function function); MutableSetMultimap groupByEach(Function> function); /** * @deprecated in 6.0. Use {@link OrderedIterable#zip(Iterable)} instead. */ @Deprecated MutableSet> zip(Iterable that); /** * @deprecated in 6.0. Use {@link OrderedIterable#zipWithIndex()} instead. */ @Deprecated MutableSet> zipWithIndex(); MutableSet union(SetIterable set); MutableSet intersect(SetIterable set); MutableSet difference(SetIterable subtrahendSet); MutableSet symmetricDifference(SetIterable setB); MutableSet> powerSet(); }