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

com.evgenbar.binarydecoder.IDataInputDecoder Maven / Gradle / Ivy

The newest version!
package com.evgenbar.binarydecoder;


import java.io.DataInput;

public interface IDataInputDecoder {
	/**
	 * Decodes data input to the object of given type
	 * @param type type to decode
	 * @param input input to decode from
	 */
	 T decode(Class type, DataInput input);
	 T[] decode(Class type, int arrayLength, DataInput input);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy