Java org.hibernate.internal.util SerializationHelper fields, constructors, methods, implement or subclass

Example usage for Java org.hibernate.internal.util SerializationHelper fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.hibernate.internal.util SerializationHelper.

The text is from its open source code.

Method

Objectclone(Serializable object)

Deep clone an Object using serialization.

This is many times slower than writing clone methods by hand on all objects in your object graph.

Tdeserialize(InputStream inputStream)
Deserializes an object from the specified stream using the Thread Context ClassLoader (TCCL).
Objectdeserialize(byte[] objectData)
Deserializes an object from an array of bytes using the Thread Context ClassLoader (TCCL).
byte[]serialize(Serializable obj)

Serializes an Object to a byte array for storage/serialization.