- HARMLESS_HEX_CHARS - Static variable in class net.lbruun.hexutils.HexHarmless
-
Characters allowed in harmless hex representation.
- HARMLESS_HEX_REGEXP_CHARCLASS - Static variable in class net.lbruun.hexutils.HexHarmless
-
Regular expression character set with the characters that are
allowed in harmless hex representation.
- Hex - Class in net.lbruun.hexutils
-
Utilities for converting byte(s) into hexadecimal character/string
representation and vice versa.
- Hex.HexCase - Enum in net.lbruun.hexutils
-
Case used for hex string.
- HEX_CHARS_LOWER - Static variable in class net.lbruun.hexutils.Hex
-
Characters allowed in hex representation (lower-case)
- HEX_CHARS_UPPER - Static variable in class net.lbruun.hexutils.Hex
-
Characters allowed in hex representation (upper-case)
- HEX_REGEXP_CHARCLASS - Static variable in class net.lbruun.hexutils.Hex
-
Regular expression character set with the characters that are
allowed in hex representation.
- hexCharHarmlessToByte(char, char) - Static method in class net.lbruun.hexutils.HexHarmless
-
Converts a harmless hex character pair into a byte.
- hexCharToByte(char, char) - Static method in class net.lbruun.hexutils.Hex
-
Converts a hex character pair into a byte.
- HexConversionException - Exception in net.lbruun.hexutils
-
Thrown when hex input contains illegal characters.
- HexConversionException(String) - Constructor for exception net.lbruun.hexutils.HexConversionException
-
- HexDump - Class in net.lbruun.hexutils
-
Utilities for pretty printing a byte array, also known as "hex dumps".
- HexHarmless - Class in net.lbruun.hexutils
-
Utilities for converting to/from harmless hex characters.
- hexStrHarmlessToBytes(char[]) - Static method in class net.lbruun.hexutils.HexHarmless
-
Converts a character array consisting of harmless hexadecimal
characters into a byte array.
- hexStrHarmlessToBytes(CharSequence) - Static method in class net.lbruun.hexutils.HexHarmless
-
Converts a character sequence (a string) consisting of harmless hexadecimal
characters into a byte array.
- hexStrToBytes(char[], String) - Static method in class net.lbruun.hexutils.Hex
-
Converts a character sequence (a string) consisting of hexadecimal
characters into a byte array.
- hexStrToBytes(char[]) - Static method in class net.lbruun.hexutils.Hex
-
Converts a character sequence (a string) consisting of hexadecimal
characters into a byte array.
- hexStrToBytes(CharSequence, String) - Static method in class net.lbruun.hexutils.Hex
-
Converts a character sequence (a string) consisting of hexadecimal
characters into a byte array.
- hexStrToBytes(CharSequence) - Static method in class net.lbruun.hexutils.Hex
-
Converts a character sequence (a string) consisting of hexadecimal
characters into a byte array.
- hexToBytesStreaming(InputStream, OutputStream, String) - Static method in class net.lbruun.hexutils.Hex
-
Converts an input stream of hexadecimal characters characters into bytes
and writes the resulting bytes to output stream.
- hexToBytesStreaming(Path, Path, String, OpenOption...) - Static method in class net.lbruun.hexutils.Hex
-
Converts the content of a hex file file to its byte representation and
writes the result to another file.