public class SerializerHelper extends Object
| Modifier and Type | Method and Description |
|---|---|
static SerializerHelper |
getInstance()
Returns or creates a new SerializerHelper.
|
boolean |
isSerializable(Object o) |
Object |
readObject(ObjectInputStream in)
Reads the object from the object input stream.
|
void |
registerMethod(SerializeMethod method)
Registers a new SerializeMethod with this SerializerHelper.
|
void |
unregisterMethod(SerializeMethod method)
Deregisters a new SerializeMethod with this SerializerHelper.
|
void |
writeObject(Object o,
ObjectOutputStream out)
Writes a serializable object description to the given object output stream.
|
public static SerializerHelper getInstance()
public void registerMethod(SerializeMethod method)
method - the method that should be registered.public void unregisterMethod(SerializeMethod method)
method - the method that should be deregistered.public void writeObject(Object o, ObjectOutputStream out) throws IOException
o - the to be serialized object.out - the outputstream that should receive the object.IOException - if an I/O error occured.public boolean isSerializable(Object o)
public Object readObject(ObjectInputStream in) throws IOException, ClassNotFoundException
in - the object input stream from where to read the serialized data.IOException - if reading the stream failed.ClassNotFoundException - if serialized object class cannot be found.