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.mutable.primitive This package contains implementations of the mutable primitive set interfaces.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 definedHashingStrategys. -
-
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 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().interfaceMutableSet<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 interfaceMutableSortedSet<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 classAbstractUnifiedSet<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) classAbstractMemoryEfficientMutableSet<T>(package private) classDoubletonSet<T>(package private) classEmptySet<T>This class is a memory efficient list with no elements.(package private) classQuadrupletonSet<T>(package private) classSingletonSet<T>(package private) classTripletonSet<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 classAbstractMutableSet<T>classMultiReaderUnifiedSet<T>MultiReadUnifiedSet provides a thread-safe wrapper around a UnifiedSet, using a ReentrantReadWriteLock.(package private) static classMultiReaderUnifiedSet.UntouchableMutableSet<T>classSetAdapter<T>This class provides a MutableSet wrapper around a JDK Collections Set interface instance.classSynchronizedMutableSet<T>A synchronized view of aMutableSet.classUnifiedSet<T>classUnmodifiableMutableSet<T>An unmodifiable view of a list. -
Uses of MutableSetIterable in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement MutableSetIterable Modifier and Type Class Description classBoxedMutableBooleanSetA boxed view of aMutableBooleanSet.classBoxedMutableByteSetA boxed view of aMutableByteSet.classBoxedMutableCharSetA boxed view of aMutableCharSet.classBoxedMutableDoubleSetA boxed view of aMutableDoubleSet.classBoxedMutableFloatSetA boxed view of aMutableFloatSet.classBoxedMutableIntSetA boxed view of aMutableIntSet.classBoxedMutableLongSetA boxed view of aMutableLongSet.classBoxedMutableShortSetA boxed view of aMutableShortSet. -
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 classSortedSetAdapter<T>This class provides a MutableSortedSet wrapper around a JDK Collections SortedSet interface instance.classSynchronizedSortedSet<T>A synchronized view of aMutableSortedSet.classTreeSortedSet<T>classUnmodifiableSortedSet<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 classUnifiedSetWithHashingStrategy<T>
-