Uses of Interface
org.eclipse.collections.api.set.MutableSet
-
Packages that use MutableSet Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bimap This package contains interfaces for BiMap API.org.eclipse.collections.api.factory.set org.eclipse.collections.api.factory.set.strategy This package contains Factory API forImmutableHashingStrategySetFactoryandMutableHashingStrategySetFactory.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMaporg.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.multimap.set This package contains interfaces forSetMultimap.org.eclipse.collections.api.partition.set This package contains interfaces forPartitionSet.org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet.org.eclipse.collections.api.set.primitive 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 Modifier and Type Method Description MutableSet<T>ParallelIterable. toSet()MutableSet<T>RichIterable. toSet()Converts the collection to a MutableSet implementation. -
Uses of MutableSet in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return MutableSet Modifier and Type Method Description default MutableSet<T>MutableBag. selectUnique()MutableSet<Pair<T,Integer>>MutableBag. zipWithIndex()Deprecated.in 6.0. -
Uses of MutableSet in org.eclipse.collections.api.bimap
Methods in org.eclipse.collections.api.bimap that return MutableSet Modifier and Type Method Description MutableSet<V>MutableBiMap. reject(Predicate<? super V> predicate)<P> MutableSet<V>MutableBiMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)MutableSet<V>MutableBiMap. select(Predicate<? super V> predicate)<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>>MutableBiMap. zip(Iterable<S> that)Deprecated.in 8.0.MutableSet<Pair<V,Integer>>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 MutableSet Modifier and Type Method Description <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>FixedSizeSetFactory. ofAll(Iterable<? extends T> items)default <T> MutableSet<T>MutableSetFactory. ofAll(Iterable<? extends T> items)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>FixedSizeSetFactory. withAll(Iterable<? extends T> items)<T> MutableSet<T>MutableSetFactory. withAll(Iterable<? extends T> items)<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 MutableSet Modifier and Type Method Description default <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 Modifier and Type Method Description MutableSet<Pair<V,Integer>>MutableMap. zipWithIndex()Deprecated.in 6.0. -
Uses of MutableSet in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableSet Modifier and Type Method Description MutableSet<Pair<V,Integer>>MutablePrimitiveObjectMap. zipWithIndex()Deprecated.in 7.0. -
Uses of MutableSet in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableSet Modifier and Type Method Description MutableSet<Map.Entry<K,V>>MutableSortedMap. entrySet()MutableSet<K>MutableSortedMap. keySet()The underlying set for the keys is sorted in ascending order according to their natural ordering or a custom comparator. -
Uses of MutableSet in org.eclipse.collections.api.multimap.set
Methods in org.eclipse.collections.api.multimap.set that return MutableSet Modifier and Type Method Description MutableSet<V>MutableSetMultimap. get(K key)MutableSet<V>MutableSetMultimap. getIfAbsentPutAll(K key, Iterable<? extends V> values)MutableSet<V>MutableSetMultimap. removeAll(Object key)MutableSet<V>MutableSetMultimap. replaceValues(K key, Iterable<? extends V> values)Method parameters in org.eclipse.collections.api.multimap.set with type arguments of type MutableSet Modifier and Type Method Description voidMutableSetMultimap. 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 MutableSet Modifier and Type Method Description MutableSet<T>PartitionMutableSet. getRejected()MutableSet<T>PartitionMutableSet. getSelected() -
Uses of MutableSet in org.eclipse.collections.api.set
Subinterfaces of MutableSet in org.eclipse.collections.api.set Modifier and Type Interface Description interfaceFixedSizeSet<T>A FixedSizeSet is a set that may be mutated, but cannot grow or shrink in size.interfaceMultiReaderSet<T>A MultiReaderSet provides thread-safe iteration for a set through methodswithReadLockAndDelegate()andwithWriteLockAndDelegate().Methods in org.eclipse.collections.api.set that return MutableSet Modifier and Type Method Description MutableSet<T>MutableSet. asSynchronized()MutableSet<T>MutableSet. asUnmodifiable()Returns an unmodifiable view of the set.MutableSet<T>MutableSet. clone()<V> MutableSet<V>MutableSet. collect(Function<? super T,? extends V> function)<V> MutableSet<V>MutableSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<P,V>
MutableSet<V>MutableSet. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)MutableSet<T>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<T>MutableSet. intersect(SetIterable<? extends T> set)MutableSet<T>MutableSet. newEmpty()MutableSet<UnsortedSetIterable<T>>MutableSet. powerSet()MutableSet<T>MutableSet. reject(Predicate<? super T> predicate)<P> MutableSet<T>MutableSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)MutableSet<T>MutableSet. select(Predicate<? super T> predicate)<S> MutableSet<S>MutableSet. selectInstancesOf(Class<S> clazz)<P> MutableSet<T>MutableSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)MutableSet<T>MutableSet. symmetricDifference(SetIterable<? extends T> setB)MutableSet<T>MutableSet. tap(Procedure<? super T> procedure)MutableSet<T>MutableSet. union(SetIterable<? extends T> set)MutableSet<T>FixedSizeSet. with(T element)default MutableSet<T>MutableSet. with(T element)MutableSet<T>FixedSizeSet. withAll(Iterable<? extends T> elements)default MutableSet<T>MutableSet. withAll(Iterable<? extends T> elements)MutableSet<T>FixedSizeSet. without(T element)default MutableSet<T>MutableSet. without(T element)MutableSet<T>FixedSizeSet. withoutAll(Iterable<? extends T> elements)default MutableSet<T>MutableSet. withoutAll(Iterable<? extends T> elements)<S> MutableSet<Pair<T,S>>MutableSet. zip(Iterable<S> that)Deprecated.in 6.0.MutableSet<Pair<T,Integer>>MutableSet. zipWithIndex()Deprecated.in 6.0.Method parameters in org.eclipse.collections.api.set with type arguments of type MutableSet Modifier and Type Method Description voidMultiReaderSet. 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 MutableSet Modifier and Type Method Description MutableSet<Boolean>MutableBooleanSet. boxed()MutableSet<Byte>MutableByteSet. boxed()MutableSet<Character>MutableCharSet. boxed()MutableSet<Double>MutableDoubleSet. boxed()MutableSet<Float>MutableFloatSet. boxed()MutableSet<Integer>MutableIntSet. boxed()MutableSet<Long>MutableLongSet. boxed()MutableSet<Short>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)
-