Java org.apache.commons.codec.binary BinaryCodec fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.codec.binary BinaryCodec fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.codec.binary BinaryCodec.

The text is from its open source code.

Constructor

Method

Objectdecode(Object ascii)
Decodes a byte array where each byte represents an ascii '0' or '1'.
byte[]decode(byte[] ascii)
Decodes a byte array where each byte represents an ascii '0' or '1'.
byte[]encode(byte[] raw)
Converts an array of raw binary data into an array of ascii 0 and 1 characters.
Objectencode(Object raw)
Converts an array of raw binary data into an array of ascii 0 and 1 chars.
byte[]fromAscii(char[] ascii)
Decodes a byte array where each char represents an ascii '0' or '1'.
byte[]fromAscii(byte[] ascii)
Decodes a byte array where each byte represents an ascii '0' or '1'.
char[]toAsciiChars(byte[] raw)
Converts an array of raw binary data into an array of ascii 0 and 1 characters.
StringtoAsciiString(byte[] raw)
Converts an array of raw binary data into a String of ascii 0 and 1 characters.