Class SetAdapter<T>

java.lang.Object
org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter<T>
org.eclipse.collections.impl.set.mutable.SetAdapter<T>
All Implemented Interfaces:
Serializable, Cloneable, Iterable<T>, Collection<T>, Set<T>, MutableCollection<T>, InternalIterable<T>, RichIterable<T>, MutableSet<T>, MutableSetIterable<T>, SetIterable<T>, UnsortedSetIterable<T>

public final class SetAdapter<T>
extends AbstractCollectionAdapter<T>
implements Serializable, MutableSet<T>
This class provides a MutableSet wrapper around a JDK Collections Set interface instance. All of the MutableSet interface methods are supported in addition to the JDK Set interface methods.

To create a new wrapper around an existing Set instance, use the adapt(Set) factory method.

See Also:
Serialized Form