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 type MutableSet.
| Class | Description |
|---|---|
| AbstractMutableSet<T> | |
| MultiReaderUnifiedSet<T> |
MultiReadUnifiedSet 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.
|
| SynchronizedMutableSet<T> |
A synchronized view of a
MutableSet. |
| UnifiedSet<T> | |
| UnmodifiableMutableSet<T> |
An unmodifiable view of a list.
|
| Enum | Description |
|---|---|
| MutableSetFactoryImpl |
Copyright © 2004–2017. All rights reserved.