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

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

There is a newer version: 3.0.2
Show newest version
package io.github.icodegarden.nutrient.lang.serialization;

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

	/**
	 * Deserialize a record value from a byte array into a value or object.
	 * 
	 * @param notnull
	 * @return deserialized typed data; may be null
	 * @throws SerializationException throw on serialization error
	 */
	T deserialize(byte[] data) throws SerializationException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy