Package org.eclipse.collections.impl.set.mutable
This package contains implementations of
MutableSet
.
This package contains the following mutable set implementations:
-
MultiReaderUnifiedSet
- a thread safe wrapper around UnifiedSet. -
SetAdapter
- a MutableSet wrapper around a JDK Collections Set interface instance. -
SynchronizedMutableSet
- a synchronized view of a set. -
UnifiedSet
- an implementation of a JCF Set which provides methods matching the Smalltalk Collection protocol. -
UnmodifiableMutableSet
- an unmodifiable view of a set.
This package contains 1 factory implementation:
-
MutableSetFactoryImpl
- a factory which creates instances of typeMutableSet
.
-
Class Summary Class Description AbstractMutableSet<T> MultiReaderMutableSetFactory MultiReaderUnifiedSet<T> MultiReadUnifiedSet provides a thread-safe wrapper around a UnifiedSet, using a ReentrantReadWriteLock.MultiReaderUnifiedSet.UntouchableIterator<T> MultiReaderUnifiedSet.UntouchableMutableSet<T> MutableSetFactoryImpl SetAdapter<T> This class provides a MutableSet wrapper around a JDK Collections Set interface instance.SynchronizedMutableSet<T> A synchronized view of aMutableSet
.UnifiedSet<T> UnifiedSet.ChainedBucket UnmodifiableMutableSet<T> An unmodifiable view of a list.