Class AbstractSerializableSetDecorator<E>
- java.lang.Object
-
- org.apache.openjpa.lib.util.collections.AbstractCollectionDecorator<E>
-
- org.apache.openjpa.lib.util.collections.AbstractSetDecorator<E>
-
- org.apache.openjpa.lib.util.collections.AbstractSerializableSetDecorator<E>
-
- Type Parameters:
E
- the type of the elements in this set
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Iterable<E>
,java.util.Collection<E>
,java.util.Set<E>
- Direct Known Subclasses:
UnmodifiableSet
public abstract class AbstractSerializableSetDecorator<E> extends AbstractSetDecorator<E>
Serializable subclass of AbstractSetDecorator.- Since:
- 3.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractSerializableSetDecorator(java.util.Set<E> set)
Constructor.
-
Method Summary
-
Methods inherited from class org.apache.openjpa.lib.util.collections.AbstractSetDecorator
decorated, equals, hashCode
-
Methods inherited from class org.apache.openjpa.lib.util.collections.AbstractCollectionDecorator
add, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, removeIf, retainAll, setCollection, size, toArray, toArray, toString
-
-
-
-
Constructor Detail
-
AbstractSerializableSetDecorator
protected AbstractSerializableSetDecorator(java.util.Set<E> set)
Constructor.- Parameters:
set
- the list to decorate, must not be null- Throws:
java.lang.NullPointerException
- if set is null
-
-