Uses of Interface
net.razorvine.pickle.IObjectPickler
-
Packages that use IObjectPickler Package Description net.razorvine.pickle Java implementation of Python's pickle serialization protocol. -
-
Uses of IObjectPickler in net.razorvine.pickle
Fields in net.razorvine.pickle with type parameters of type IObjectPickler Modifier and Type Field Description protected static java.util.Map<java.lang.Class<?>,IObjectPickler>Pickler. customPicklersRegistry of picklers for custom classes, to be able to not just pickle simple built in datatypes.Methods in net.razorvine.pickle that return IObjectPickler Modifier and Type Method Description protected IObjectPicklerPickler. getCustomPickler(java.lang.Class<?> t)Get the custom pickler fot the given class, to be able to pickle not just built in collection types.Methods in net.razorvine.pickle with parameters of type IObjectPickler Modifier and Type Method Description static voidPickler. registerCustomPickler(java.lang.Class<?> clazz, IObjectPickler pickler)Register additional object picklers for custom classes.
-