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

com.yuweix.kuafu.data.serializer.Serializer Maven / Gradle / Ivy

The newest version!
package com.yuweix.kuafu.data.serializer;




/**
 * @author yuwei
 */
public interface Serializer {
	String serialize(T t);
	T deserialize(String str);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy