Uses of Interface
net.razorvine.pickle.IObjectDeconstructor
-
Packages that use IObjectDeconstructor Package Description net.razorvine.pickle Java implementation of Python's pickle serialization protocol. -
-
Uses of IObjectDeconstructor in net.razorvine.pickle
Fields in net.razorvine.pickle with type parameters of type IObjectDeconstructor Modifier and Type Field Description protected static java.util.Map<java.lang.Class<?>,IObjectDeconstructor>Pickler. customDeconstructorsRegistry of deconstructors for custom classes, to be able to pickle custom classes and also reconstruct.Methods in net.razorvine.pickle that return IObjectDeconstructor Modifier and Type Method Description protected IObjectDeconstructorPickler. getCustomDeconstructor(java.lang.Class<?> t)Get the custom deconstructor fot the given class, to be able to pickle and unpickle custom classes A custom deconstructor is matched on the interface or abstract base class that the object implements or inherits from.Methods in net.razorvine.pickle with parameters of type IObjectDeconstructor Modifier and Type Method Description static voidPickler. registerCustomDeconstructor(java.lang.Class<?> clazz, IObjectDeconstructor deconstructor)Register custom object deconstructor for custom classes.
-