Package org.eclipse.collections.impl.set.mutable
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.
-
ClassesClassDescriptionMultiReadUnifiedSet provides a thread-safe wrapper around a UnifiedSet, using a ReentrantReadWriteLock.SetAdapter<T>This class provides a MutableSet wrapper around a JDK Collections Set interface instance.A synchronized view of a
MutableSet.UnifiedSet<T>An unmodifiable view of a list.