org.jboss.seam.util
public class Hex extends Object
| Constructor and Description |
|---|
Hex() |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
decode(byte[] array)
Converts an array of character bytes representing hexidecimal values into an
array of bytes of those same values.
|
Object |
decode(Object object)
Converts a String or an array of character bytes representing hexidecimal values into an
array of bytes of those same values.
|
static byte[] |
decodeHex(char[] data)
Converts an array of characters representing hexidecimal 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
hexidecimal values of each byte in order.
|
Object |
encode(Object object)
Converts a String or an array of bytes into an array of characters representing the
hexidecimal values of each byte in order.
|
static char[] |
encodeHex(byte[] data)
Converts an array of bytes into an array of characters representing the hexidecimal values of each byte in order.
|
protected static int |
toDigit(char ch,
int index)
Converts a hexadecimal character to an integer.
|
public static byte[] decodeHex(char[] data)
throws RuntimeException
data - An array of characters containing hexidecimal digitsRuntimeException - Thrown if an odd number or illegal of characters
is suppliedprotected static int toDigit(char ch,
int index)
throws RuntimeException
ch - A character to convert to an integer digitindex - The index of the character in the sourceRuntimeException - Thrown if ch is an illegal hex characterpublic static char[] encodeHex(byte[] data)
data - a byte[] to convert to Hex characterspublic byte[] decode(byte[] array)
throws RuntimeException
array - An array of character bytes containing hexidecimal digitsRuntimeException - Thrown if an odd number of characters is supplied
to this functiondecodeHex(char[])public Object decode(Object object) throws RuntimeException
object - A String or, an array of character bytes containing hexidecimal digitsRuntimeException - Thrown if an odd number of characters is supplied
to this function or the object is not a String or char[]decodeHex(char[])public byte[] encode(byte[] array)
array - a byte[] to convert to Hex charactersencodeHex(byte[])public Object encode(Object object) throws RuntimeException
object - a String, or byte[] to convert to Hex charactersRuntimeException - Thrown if the given object is not a String or byte[]encodeHex(byte[])Copyright © 2015 Seam Framework. All Rights Reserved.