Package com.clivern.decoy
Class SchemaFactory
- java.lang.Object
-
- com.clivern.decoy.SchemaFactory
-
public class SchemaFactory extends java.lang.ObjectSchema Factory Class
-
-
Constructor Summary
Constructors Constructor Description SchemaFactory()Class Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Stringserialize(java.lang.Object object)Serialize Object<T> Tunserialize(java.lang.String json, java.lang.Class<T> object)Unserialize JSON
-
-
-
Method Detail
-
serialize
public java.lang.String serialize(java.lang.Object object)
Serialize Object- Parameters:
object- the object- Returns:
- the serialized object
-
unserialize
public <T> T unserialize(java.lang.String json, java.lang.Class<T> object)Unserialize JSON- Type Parameters:
T- an object- Parameters:
json- the json valueobject- the object class- Returns:
- the object
-
-