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

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

Introduction

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

The text is from its open source code.

Subclass

org.apache.commons.codec.binary.Hex has subclasses.
Click this link to see all its subclasses.

Constructor

Hex()
Creates a new codec with the default charset name #DEFAULT_CHARSET_NAME
Hex(String csName)
Creates a new codec with the given charset name.

Method

byte[]decode(byte[] array)
Converts an array of character bytes representing hexadecimal values into an array of bytes of those same values.
Objectdecode(Object object)
Converts a String or an array of character bytes representing hexadecimal values into an array of bytes of those same values.
byte[]decodeHex(char[] data)
Converts an array of characters representing hexadecimal values into an array of bytes of those same values.
byte[]encode(byte[] array)
Converts an array of bytes into an array of bytes for the characters representing the hexadecimal values of each byte in order.
Objectencode(Object object)
Converts a String or an array of bytes into an array of characters representing the hexadecimal values of each byte in order.
char[]encodeHex(byte[] data)
Converts an array of bytes into an array of characters representing the hexadecimal values of each byte in order.
char[]encodeHex(byte[] data, boolean toLowerCase)
Converts an array of bytes into an array of characters representing the hexadecimal values of each byte in order.
char[]encodeHex(byte[] data, char[] toDigits)
Converts an array of bytes into an array of characters representing the hexadecimal values of each byte in order.
StringencodeHexString(byte[] data)
Converts an array of bytes into a String representing the hexadecimal values of each byte in order.
StringgetCharsetName()
Gets the charset name.