Uses of Interface
org.eclipse.collections.api.set.MutableSetIterable
-
Packages that use MutableSetIterable Package Description org.eclipse.collections.api.bag This package contains interfaces for Bag API.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.sorted This package contains interfaces for sorted set API.org.eclipse.collections.impl.set org.eclipse.collections.impl.set.fixed This package contains implementations ofFixedSizeSet
.org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet
.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet
.org.eclipse.collections.impl.set.strategy.mutable This package contains implementations of sets with user definedHashingStrategy
s. -
-
Uses of MutableSetIterable in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return MutableSetIterable Modifier and Type Method Description MutableSetIterable<T>
MutableBagIterable. selectUnique()
MutableSetIterable<Pair<T,java.lang.Integer>>
MutableBagIterable. zipWithIndex()
-
Uses of MutableSetIterable in org.eclipse.collections.api.multimap.set
Methods in org.eclipse.collections.api.multimap.set that return MutableSetIterable Modifier and Type Method Description MutableSetIterable<V>
MutableSetIterableMultimap. get(K key)
MutableSetIterable<V>
MutableSetIterableMultimap. getIfAbsentPutAll(K key, java.lang.Iterable<? extends V> values)
MutableSetIterable<V>
MutableSetIterableMultimap. removeAll(java.lang.Object key)
MutableSetIterable<V>
MutableSetIterableMultimap. replaceValues(K key, java.lang.Iterable<? extends V> values)
-
Uses of MutableSetIterable in org.eclipse.collections.api.partition.set
Methods in org.eclipse.collections.api.partition.set that return MutableSetIterable Modifier and Type Method Description MutableSetIterable<T>
PartitionMutableSetIterable. getRejected()
MutableSetIterable<T>
PartitionMutableSetIterable. getSelected()
-
Uses of MutableSetIterable in org.eclipse.collections.api.set
Subinterfaces of MutableSetIterable in org.eclipse.collections.api.set Modifier and Type Interface Description interface
FixedSizeSet<T>
A FixedSizeSet is a set that may be mutated, but cannot grow or shrink in size.interface
MultiReaderSet<T>
A MultiReaderSet provides thread-safe iteration for a set through methodswithReadLockAndDelegate()
andwithWriteLockAndDelegate()
.interface
MutableSet<T>
A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.Methods in org.eclipse.collections.api.set that return MutableSetIterable Modifier and Type Method Description MutableSetIterable<T>
MutableSetIterable. reject(Predicate<? super T> predicate)
<P> MutableSetIterable<T>
MutableSetIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
MutableSetIterable<T>
MutableSetIterable. select(Predicate<? super T> predicate)
<S> MutableSetIterable<S>
MutableSetIterable. selectInstancesOf(java.lang.Class<S> clazz)
<P> MutableSetIterable<T>
MutableSetIterable. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
MutableSetIterable<T>
MutableSetIterable. tap(Procedure<? super T> procedure)
default MutableSetIterable<T>
MutableSetIterable. with(T element)
default MutableSetIterable<T>
MutableSetIterable. withAll(java.lang.Iterable<? extends T> elements)
default MutableSetIterable<T>
MutableSetIterable. without(T element)
default MutableSetIterable<T>
MutableSetIterable. withoutAll(java.lang.Iterable<? extends T> elements)
MutableSetIterable<Pair<T,java.lang.Integer>>
MutableSetIterable. zipWithIndex()
Deprecated.in 6.0. -
Uses of MutableSetIterable in org.eclipse.collections.api.set.sorted
Subinterfaces of MutableSetIterable in org.eclipse.collections.api.set.sorted Modifier and Type Interface Description interface
MutableSortedSet<T>
A MutableSortedSet is an implementation of a JCF SortedSet which provides methods matching the Smalltalk Collection protocol. -
Uses of MutableSetIterable in org.eclipse.collections.impl.set
Classes in org.eclipse.collections.impl.set that implement MutableSetIterable Modifier and Type Class Description class
AbstractUnifiedSet<T>
-
Uses of MutableSetIterable in org.eclipse.collections.impl.set.fixed
Classes in org.eclipse.collections.impl.set.fixed that implement MutableSetIterable Modifier and Type Class Description (package private) class
AbstractMemoryEfficientMutableSet<T>
(package private) class
DoubletonSet<T>
(package private) class
EmptySet<T>
This class is a memory efficient list with no elements.(package private) class
QuadrupletonSet<T>
(package private) class
SingletonSet<T>
(package private) class
TripletonSet<T>
-
Uses of MutableSetIterable in org.eclipse.collections.impl.set.mutable
Classes in org.eclipse.collections.impl.set.mutable that implement MutableSetIterable Modifier and Type Class Description class
AbstractMutableSet<T>
class
MultiReaderUnifiedSet<T>
MultiReadUnifiedSet provides a thread-safe wrapper around a UnifiedSet, using a ReentrantReadWriteLock.(package private) static class
MultiReaderUnifiedSet.UntouchableMutableSet<T>
class
SetAdapter<T>
This class provides a MutableSet wrapper around a JDK Collections Set interface instance.class
SynchronizedMutableSet<T>
A synchronized view of aMutableSet
.class
UnifiedSet<T>
class
UnmodifiableMutableSet<T>
An unmodifiable view of a list. -
Uses of MutableSetIterable in org.eclipse.collections.impl.set.sorted.mutable
Classes in org.eclipse.collections.impl.set.sorted.mutable that implement MutableSetIterable Modifier and Type Class Description class
SortedSetAdapter<T>
This class provides a MutableSortedSet wrapper around a JDK Collections SortedSet interface instance.class
SynchronizedSortedSet<T>
A synchronized view of aMutableSortedSet
.class
TreeSortedSet<T>
class
UnmodifiableSortedSet<T>
An unmodifiable view of a SortedSet. -
Uses of MutableSetIterable in org.eclipse.collections.impl.set.strategy.mutable
Classes in org.eclipse.collections.impl.set.strategy.mutable that implement MutableSetIterable Modifier and Type Class Description class
UnifiedSetWithHashingStrategy<T>
-