All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sklsft.commons.text.serialization.Serializer Maven / Gradle / Ivy

There is a newer version: 5.0.0-M1
Show newest version
package org.sklsft.commons.text.serialization;

/**
 * A very basic interface to serialize/deserialize objects
* * @author Nicolas Thibault * */ public interface Serializer { String serialize (Object object); T deserialize (String arg, Class targetClass); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy