Skip navigation links
B C H I N P V 

B

bytesToHex(byte[], Hex.HexCase, String) - Static method in class net.lbruun.hexutils.Hex
Converts a byte array to its hexadecimal representation.
bytesToHexHarmless(byte[]) - Static method in class net.lbruun.hexutils.HexHarmless
Converts a byte array to its harmless hexadecimal representation.
bytesToHexStr(byte[], Hex.HexCase, String) - Static method in class net.lbruun.hexutils.Hex
Converts a byte array to its hexadecimal representation and returns the result as a string.
bytesToHexStr(byte[], Hex.HexCase) - Static method in class net.lbruun.hexutils.Hex
Converts a byte array to its hexadecimal representation and returns the result as a string.
bytesToHexStr(byte[], Hex.HexCase, String, StringBuilder) - Static method in class net.lbruun.hexutils.Hex
Converts a byte array to its hexadecimal representation and appends the result to the provided StringBuilder.
bytesToHexStr(byte[], Hex.HexCase, StringBuilder) - Static method in class net.lbruun.hexutils.Hex
Converts a byte array to its hexadecimal representation and appends the result to the provided StringBuilder.
bytesToHexStreaming(InputStream, OutputStream, Hex.HexCase, String) - Static method in class net.lbruun.hexutils.Hex
Converts a stream of bytes (from an InputStream) to its hexadecimal character representation and writes the result to the provided OutputStream.
bytesToHexStreaming(Path, Path, Hex.HexCase, String, int, OpenOption...) - Static method in class net.lbruun.hexutils.Hex
Converts the content of a file to its hexadecimal character representation and writes the result to another file.
bytesToHexStrHarmless(byte[]) - Static method in class net.lbruun.hexutils.HexHarmless
Converts a byte array to its harmless hexadecimal representation.
byteToHex(byte, Hex.HexCase) - Static method in class net.lbruun.hexutils.Hex
Converts a single byte to its hexadecimal representation.
byteToHexHarmless(byte) - Static method in class net.lbruun.hexutils.HexHarmless
Converts a single byte to its harmless hexadecimal representation.

C

convertFromHarmless(char) - Static method in class net.lbruun.hexutils.HexHarmless
Returns classic hex char equivalent of the input harmless hex char.
convertFromHarmless(char[]) - Static method in class net.lbruun.hexutils.HexHarmless
Replaces harmless hex characters in the input array with their classic hex char equivalents.
convertToHarmless(char) - Static method in class net.lbruun.hexutils.HexHarmless
Returns harmless equivalent of the input hex char.
convertToHarmless(char[]) - Static method in class net.lbruun.hexutils.HexHarmless
Replaces classic hex characters in the input array with their harmless equivalents.

H

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.

I

isHexChar(char) - Static method in class net.lbruun.hexutils.Hex
Tests if a character is a hex character.
isHexStr(String) - Static method in class net.lbruun.hexutils.Hex
Tests if a string only contains hex characters.

N

net.lbruun.hexutils - package net.lbruun.hexutils
 

P

prettyPrint(byte[], Hex.HexCase, int, int, PrintStream) - Static method in class net.lbruun.hexutils.HexDump
Dump hex output and output into a PrintStream.
prettyPrint(byte[], PrintStream) - Static method in class net.lbruun.hexutils.HexDump
Dump hex output and output into a PrintStream.
prettyPrint(byte[], Hex.HexCase, int, int) - Static method in class net.lbruun.hexutils.HexDump
Dump hex output and return result as a String array where each string represents a line of output.
prettyPrint(byte[]) - Static method in class net.lbruun.hexutils.HexDump
Dump hex output and return result as a String array where each string represents a line of output.
prettyPrintStr(byte[], Hex.HexCase, int, int, String) - Static method in class net.lbruun.hexutils.HexDump
Dump hex output and return result as a String.
prettyPrintStr(byte[], Hex.HexCase, int, int) - Static method in class net.lbruun.hexutils.HexDump
Dump hex output and return result as a String.
prettyPrintStr(byte[]) - Static method in class net.lbruun.hexutils.HexDump
Dump hex output and return result as a String.

V

valueOf(String) - Static method in enum net.lbruun.hexutils.Hex.HexCase
Returns the enum constant of this type with the specified name.
values() - Static method in enum net.lbruun.hexutils.Hex.HexCase
Returns an array containing the constants of this enum type, in the order they are declared.
B C H I N P V 
Skip navigation links

Copyright © 2022 lbruun.net. All rights reserved.