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

com.zakgof.serialize.ISerializer Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
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);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy