Uses of Interface
org.eclipse.collections.api.set.MutableSet
Packages that use MutableSet
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for Bag API.
This package contains interfaces for BiMap API.
This package contains Factory API for
ImmutableHashingStrategySetFactory and MutableHashingStrategySetFactory.This package contains interfaces for map API which enhance the performance and functionality of
MapThis package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains mutable and immutable sorted map interfaces.
This package contains interfaces for
SetMultimap.This package contains interfaces for
PartitionSet.This package contains interfaces for set API which enhance the performance and functionality of
Set.This package contains API for mutable and immutable primitive sets.
This package contains implementations for Eclipse Collections API.
This package contains implementations of the
ImmutableBag interface.This package contains implementations of the
MutableBag interface.This package contains implementations of the
MutableBiMap interface.This package contains factory implementations for
Function, Predicate, SerializableComparator and Procedure.This package contains implementations of the
MutableCollection interface.This package contains static utilities for creating mutable and immutable collection factories.
This package contains implementations of the
Iterator interface.This package contains implementations of the
ListIterable interface.This package contains implementations of the
MutableList interface.This package contains implementations of the
FixedSizeMap interface.This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableMap interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap interface.This package contains mutable map implementations backed by hashtables that rely on
HashingStrategys provided by
the developer to compute the hashCode and equals for the objects stored in the map.This package contains implementations of the
SetMultimap interface.This package contains implementations of the
SetMultimap interface which use a set with user-defined HashingStrategy as their underlying store for the multiple values of a given key.This package contains implementations of the
PartitionSet interface.This package contains implementations of the
PartitionMutableSet interface.This package contains implementations of
FixedSizeSet.This package contains implementations of
MutableSet.This package contains implementations of the mutable primitive set interfaces.
This package contains implementations of sets with user defined
HashingStrategys.This package contains implementations of the
ImmutableStack interface.This package contains implementations of the
MutableStack interface.This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of MutableSet in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableSet -
Uses of MutableSet in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return MutableSetModifier and TypeMethodDescriptiondefault MutableSet<T> MutableBag.selectUnique()MutableBag.zipWithIndex()Deprecated.in 6.0. -
Uses of MutableSet in org.eclipse.collections.api.bimap
Methods in org.eclipse.collections.api.bimap that return MutableSetModifier and TypeMethodDescription<P> MutableSet<V> MutableBiMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <S> MutableSet<S> MutableBiMap.selectInstancesOf(Class<S> clazz) <P> MutableSet<V> MutableBiMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <S> MutableSet<Pair<V, S>> Deprecated.in 8.0.MutableBiMap.zipWithIndex()Deprecated.in 8.0. -
Uses of MutableSet in org.eclipse.collections.api.factory.set
Methods in org.eclipse.collections.api.factory.set that return MutableSetModifier and TypeMethodDescription<T> MutableSet<T> MutableSetFactory.empty()<T> MutableSet<T> FixedSizeSetFactory.fromStream(Stream<? extends T> stream) <T> MutableSet<T> MutableSetFactory.fromStream(Stream<? extends T> stream) default <T> MutableSet<T> MutableSetFactory.of()Same asMutableSetFactory.empty().default <T> MutableSet<T> MutableSetFactory.of(T... items) Same asMutableSetFactory.with(Object[]).<T> MutableSet<T> default <T> MutableSet<T> Same asMutableSetFactory.withAll(Iterable).default <T> MutableSet<T> MutableSetFactory.ofInitialCapacity(int capacity) Same asMutableSetFactory.empty().default <T> MutableSet<T> MutableSetFactory.with()Same asMutableSetFactory.empty().<T> MutableSet<T> MutableSetFactory.with(T... items) <T> MutableSet<T> <T> MutableSet<T> <T> MutableSet<T> MutableSetFactory.withInitialCapacity(int capacity) Same asMutableSetFactory.empty(). -
Uses of MutableSet in org.eclipse.collections.api.factory.set.strategy
Methods in org.eclipse.collections.api.factory.set.strategy that return MutableSetModifier and TypeMethodDescriptiondefault <T,V> MutableSet <T> MutableHashingStrategySetFactory.fromFunction(Function<? super T, ? extends V> function) Since 11.1<T> MutableSet<T> MutableHashingStrategySetFactory.of(HashingStrategy<? super T> hashingStrategy) <T> MutableSet<T> MutableHashingStrategySetFactory.of(HashingStrategy<? super T> hashingStrategy, T... items) <T> MutableSet<T> MutableHashingStrategySetFactory.ofAll(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> items) <T> MutableSet<T> MutableHashingStrategySetFactory.ofInitialCapacity(HashingStrategy<? super T> hashingStrategy, int capacity) <T> MutableSet<T> MutableHashingStrategySetFactory.with(HashingStrategy<? super T> hashingStrategy) <T> MutableSet<T> MutableHashingStrategySetFactory.with(HashingStrategy<? super T> hashingStrategy, T... items) <T> MutableSet<T> MutableHashingStrategySetFactory.withAll(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> items) <T> MutableSet<T> MutableHashingStrategySetFactory.withInitialCapacity(HashingStrategy<? super T> hashingStrategy, int capacity) -
Uses of MutableSet in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableSet -
Uses of MutableSet in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableSet -
Uses of MutableSet in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableSet -
Uses of MutableSet in org.eclipse.collections.api.multimap.set
Methods in org.eclipse.collections.api.multimap.set that return MutableSetModifier and TypeMethodDescriptionMutableSetMultimap.getIfAbsentPutAll(K key, Iterable<? extends V> values) MutableSetMultimap.replaceValues(K key, Iterable<? extends V> values) Method parameters in org.eclipse.collections.api.multimap.set with type arguments of type MutableSetModifier and TypeMethodDescriptionvoidMutableSetMultimap.forEachKeyMutableSet(Procedure2<? super K, ? super MutableSet<V>> procedure) -
Uses of MutableSet in org.eclipse.collections.api.partition.set
Methods in org.eclipse.collections.api.partition.set that return MutableSetModifier and TypeMethodDescriptionPartitionMutableSet.getRejected()PartitionMutableSet.getSelected() -
Uses of MutableSet in org.eclipse.collections.api.set
Subinterfaces of MutableSet in org.eclipse.collections.api.setModifier and TypeInterfaceDescriptioninterfaceFixedSizeSet<T>A FixedSizeSet is a set that may be mutated, but cannot grow or shrink in size.interfaceA MultiReaderSet provides thread-safe iteration for a set through methodswithReadLockAndDelegate()andwithWriteLockAndDelegate().Methods in org.eclipse.collections.api.set that return MutableSetModifier and TypeMethodDescriptionMutableSet.asSynchronized()MutableSet.asUnmodifiable()Returns an unmodifiable view of the set.MutableSet.clone()<V> MutableSet<V> <V> MutableSet<V> <P,V> MutableSet <V> MutableSet.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) MutableSet.difference(SetIterable<? extends T> subtrahendSet) <V> MutableSet<V> MutableSet.flatCollect(Function<? super T, ? extends Iterable<V>> function) default <P,V> MutableSet <V> MutableSet.flatCollectWith(Function2<? super T, ? super P, ? extends Iterable<V>> function, P parameter) MutableSet.intersect(SetIterable<? extends T> set) MutableSet.newEmpty()MutableSet.powerSet()<P> MutableSet<T> MutableSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <S> MutableSet<S> MutableSet.selectInstancesOf(Class<S> clazz) <P> MutableSet<T> MutableSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) MutableSet.symmetricDifference(SetIterable<? extends T> setB) MutableSet.union(SetIterable<? extends T> set) default MutableSet<T> default MutableSet<T> default MutableSet<T> FixedSizeSet.withoutAll(Iterable<? extends T> elements) default MutableSet<T> MutableSet.withoutAll(Iterable<? extends T> elements) <S> MutableSet<Pair<T, S>> Deprecated.in 6.0.MutableSet.zipWithIndex()Deprecated.in 6.0.Method parameters in org.eclipse.collections.api.set with type arguments of type MutableSetModifier and TypeMethodDescriptionvoidMultiReaderSet.withReadLockAndDelegate(Procedure<? super MutableSet<T>> procedure) voidMultiReaderSet.withWriteLockAndDelegate(Procedure<? super MutableSet<T>> procedure) -
Uses of MutableSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return MutableSetModifier and TypeMethodDescriptionMutableBooleanSet.boxed()MutableByteSet.boxed()MutableCharSet.boxed()MutableDoubleSet.boxed()MutableFloatSet.boxed()MutableIntSet.boxed()MutableLongSet.boxed()MutableShortSet.boxed()<V> MutableSet<V> MutableBooleanSet.collect(BooleanToObjectFunction<? extends V> function) <V> MutableSet<V> MutableByteSet.collect(ByteToObjectFunction<? extends V> function) <V> MutableSet<V> MutableCharSet.collect(CharToObjectFunction<? extends V> function) <V> MutableSet<V> MutableDoubleSet.collect(DoubleToObjectFunction<? extends V> function) <V> MutableSet<V> MutableFloatSet.collect(FloatToObjectFunction<? extends V> function) <V> MutableSet<V> MutableIntSet.collect(IntToObjectFunction<? extends V> function) <V> MutableSet<V> MutableLongSet.collect(LongToObjectFunction<? extends V> function) <V> MutableSet<V> MutableShortSet.collect(ShortToObjectFunction<? extends V> function) -
Uses of MutableSet in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl that return MutableSet -
Uses of MutableSet in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag that return MutableSet -
Uses of MutableSet in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable that return MutableSet -
Uses of MutableSet in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable that return MutableSetModifier and TypeMethodDescriptionMultiReaderHashBag.selectUnique()MultiReaderHashBag.UntouchableMutableBag.selectUnique()SynchronizedBag.selectUnique()UnmodifiableBag.selectUnique()AbstractMutableBag.zipWithIndex()Deprecated.in 6.0.MultiReaderHashBag.UntouchableMutableBag.zipWithIndex()Deprecated.in 6.0.MultiReaderHashBag.zipWithIndex()Deprecated.in 6.0.SynchronizedBag.zipWithIndex()Deprecated.in 6.0.UnmodifiableBag.zipWithIndex()Deprecated.in 6.0. -
Uses of MutableSet in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap that return MutableSet -
Uses of MutableSet in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable that return MutableSetModifier and TypeMethodDescription<P> MutableSet<V> AbstractMutableBiMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableSet<V> SynchronizedBiMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableSet<V> UnmodifiableBiMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <S> MutableSet<S> AbstractMutableBiMap.selectInstancesOf(Class<S> clazz) <S> MutableSet<S> SynchronizedBiMap.selectInstancesOf(Class<S> clazz) <S> MutableSet<S> UnmodifiableBiMap.selectInstancesOf(Class<S> clazz) <P> MutableSet<V> AbstractMutableBiMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableSet<V> SynchronizedBiMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableSet<V> UnmodifiableBiMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableBiMap.toSet()<S> MutableSet<Pair<V, S>> Deprecated.in 8.0.<S> MutableSet<Pair<V, S>> Deprecated.in 8.0.<S> MutableSet<Pair<V, S>> AbstractMutableBiMap.zipWithIndex()Deprecated.in 8.0.SynchronizedBiMap.zipWithIndex()Deprecated.in 8.0.UnmodifiableBiMap.zipWithIndex() -
Uses of MutableSet in org.eclipse.collections.impl.block.factory
Classes in org.eclipse.collections.impl.block.factory that implement interfaces with type arguments of type MutableSetMethods in org.eclipse.collections.impl.block.factory that return MutableSetMethods in org.eclipse.collections.impl.block.factory that return types with arguments of type MutableSet -
Uses of MutableSet in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection that return MutableSet -
Uses of MutableSet in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable that return MutableSetModifier and TypeMethodDescriptionAbstractCollectionAdapter.toSet()AbstractMultiReaderMutableCollection.toSet()AbstractMultiReaderMutableCollection.UntouchableMutableCollection.toSet()AbstractUnmodifiableMutableCollection.toSet()static <E> MutableSet<E> -
Uses of MutableSet in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector that return types with arguments of type MutableSetModifier and TypeMethodDescriptionstatic <T> Collector<T, ?, MutableSet<T>> Collectors2.toSet()Returns the elements as a MutableSet. -
Uses of MutableSet in org.eclipse.collections.impl.factory
Methods in org.eclipse.collections.impl.factory that return MutableSetModifier and TypeMethodDescriptionstatic <T> MutableSet<T> static <E> MutableSet<E> Sets.difference(Set<? extends E> minuendSet, Set<? extends E> subtrahendSet) static <E> MutableSet<E> Sets.differenceAll(Set<? extends E>... sets) static <E> MutableSet<E> static <E> MutableSet<E> Sets.intersectAll(Set<? extends E>... sets) static <T> MutableSet<T> Iterables.mSet()static <T> MutableSet<T> Iterables.mSet(T... elements) private static <E> MutableSet<E> static <T> MutableSet<MutableSet<T>> static <E> MutableSet<E> Sets.symmetricDifference(Set<? extends E> setA, Set<? extends E> setB) static <E> MutableSet<E> static <E> MutableSet<E> Methods in org.eclipse.collections.impl.factory that return types with arguments of type MutableSet -
Uses of MutableSet in org.eclipse.collections.impl.lazy.iterator
Fields in org.eclipse.collections.impl.lazy.iterator declared as MutableSet -
Uses of MutableSet in org.eclipse.collections.impl.lazy.parallel
Methods in org.eclipse.collections.impl.lazy.parallel that return MutableSet -
Uses of MutableSet in org.eclipse.collections.impl.list
Methods in org.eclipse.collections.impl.list that return MutableSetModifier and TypeMethodDescriptionInterval.toSet()static MutableSet<Integer> Interval.toSet(int from, int to) Returns a Set representing the Integer values from the value from to the value to. -
Uses of MutableSet in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return MutableSet -
Uses of MutableSet in org.eclipse.collections.impl.map.fixed
Methods in org.eclipse.collections.impl.map.fixed that return MutableSet -
Uses of MutableSet in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableSetModifier and TypeMethodDescriptionImmutableByteObjectEmptyMap.toSet()ImmutableByteObjectHashMap.toSet()ImmutableByteObjectSingletonMap.toSet()ImmutableCharObjectEmptyMap.toSet()ImmutableCharObjectHashMap.toSet()ImmutableCharObjectSingletonMap.toSet()ImmutableDoubleObjectEmptyMap.toSet()ImmutableDoubleObjectHashMap.toSet()ImmutableDoubleObjectSingletonMap.toSet()ImmutableFloatObjectEmptyMap.toSet()ImmutableFloatObjectHashMap.toSet()ImmutableFloatObjectSingletonMap.toSet()ImmutableIntObjectEmptyMap.toSet()ImmutableIntObjectHashMap.toSet()ImmutableIntObjectSingletonMap.toSet()ImmutableLongObjectEmptyMap.toSet()ImmutableLongObjectHashMap.toSet()ImmutableLongObjectSingletonMap.toSet()ImmutableShortObjectEmptyMap.toSet()ImmutableShortObjectHashMap.toSet()ImmutableShortObjectSingletonMap.toSet() -
Uses of MutableSet in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable that return MutableSetModifier and TypeMethodDescriptionUnmodifiableMutableMap.toSet()AbstractMutableMap.zipWithIndex()Deprecated.in 6.0.SynchronizedMutableMap.zipWithIndex()Deprecated.in 6.0.UnmodifiableMutableMap.zipWithIndex()Deprecated.in 6.0.Methods in org.eclipse.collections.impl.map.mutable with parameters of type MutableSetModifier and TypeMethodDescriptionprivate voidUnifiedMap.KeySet.chainedAddToSet(Object[] chain, MutableSet<K> replace) -
Uses of MutableSet in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableSetModifier and TypeMethodDescriptionAbstractMutableByteKeySet.boxed()AbstractMutableCharKeySet.boxed()AbstractMutableDoubleKeySet.boxed()AbstractMutableFloatKeySet.boxed()AbstractMutableIntKeySet.boxed()AbstractMutableLongKeySet.boxed()AbstractMutableShortKeySet.boxed()<V> MutableSet<V> AbstractMutableByteKeySet.collect(ByteToObjectFunction<? extends V> function) <V> MutableSet<V> AbstractMutableCharKeySet.collect(CharToObjectFunction<? extends V> function) <V> MutableSet<V> AbstractMutableDoubleKeySet.collect(DoubleToObjectFunction<? extends V> function) <V> MutableSet<V> AbstractMutableFloatKeySet.collect(FloatToObjectFunction<? extends V> function) <V> MutableSet<V> AbstractMutableIntKeySet.collect(IntToObjectFunction<? extends V> function) <V> MutableSet<V> AbstractMutableLongKeySet.collect(LongToObjectFunction<? extends V> function) <V> MutableSet<V> AbstractMutableShortKeySet.collect(ShortToObjectFunction<? extends V> function) ByteObjectHashMap.toSet()CharObjectHashMap.toSet()DoubleObjectHashMap.toSet()FloatObjectHashMap.toSet()IntObjectHashMap.toSet()LongObjectHashMap.toSet()ShortObjectHashMap.toSet()SynchronizedByteObjectMap.toSet()SynchronizedCharObjectMap.toSet()SynchronizedDoubleObjectMap.toSet()SynchronizedFloatObjectMap.toSet()SynchronizedIntObjectMap.toSet()SynchronizedLongObjectMap.toSet()SynchronizedShortObjectMap.toSet()UnmodifiableByteObjectMap.toSet()UnmodifiableCharObjectMap.toSet()UnmodifiableDoubleObjectMap.toSet()UnmodifiableFloatObjectMap.toSet()UnmodifiableIntObjectMap.toSet()UnmodifiableLongObjectMap.toSet()UnmodifiableShortObjectMap.toSet()ByteObjectHashMap.zipWithIndex()Deprecated.in 7.0.CharObjectHashMap.zipWithIndex()Deprecated.in 7.0.DoubleObjectHashMap.zipWithIndex()Deprecated.in 7.0.FloatObjectHashMap.zipWithIndex()Deprecated.in 7.0.IntObjectHashMap.zipWithIndex()Deprecated.in 7.0.LongObjectHashMap.zipWithIndex()Deprecated.in 7.0.ShortObjectHashMap.zipWithIndex()Deprecated.in 7.0.SynchronizedByteObjectMap.zipWithIndex()Deprecated.in 7.0.SynchronizedCharObjectMap.zipWithIndex()Deprecated.in 7.0.SynchronizedDoubleObjectMap.zipWithIndex()Deprecated.in 7.0.SynchronizedFloatObjectMap.zipWithIndex()Deprecated.in 7.0.SynchronizedIntObjectMap.zipWithIndex()Deprecated.in 7.0.SynchronizedLongObjectMap.zipWithIndex()Deprecated.in 7.0.SynchronizedShortObjectMap.zipWithIndex()Deprecated.in 7.0.UnmodifiableByteObjectMap.zipWithIndex()Deprecated.in 7.0.UnmodifiableCharObjectMap.zipWithIndex()Deprecated.in 7.0.UnmodifiableDoubleObjectMap.zipWithIndex()Deprecated.in 7.0.UnmodifiableFloatObjectMap.zipWithIndex()Deprecated.in 7.0.UnmodifiableIntObjectMap.zipWithIndex()Deprecated.in 7.0.UnmodifiableLongObjectMap.zipWithIndex()Deprecated.in 7.0.UnmodifiableShortObjectMap.zipWithIndex()Deprecated.in 7.0. -
Uses of MutableSet in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableSet -
Uses of MutableSet in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableSet -
Uses of MutableSet in org.eclipse.collections.impl.map.strategy.mutable
Methods in org.eclipse.collections.impl.map.strategy.mutable with parameters of type MutableSetModifier and TypeMethodDescriptionprivate voidUnifiedMapWithHashingStrategy.KeySet.chainedAddToSet(Object[] chain, MutableSet<K> replace) -
Uses of MutableSet in org.eclipse.collections.impl.multimap.set
Subclasses with type arguments of type MutableSet in org.eclipse.collections.impl.multimap.setModifier and TypeClassDescriptionclassfinal classA Multimap that is optimized for parallel writes, but is not protected for concurrent reads.Methods in org.eclipse.collections.impl.multimap.set that return MutableSetModifier and TypeMethodDescriptionprotected MutableSet<V> MultiReaderUnifiedSetMultimap.createCollection()protected MutableSet<V> SynchronizedPutUnifiedSetMultimap.createCollection()protected MutableSet<V> UnifiedSetMultimap.createCollection()SynchronizedSetMultimap.getIfAbsentPutAll(K key, Iterable<? extends V> values) SynchronizedSetMultimap.replaceValues(K key, Iterable<? extends V> values) Methods in org.eclipse.collections.impl.multimap.set that return types with arguments of type MutableSetModifier and TypeMethodDescriptionprotected AbstractMutableMultimap<K, V, MutableSet<V>> ImmutableSetMultimapImpl.ImmutableSetMultimapSerializationProxy.createEmptyMutableMultimap()protected MutableMap<K, MutableSet<V>> MultiReaderUnifiedSetMultimap.createMap()protected MutableMap<K, MutableSet<V>> UnifiedSetMultimap.createMap()protected MutableMap<K, MutableSet<V>> MultiReaderUnifiedSetMultimap.createMapWithKeyCount(int keyCount) protected MutableMap<K, MutableSet<V>> UnifiedSetMultimap.createMapWithKeyCount(int keyCount) Method parameters in org.eclipse.collections.impl.multimap.set with type arguments of type MutableSetModifier and TypeMethodDescriptionvoidAbstractMutableSetMultimap.forEachKeyMutableSet(Procedure2<? super K, ? super MutableSet<V>> procedure) voidSynchronizedPutUnifiedSetMultimap.forEachKeyMutableSet(Procedure2<? super K, ? super MutableSet<V>> procedure) voidSynchronizedSetMultimap.forEachKeyMutableSet(Procedure2<? super K, ? super MutableSet<V>> procedure) -
Uses of MutableSet in org.eclipse.collections.impl.multimap.set.strategy
Methods in org.eclipse.collections.impl.multimap.set.strategy that return types with arguments of type MutableSetModifier and TypeMethodDescriptionprotected MutableMap<K, MutableSet<V>> UnifiedSetWithHashingStrategyMultimap.createMap()protected MutableMap<K, MutableSet<V>> UnifiedSetWithHashingStrategyMultimap.createMapWithKeyCount(int keyCount) -
Uses of MutableSet in org.eclipse.collections.impl.partition.set
Fields in org.eclipse.collections.impl.partition.set declared as MutableSetModifier and TypeFieldDescriptionprivate final MutableSet<T> PartitionUnifiedSet.rejectedprivate final MutableSet<T> PartitionUnifiedSet.selectedMethods in org.eclipse.collections.impl.partition.set that return MutableSetModifier and TypeMethodDescriptionPartitionUnifiedSet.getRejected()PartitionUnifiedSet.getSelected() -
Uses of MutableSet in org.eclipse.collections.impl.partition.set.strategy
Fields in org.eclipse.collections.impl.partition.set.strategy declared as MutableSetModifier and TypeFieldDescriptionprivate final MutableSet<T> PartitionUnifiedSetWithHashingStrategy.rejectedprivate final MutableSet<T> PartitionUnifiedSetWithHashingStrategy.selectedMethods in org.eclipse.collections.impl.partition.set.strategy that return MutableSetModifier and TypeMethodDescriptionPartitionUnifiedSetWithHashingStrategy.getRejected()PartitionUnifiedSetWithHashingStrategy.getSelected() -
Uses of MutableSet in org.eclipse.collections.impl.set
Classes in org.eclipse.collections.impl.set that implement MutableSetMethods in org.eclipse.collections.impl.set that return MutableSetModifier and TypeMethodDescriptionAbstractUnifiedSet.asSynchronized()AbstractUnifiedSet.asUnmodifiable()abstract MutableSet<T> AbstractUnifiedSet.clone()AbstractUnifiedSet.difference(SetIterable<? extends T> subtrahendSet) AbstractUnifiedSet.intersect(SetIterable<? extends T> set) abstract MutableSet<T> AbstractUnifiedSet.newEmpty(int size) AbstractUnifiedSet.powerSet()AbstractUnifiedSet.symmetricDifference(SetIterable<? extends T> setB) AbstractUnifiedSet.union(SetIterable<? extends T> set) <S> MutableSet<Pair<T, S>> Deprecated.in 6.0.AbstractUnifiedSet.zipWithIndex()Deprecated.in 6.0. -
Uses of MutableSet in org.eclipse.collections.impl.set.fixed
Classes in org.eclipse.collections.impl.set.fixed that implement MutableSetModifier and TypeClassDescription(package private) class(package private) final classDoubletonSet<T>(package private) final classEmptySet<T>This class is a memory efficient list with no elements.(package private) final class(package private) classSingletonSet<T>(package private) final classTripletonSet<T>Methods in org.eclipse.collections.impl.set.fixed that return MutableSetModifier and TypeMethodDescription<T> MutableSet<T> FixedSizeSetFactoryImpl.fromStream(Stream<? extends T> stream) <T> MutableSet<T> <T> MutableSet<T> AbstractMemoryEfficientMutableSet.withoutAll(Iterable<? extends T> elements) <S> MutableSet<Pair<T, S>> Deprecated.in 6.0.EmptySet.zipWithIndex()Deprecated.in 6.0. -
Uses of MutableSet in org.eclipse.collections.impl.set.mutable
Classes in org.eclipse.collections.impl.set.mutable that implement MutableSetModifier and TypeClassDescriptionclassfinal classMultiReadUnifiedSet provides a thread-safe wrapper around a UnifiedSet, using a ReentrantReadWriteLock.(package private) static final classfinal classSetAdapter<T>This class provides a MutableSet wrapper around a JDK Collections Set interface instance.classA synchronized view of aMutableSet.classUnifiedSet<T>classAn unmodifiable view of a list.Fields in org.eclipse.collections.impl.set.mutable declared as MutableSetMethods in org.eclipse.collections.impl.set.mutable that return MutableSetModifier and TypeMethodDescriptionstatic <E> MutableSet<E> AbstractMutableSet.asSynchronized()MultiReaderUnifiedSet.asSynchronized()MultiReaderUnifiedSet.UntouchableMutableSet.asSynchronized()SetAdapter.asSynchronized()SynchronizedMutableSet.asSynchronized()UnmodifiableMutableSet.asSynchronized()AbstractMutableSet.asUnmodifiable()MultiReaderUnifiedSet.asUnmodifiable()MultiReaderUnifiedSet.UntouchableMutableSet.asUnmodifiable()SetAdapter.asUnmodifiable()SynchronizedMutableSet.asUnmodifiable()UnmodifiableMutableSet.asUnmodifiable()AbstractMutableSet.clone()MultiReaderUnifiedSet.UntouchableMutableSet.clone()SetAdapter.clone()SynchronizedMutableSet.clone()<V> MutableSet<V> <V> MutableSet<V> <V> MutableSet<V> <V> MutableSet<V> <V> MutableSet<V> <V> MutableSet<V> <V> MutableSet<V> AbstractMutableSet.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <V> MutableSet<V> MultiReaderUnifiedSet.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <V> MutableSet<V> MultiReaderUnifiedSet.UntouchableMutableSet.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <V> MutableSet<V> <V> MutableSet<V> SynchronizedMutableSet.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <V> MutableSet<V> UnmodifiableMutableSet.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <P,V> MutableSet <V> AbstractMutableSet.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) <P,V> MutableSet <V> MultiReaderUnifiedSet.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) <P,V> MutableSet <V> MultiReaderUnifiedSet.UntouchableMutableSet.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) <P,V> MutableSet <V> SetAdapter.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) <P,V> MutableSet <V> SynchronizedMutableSet.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) <P,A> MutableSet <A> UnmodifiableMutableSet.collectWith(Function2<? super T, ? super P, ? extends A> function, P parameter) AbstractMutableSet.difference(SetIterable<? extends T> subtrahendSet) MultiReaderUnifiedSet.difference(SetIterable<? extends T> subtrahendSet) MultiReaderUnifiedSet.UntouchableMutableSet.difference(SetIterable<? extends T> subtrahendSet) SetAdapter.difference(SetIterable<? extends T> subtrahendSet) SynchronizedMutableSet.difference(SetIterable<? extends T> subtrahendSet) UnmodifiableMutableSet.difference(SetIterable<? extends T> subtrahendSet) <T> MutableSet<T> MutableSetFactoryImpl.empty()<V> MutableSet<V> AbstractMutableSet.flatCollect(Function<? super T, ? extends Iterable<V>> function) <V> MutableSet<V> MultiReaderUnifiedSet.flatCollect(Function<? super T, ? extends Iterable<V>> function) <V> MutableSet<V> MultiReaderUnifiedSet.UntouchableMutableSet.flatCollect(Function<? super T, ? extends Iterable<V>> function) <V> MutableSet<V> SetAdapter.flatCollect(Function<? super T, ? extends Iterable<V>> function) <V> MutableSet<V> SynchronizedMutableSet.flatCollect(Function<? super T, ? extends Iterable<V>> function) <V> MutableSet<V> UnmodifiableMutableSet.flatCollect(Function<? super T, ? extends Iterable<V>> function) <T> MutableSet<T> MutableSetFactoryImpl.fromStream(Stream<? extends T> stream) protected MutableSet<T> MultiReaderUnifiedSet.getDelegate()protected MutableSet<T> MultiReaderUnifiedSet.UntouchableMutableSet.getDelegate()private MutableSet<T> SynchronizedMutableSet.getMutableSet()protected MutableSet<T> UnmodifiableMutableSet.getMutableSet()AbstractMutableSet.intersect(SetIterable<? extends T> set) MultiReaderUnifiedSet.intersect(SetIterable<? extends T> set) MultiReaderUnifiedSet.UntouchableMutableSet.intersect(SetIterable<? extends T> set) SetAdapter.intersect(SetIterable<? extends T> set) SynchronizedMutableSet.intersect(SetIterable<? extends T> set) UnmodifiableMutableSet.intersect(SetIterable<? extends T> set) AbstractMutableSet.newEmpty()MultiReaderUnifiedSet.UntouchableMutableSet.newEmpty()SetAdapter.newEmpty()Deprecated.useUnifiedSet.newSet()instead (inlineable)SynchronizedMutableSet.newEmpty()UnmodifiableMutableSet.newEmpty()protected <K> MutableSet<K> AbstractMutableSet.newEmptySameSize()AbstractMutableSet.powerSet()MultiReaderUnifiedSet.powerSet()MultiReaderUnifiedSet.UntouchableMutableSet.powerSet()SetAdapter.powerSet()SynchronizedMutableSet.powerSet()UnmodifiableMutableSet.powerSet()<P> MutableSet<T> AbstractMutableSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> MultiReaderUnifiedSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> MultiReaderUnifiedSet.UntouchableMutableSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> SetAdapter.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> SynchronizedMutableSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> UnmodifiableMutableSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <S> MutableSet<S> AbstractMutableSet.selectInstancesOf(Class<S> clazz) <S> MutableSet<S> MultiReaderUnifiedSet.selectInstancesOf(Class<S> clazz) <S> MutableSet<S> MultiReaderUnifiedSet.UntouchableMutableSet.selectInstancesOf(Class<S> clazz) <S> MutableSet<S> SetAdapter.selectInstancesOf(Class<S> clazz) <S> MutableSet<S> SynchronizedMutableSet.selectInstancesOf(Class<S> clazz) <S> MutableSet<S> UnmodifiableMutableSet.selectInstancesOf(Class<S> clazz) <P> MutableSet<T> AbstractMutableSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> MultiReaderUnifiedSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> MultiReaderUnifiedSet.UntouchableMutableSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> SetAdapter.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> SynchronizedMutableSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> UnmodifiableMutableSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) AbstractMutableSet.symmetricDifference(SetIterable<? extends T> setB) MultiReaderUnifiedSet.symmetricDifference(SetIterable<? extends T> setB) MultiReaderUnifiedSet.UntouchableMutableSet.symmetricDifference(SetIterable<? extends T> setB) SetAdapter.symmetricDifference(SetIterable<? extends T> setB) SynchronizedMutableSet.symmetricDifference(SetIterable<? extends T> setB) UnmodifiableMutableSet.symmetricDifference(SetIterable<? extends T> setB) AbstractMutableSet.union(SetIterable<? extends T> set) MultiReaderUnifiedSet.union(SetIterable<? extends T> set) MultiReaderUnifiedSet.UntouchableMutableSet.union(SetIterable<? extends T> set) SetAdapter.union(SetIterable<? extends T> set) SynchronizedMutableSet.union(SetIterable<? extends T> set) UnmodifiableMutableSet.union(SetIterable<? extends T> set) This must be implemented this way to guarantee a reference to the delegate doesn't escape.<T> MutableSet<T> MutableSetFactoryImpl.with(T... items) <T> MutableSet<T> <T> MutableSet<T> MutableSetFactoryImpl.withInitialCapacity(int capacity) MultiReaderUnifiedSet.UntouchableMutableSet.withoutAll(Iterable<? extends T> elements) SynchronizedMutableSet.withoutAll(Iterable<? extends T> elements) UnmodifiableMutableSet.withoutAll(Iterable<? extends T> elements) <S> MutableSet<Pair<T, S>> Deprecated.in 6.0.<S> MutableSet<Pair<T, S>> Deprecated.in 6.0.<S> MutableSet<Pair<T, S>> Deprecated.in 6.0.<S> MutableSet<Pair<T, S>> Deprecated.in 6.0.<S> MutableSet<Pair<T, S>> Deprecated.in 6.0.<S> MutableSet<Pair<T, S>> Deprecated.in 6.0.AbstractMutableSet.zipWithIndex()Deprecated.in 6.0.MultiReaderUnifiedSet.UntouchableMutableSet.zipWithIndex()Deprecated.in 6.0.MultiReaderUnifiedSet.zipWithIndex()Deprecated.in 6.0.SetAdapter.zipWithIndex()Deprecated.in 6.0.SynchronizedMutableSet.zipWithIndex()Deprecated.in 6.0.UnmodifiableMutableSet.zipWithIndex()Deprecated.in 6.0.Method parameters in org.eclipse.collections.impl.set.mutable with type arguments of type MutableSetModifier and TypeMethodDescriptionvoidMultiReaderUnifiedSet.withReadLockAndDelegate(Procedure<? super MutableSet<T>> procedure) voidMultiReaderUnifiedSet.withWriteLockAndDelegate(Procedure<? super MutableSet<T>> procedure) Constructors in org.eclipse.collections.impl.set.mutable with parameters of type MutableSetModifierConstructorDescriptionprivateMultiReaderUnifiedSet(MutableSet<T> newDelegate) privateMultiReaderUnifiedSet(MutableSet<T> newDelegate, ReadWriteLock newLock) (package private)(package private)SynchronizedMutableSet(MutableSet<T> set, Object newLock) (package private)UnmodifiableMutableSet(MutableSet<? extends T> mutableSet) privateUntouchableMutableSet(MutableSet<T> newDelegate) -
Uses of MutableSet in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement MutableSetModifier and TypeClassDescriptionclassA boxed view of aMutableBooleanSet.classA boxed view of aMutableByteSet.classA boxed view of aMutableCharSet.classA boxed view of aMutableDoubleSet.classA boxed view of aMutableFloatSet.classA boxed view of aMutableIntSet.classA boxed view of aMutableLongSet.classA boxed view of aMutableShortSet.Methods in org.eclipse.collections.impl.set.mutable.primitive that return MutableSetModifier and TypeMethodDescriptionBooleanHashSet.boxed()ByteHashSet.boxed()CharHashSet.boxed()DoubleHashSet.boxed()FloatHashSet.boxed()IntHashSet.boxed()LongHashSet.boxed()ShortHashSet.boxed()SynchronizedBooleanSet.boxed()SynchronizedByteSet.boxed()SynchronizedCharSet.boxed()SynchronizedDoubleSet.boxed()SynchronizedFloatSet.boxed()SynchronizedIntSet.boxed()SynchronizedLongSet.boxed()SynchronizedShortSet.boxed()UnmodifiableBooleanSet.boxed()UnmodifiableByteSet.boxed()UnmodifiableCharSet.boxed()UnmodifiableDoubleSet.boxed()UnmodifiableFloatSet.boxed()UnmodifiableIntSet.boxed()UnmodifiableLongSet.boxed()UnmodifiableShortSet.boxed()<V> MutableSet<V> BooleanHashSet.collect(BooleanToObjectFunction<? extends V> function) <V> MutableSet<V> ByteHashSet.collect(ByteToObjectFunction<? extends V> function) <V> MutableSet<V> CharHashSet.collect(CharToObjectFunction<? extends V> function) <V> MutableSet<V> DoubleHashSet.collect(DoubleToObjectFunction<? extends V> function) <V> MutableSet<V> FloatHashSet.collect(FloatToObjectFunction<? extends V> function) <V> MutableSet<V> IntHashSet.collect(IntToObjectFunction<? extends V> function) <V> MutableSet<V> LongHashSet.collect(LongToObjectFunction<? extends V> function) <V> MutableSet<V> ShortHashSet.collect(ShortToObjectFunction<? extends V> function) <V> MutableSet<V> SynchronizedBooleanSet.collect(BooleanToObjectFunction<? extends V> function) <V> MutableSet<V> SynchronizedByteSet.collect(ByteToObjectFunction<? extends V> function) <V> MutableSet<V> SynchronizedCharSet.collect(CharToObjectFunction<? extends V> function) <V> MutableSet<V> SynchronizedDoubleSet.collect(DoubleToObjectFunction<? extends V> function) <V> MutableSet<V> SynchronizedFloatSet.collect(FloatToObjectFunction<? extends V> function) <V> MutableSet<V> SynchronizedIntSet.collect(IntToObjectFunction<? extends V> function) <V> MutableSet<V> SynchronizedLongSet.collect(LongToObjectFunction<? extends V> function) <V> MutableSet<V> SynchronizedShortSet.collect(ShortToObjectFunction<? extends V> function) <V> MutableSet<V> UnmodifiableBooleanSet.collect(BooleanToObjectFunction<? extends V> function) <V> MutableSet<V> UnmodifiableByteSet.collect(ByteToObjectFunction<? extends V> function) <V> MutableSet<V> UnmodifiableCharSet.collect(CharToObjectFunction<? extends V> function) <V> MutableSet<V> UnmodifiableDoubleSet.collect(DoubleToObjectFunction<? extends V> function) <V> MutableSet<V> UnmodifiableFloatSet.collect(FloatToObjectFunction<? extends V> function) <V> MutableSet<V> UnmodifiableIntSet.collect(IntToObjectFunction<? extends V> function) <V> MutableSet<V> UnmodifiableLongSet.collect(LongToObjectFunction<? extends V> function) <V> MutableSet<V> UnmodifiableShortSet.collect(ShortToObjectFunction<? extends V> function) -
Uses of MutableSet in org.eclipse.collections.impl.set.strategy.mutable
Classes in org.eclipse.collections.impl.set.strategy.mutable that implement MutableSetMethods in org.eclipse.collections.impl.set.strategy.mutable that return MutableSetModifier and TypeMethodDescription<T,V> MutableSet <T> MutableHashingStrategySetFactoryImpl.fromFunction(Function<? super T, ? extends V> function) <T> MutableSet<T> MutableHashingStrategySetFactoryImpl.of(HashingStrategy<? super T> hashingStrategy) <T> MutableSet<T> MutableHashingStrategySetFactoryImpl.of(HashingStrategy<? super T> hashingStrategy, T... items) <T> MutableSet<T> MutableHashingStrategySetFactoryImpl.ofAll(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> items) <T> MutableSet<T> MutableHashingStrategySetFactoryImpl.ofInitialCapacity(HashingStrategy<? super T> hashingStrategy, int capacity) <T> MutableSet<T> MutableHashingStrategySetFactoryImpl.with(HashingStrategy<? super T> hashingStrategy) <T> MutableSet<T> MutableHashingStrategySetFactoryImpl.with(HashingStrategy<? super T> hashingStrategy, T... items) <T> MutableSet<T> MutableHashingStrategySetFactoryImpl.withAll(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> items) <T> MutableSet<T> MutableHashingStrategySetFactoryImpl.withInitialCapacity(HashingStrategy<? super T> hashingStrategy, int capacity) -
Uses of MutableSet in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable that return MutableSet -
Uses of MutableSet in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable that return MutableSet -
Uses of MutableSet in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return MutableSetModifier and TypeMethodDescriptionstatic MutableSet<Character> StringIterate.asLowercaseSet(String string) Deprecated.in 3.0.static MutableSet<Character> StringIterate.asUppercaseSet(String string) Deprecated.in 3.0.static MutableSet<String> StringIterate.csvTokensToSet(String string) Deprecated.in 3.0.static MutableSet<String> StringIterate.tokensToSet(String string, String separator) Converts a string of tokens to aMutableSet.static MutableSet<Character> StringIterate.toLowercaseSet(String string) static MutableSet<Character> static MutableSet<Character> StringIterate.toUppercaseSet(String string) -
Uses of MutableSet in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return MutableSetModifier and TypeMethodDescriptionstatic <E> MutableSet<E> SetIterables.difference(SetIterable<? extends E> minuendSet, SetIterable<? extends E> subtrahendSet) static <E> MutableSet<E> SetIterables.intersect(SetIterable<? extends E> setA, SetIterable<? extends E> setB) static <T> MutableSet<MutableSet<T>> static <T> MutableSet<MutableSet<T>> SetIterables.powerSet(UnifiedSetWithHashingStrategy<T> set) private static <T> MutableSet<MutableSet<T>> SetIterables.powerSetWithSeed(Set<T> set, MutableSet<MutableSet<T>> seed) static <E> MutableSet<E> SetIterables.symmetricDifference(SetIterable<? extends E> setA, SetIterable<? extends E> setB) static <E> MutableSet<E> SetIterables.union(SetIterable<? extends E> setA, SetIterable<? extends E> setB) Methods in org.eclipse.collections.impl.utility.internal that return types with arguments of type MutableSetModifier and TypeMethodDescriptionstatic <T> MutableSet<MutableSet<T>> static <T> MutableSet<MutableSet<T>> SetIterables.powerSet(UnifiedSetWithHashingStrategy<T> set) private static <T> MutableSet<MutableSet<T>> SetIterables.powerSetWithSeed(Set<T> set, MutableSet<MutableSet<T>> seed) Methods in org.eclipse.collections.impl.utility.internal with parameters of type MutableSetModifier and TypeMethodDescriptionprivate static <T> MutableSet<MutableSet<T>> SetIterables.powerSetWithSeed(Set<T> set, MutableSet<MutableSet<T>> seed) Method parameters in org.eclipse.collections.impl.utility.internal with type arguments of type MutableSetModifier and TypeMethodDescriptionprivate static <T> MutableSet<MutableSet<T>> SetIterables.powerSetWithSeed(Set<T> set, MutableSet<MutableSet<T>> seed)