Get the hexadecimal byte for the given index. @param index the index into the hex table @return the hexadecimal byte
(int index)
| 83 | * @return the hexadecimal byte |
| 84 | */ |
| 85 | public static byte getHex(int index) { |
| 86 | return HEX[index]; |
| 87 | } |
| 88 | |
| 89 | |
| 90 | /** |
no outgoing calls
no test coverage detected