
com.star.io.serializer.Serializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils Show documentation
Show all versions of utils Show documentation
some utility class for java develop
The newest version!
package com.star.io.serializer;
/**
* 序列化接口
*
* @author j2cache
*/
public interface Serializer {
/**
* 用的哪种序列化方式
*
* @return 序列化工具的名字
*/
String name();
/**
* 序列化
*
* @param obj 对象
* @return 字节数组
*/
byte[] serialize(Object obj);
/**
* 反序列化
*
* @param bytes 字节数组
* @return 对象
*/
Object deserialize(byte[] bytes);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy