public final class SerializationHelper
extends java.lang.Object
Assists with the serialization process and performs additional functionality based on serialization.
This class throws exceptions for invalid null
inputs.
Each method documents its behaviour in more detail.
Modifier and Type | Method and Description |
---|---|
static java.lang.Object |
clone(java.io.Serializable object)
Deep clone an
Object using serialization. |
static java.lang.ClassLoader |
defaultClassLoader()
Returns the Thread Context ClassLoader (TCCL).
|
static java.lang.Object |
deserialize(byte[] objectData)
Deserializes an object from an array of bytes using the Thread Context
ClassLoader (TCCL).
|
static java.lang.Object |
deserialize(byte[] objectData,
java.lang.ClassLoader loader)
Deserializes an object from an array of bytes.
|
static <T> T |
deserialize(java.io.InputStream inputStream)
Deserializes an object from the specified stream using the Thread Context
ClassLoader (TCCL).
|
static java.lang.Object |
deserialize(java.io.InputStream inputStream,
java.lang.ClassLoader loader)
Deserializes an object from the specified stream using the Thread Context
ClassLoader (TCCL).
|
static <T> T |
doDeserialize(java.io.InputStream inputStream,
java.lang.ClassLoader loader,
java.lang.ClassLoader fallbackLoader1,
java.lang.ClassLoader fallbackLoader2) |
static java.lang.ClassLoader |
hibernateClassLoader() |
static byte[] |
serialize(java.io.Serializable obj)
Serializes an
Object to a byte array for
storage/serialization. |
static void |
serialize(java.io.Serializable obj,
java.io.OutputStream outputStream)
Serializes an
Object to the specified stream. |
public static java.lang.Object clone(java.io.Serializable object) throws SerializationException
Deep clone an Object
using serialization.
This is many times slower than writing clone methods by hand
on all objects in your object graph. However, for complex object
graphs, or for those that don't support deep cloning this can
be a simple alternative implementation. Of course all the objects
must be Serializable
.
object
- the Serializable
object to cloneSerializationException
- (runtime) if the serialization failspublic static void serialize(java.io.Serializable obj, java.io.OutputStream outputStream) throws SerializationException
Serializes an Object
to the specified stream.
The stream will be closed once the object is written. This avoids the need for a finally clause, and maybe also exception handling, in the application code.
The stream passed in is not buffered internally within this method. This is the responsibility of your application if desired.
obj
- the object to serialize to bytes, may be nulloutputStream
- the stream to write to, must not be nulljava.lang.IllegalArgumentException
- if outputStream
is null
SerializationException
- (runtime) if the serialization failspublic static byte[] serialize(java.io.Serializable obj) throws SerializationException
Serializes an Object
to a byte array for
storage/serialization.
obj
- the object to serialize to bytesSerializationException
- (runtime) if the serialization failspublic static <T> T deserialize(java.io.InputStream inputStream) throws SerializationException
doDeserialize(java.io.InputStream, java.lang.ClassLoader, java.lang.ClassLoader, java.lang.ClassLoader)
inputStream
- the serialized object input stream, must not be nulljava.lang.IllegalArgumentException
- if inputStream
is null
SerializationException
- (runtime) if the serialization failspublic static java.lang.ClassLoader defaultClassLoader()
public static java.lang.ClassLoader hibernateClassLoader()
public static java.lang.Object deserialize(java.io.InputStream inputStream, java.lang.ClassLoader loader) throws SerializationException
inputStream
- the serialized object input stream, must not be nullloader
- The classloader to usejava.lang.IllegalArgumentException
- if inputStream
is null
SerializationException
- (runtime) if the serialization failspublic static <T> T doDeserialize(java.io.InputStream inputStream, java.lang.ClassLoader loader, java.lang.ClassLoader fallbackLoader1, java.lang.ClassLoader fallbackLoader2) throws SerializationException
SerializationException
public static java.lang.Object deserialize(byte[] objectData) throws SerializationException
deserialize(byte[], ClassLoader)
objectData
- the serialized object, must not be nulljava.lang.IllegalArgumentException
- if objectData
is null
SerializationException
- (runtime) if the serialization failspublic static java.lang.Object deserialize(byte[] objectData, java.lang.ClassLoader loader) throws SerializationException
deserialize(java.io.InputStream, ClassLoader)
using a
ByteArrayInputStream
to wrap the array.objectData
- the serialized object, must not be nullloader
- The classloader to usejava.lang.IllegalArgumentException
- if objectData
is null
SerializationException
- (runtime) if the serialization failsCopyright © 2001-2018 Red Hat, Inc. All Rights Reserved.