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

com.star.io.serializer.Serializer Maven / Gradle / Ivy

The newest version!
package com.star.io.serializer;

/**
 * 序列化接口
 */
public interface Serializer {
	/**
	 * 用的哪种序列化方式
	 */
	String name();

	/**
	 * 序列化
	 */
	byte[] serialize(Object obj);

	/**
	 * 反序列化
	 */
	Object deserialize(byte[] bytes);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy