Class AbstractSerializableSetDecorator<E>
java.lang.Object
org.apache.commons.collections4.collection.AbstractCollectionDecorator<E>
org.apache.commons.collections4.set.AbstractSetDecorator<E>
org.apache.commons.collections4.set.AbstractSerializableSetDecorator<E>
- Type Parameters:
E
- the type of the elements in this set
- All Implemented Interfaces:
Serializable
,Iterable<E>
,Collection<E>
,Set<E>
- Direct Known Subclasses:
ListOrderedSet
,UnmodifiableSet
Serializable subclass of AbstractSetDecorator.
- Since:
- 3.1
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final long
Serialization version -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
Constructor. -
Method Summary
Modifier and TypeMethodDescriptionprivate void
Read the set in using a custom routine.private void
Write the set out using a custom routine.Methods inherited from class org.apache.commons.collections4.set.AbstractSetDecorator
decorated, equals, hashCode
Methods inherited from class org.apache.commons.collections4.collection.AbstractCollectionDecorator
add, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, removeIf, retainAll, setCollection, size, toArray, toArray, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerialization version- See Also:
-
-
Constructor Details
-
AbstractSerializableSetDecorator
Constructor.- Parameters:
set
- the list to decorate, must not be null- Throws:
NullPointerException
- if set is null
-
-
Method Details
-
writeObject
Write the set out using a custom routine.- Parameters:
out
- the output stream- Throws:
IOException
- if an error occurs while writing to the stream
-
readObject
Read the set in using a custom routine.- Parameters:
in
- the input stream- Throws:
IOException
- if an error occurs while reading from the streamClassNotFoundException
- if an object read from the stream can not be loaded
-