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

org.ssf4j.Deserializer Maven / Gradle / Ivy

There is a newer version: 0.4
Show newest version
package org.ssf4j;

import java.io.Closeable;
import java.io.IOException;

/**
 * Facade interface for deserializers
 * @author robin
 *
 * @param  The type that this deserializer can deserialize
 */
public interface Deserializer extends Closeable {
	/**
	 * Deserialize a new instance of {@code T}
	 * @return The deserialized object
	 * @throws IOException
	 * @throws ClassNotFoundException
	 */
	public T read() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy