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.
-
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(). but takes in initial capacity.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(). but takes in initial capacity. -
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) Same asMutableHashingStrategySetFactory.withInitialCapacity(HashingStrategy, int). of initial 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)