![JAR search and dependency download from the Maven repository](/logo.png)
panda.codec.BinaryDecoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panda-core Show documentation
Show all versions of panda-core Show documentation
Panda Core is the core module of Panda Framework, it contains commonly used utility classes similar to apache-commons.
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