Uses of Class
de.cuioss.tools.codec.DecoderException

Packages that use DecoderException
Package
Description
Provides types and structures similiar to https://github.com/apache/commons-codec.
  • Uses of DecoderException in de.cuioss.tools.codec

    Modifier and Type
    Method
    Description
    byte[]
    Hex.decode(byte[] array)
    Converts an array of character bytes representing hexadecimal values into an array of bytes of those same values.
    Hex.decode(Object object)
    Converts a String or an array of character bytes representing hexadecimal values into an array of bytes of those same values.
    byte[]
    Hex.decode(ByteBuffer buffer)
    Converts a buffer of character bytes representing hexadecimal values into an array of bytes of those same values.
    static byte[]
    Hex.decodeHex(char[] data)
    Converts an array of characters representing hexadecimal values into an array of bytes of those same values.
    static byte[]
    Hex.decodeHex(String data)
    Converts a String representing hexadecimal values into an array of bytes of those same values.
    protected static int
    Hex.toDigit(char ch, int index)
    Converts a hexadecimal character to an integer.