| org.odata4j.repack.org.apache.commons.codec.BinaryDecoder |
Known Indirect Subclasses
| Base64 |
Provides Base64 encoding and decoding as defined by RFC 2045. |
| Hex |
Hex encoder and decoder. |
|
Class Overview
Defines common decoding methods for byte array decoders.
Summary
| Public Methods |
|
abstract
byte[]
|
decode(byte[] pArray)
Decodes a byte array and returns the results as a byte array.
|
Public Methods
public
abstract
byte[]
decode
(byte[] pArray)
Decodes a byte array and returns the results as a byte array.
Parameters
| pArray
| A byte array which has been encoded with the appropriate encoder |
Returns
- 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.
|