public interface ISerializationService
deserialize(serialize(object)) == object
Modifier and Type | Field and Description |
---|---|
static ISerializationService |
INSTANCE |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
deserialize(java.lang.String serializedValue)
Deserialize the given string back into the value.
|
java.lang.String |
serialize(java.lang.Object instanceValue)
Serialize the given value.
|
static final ISerializationService INSTANCE