com.zakgof.serialize.ISerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tools Show documentation
Show all versions of tools Show documentation
Utility classes used internally by various zakgof projects.
package com.zakgof.serialize;
import java.io.InputStream;
public interface ISerializer {
public byte[] serialize(T object, Class clazz);
public T deserialize(InputStream stream, Class clazz);
}