com.evgenbar.binarydecoder.IDataInputDecoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-binary-decoder Show documentation
Show all versions of java-binary-decoder Show documentation
Reflection based decoder for decoding binary stream of C-like structures
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