java.lang.Objectorg.hibernate.util.SerializationHelper
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.
< - a href="mailto:nissim@nksystems.com">Nissim Karpenstein< - a href="mailto:janekdb@yahoo.co.uk">Janek Bogucki< - a href="mailto:dlr@finemaltcoding.com">Daniel RallStephen - ColebourneJeff - VarszegiGary - Gregory1.0 - $ - Id: SerializationHelper.java 9180 2006-01-30 23:51:27Z steveebersole $| Method from org.hibernate.util.SerializationHelper Summary: |
|---|
| clone, deserialize, deserialize, serialize, serialize |
| Methods from java.lang.Object: |
|---|
| equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from org.hibernate.util.SerializationHelper Detail: |
|---|
Deep clone an 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 |
Deserializes an 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. |
Deserializes a single |
Serializes an |
Serializes an 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. |