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

io.github.icodegarden.nutrient.lang.serialization.Serializer Maven / Gradle / Ivy

The newest version!
package io.github.icodegarden.nutrient.lang.serialization;

/**
 * 
 * @author Fangfang.Xu
 *
 * @param 
 */
public interface Serializer {

	/**
	 * Convert {@code data} into a byte array.
	 *
	 * @param data typed data
	 * @return serialized bytes
	 */
	byte[] serialize(T data) throws SerializationException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy