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

panda.codec.BinaryDecoder Maven / Gradle / Ivy

Go to download

Panda Core is the core module of Panda Framework, it contains commonly used utility classes similar to apache-commons.

There is a newer version: 1.8.0
Show newest version
package panda.codec;

/**
 * Defines common decoding methods for byte array decoders.
 */
public interface BinaryDecoder extends Decoder {
	/**
	 * Decodes a byte array and returns the results as a byte array.
	 * 
	 * @param pArray A byte array which has been encoded with the appropriate encoder
	 * @return a byte array that contains decoded content
	 * @throws DecoderException A decoder exception is thrown if a Decoder encounters a failure
	 *             condition during the decode process.
	 */
	byte[] decode(byte[] pArray) throws DecoderException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy