Yet Another WebIOPi+
 All Classes Namespaces Files Functions Variables Macros Pages
Public Member Functions | List of all members
org.apache.commons.codec.BinaryDecoder Interface Reference
Inheritance diagram for org.apache.commons.codec.BinaryDecoder:
org.apache.commons.codec.Decoder org.apache.commons.codec.binary.BaseNCodec org.apache.commons.codec.binary.Base64

Public Member Functions

byte[] decode (byte[] source) throws DecoderException
 
- Public Member Functions inherited from org.apache.commons.codec.Decoder
Object decode (Object source) throws DecoderException
 

Detailed Description

Defines common decoding methods for byte array decoders.

Version
$Id$

Definition at line 25 of file BinaryDecoder.java.

Member Function Documentation

byte [] org.apache.commons.codec.BinaryDecoder.decode ( byte[]  source) throws DecoderException

Decodes a byte array and returns the results as a byte array.

Parameters
sourceA byte array which has been encoded with the appropriate encoder
Returns
a byte array that contains decoded content
Exceptions
DecoderExceptionA decoder exception is thrown if a Decoder encounters a failure condition during the decode process.

The documentation for this interface was generated from the following file: