This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Hex { | |
private static final char[] HEX_DIGITS = new char[] { | |
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' | |
}; | |
private static final char[] FIRST_CHAR = new char[256]; | |
private static final char[] SECOND_CHAR = new char[256]; | |
static { |