Uses of Class
net.razorvine.pickle.PickleException
-
Packages that use PickleException Package Description net.razorvine.pickle Java implementation of Python's pickle serialization protocol.net.razorvine.pickle.objects Object constructors and other utility classes for the pickle package. -
-
Uses of PickleException in net.razorvine.pickle
Subclasses of PickleException in net.razorvine.pickle Modifier and Type Class Description classInvalidOpcodeExceptionException thrown when the unpickler encounters an invalid opcode.Methods in net.razorvine.pickle that throw PickleException Modifier and Type Method Description java.lang.ObjectIObjectConstructor. construct(java.lang.Object[] args)Create an object.protected java.lang.ObjectUnpickler. dispatch(short key)Process a single pickle stream opcode.voidPickler. dump(java.lang.Object o, java.io.OutputStream stream)Pickle a given object graph, writing the result to the output stream.byte[]Pickler. dumps(java.lang.Object o)Pickle a given object graph, returning the result as a byte array.java.lang.ObjectUnpickler. load(java.io.InputStream stream)Read a pickled object representation from the given input stream.java.lang.ObjectUnpickler. loads(byte[] pickledata)Read a pickled object representation from the given pickle data bytes.protected java.lang.ObjectUnpickler. next_buffer()Buffer support for protocol 5 out of band data If you want to unpickle such pickles, you'll have to subclass the unpickler and override this method to return the buffer data you want.voidIObjectPickler. pickle(java.lang.Object o, java.io.OutputStream out, Pickler currentPickler)Pickle an object.voidPickler. save(java.lang.Object o)Pickle a single object and write its pickle representation to the output stream. -
Uses of PickleException in net.razorvine.pickle.objects
Methods in net.razorvine.pickle.objects that throw PickleException Modifier and Type Method Description java.lang.ObjectArrayConstructor. construct(char typecode, int machinecode, byte[] data)Create an object based on machine code typejava.lang.ObjectArrayConstructor. construct(java.lang.Object[] args)java.lang.ObjectByteArrayConstructor. construct(java.lang.Object[] args)java.lang.ObjectTimeZoneConstructor. construct(java.lang.Object[] args)
-