List of utility methods to do Number Value Of
T | valueOf(T v) value Of return v;
|
int | valueOfHexDigit(char digit) value Of Hex Digit return digit <= '9' ? digit - '0' : digit - 'A' + 10; |
double | valueOfHexDoubleLiteral(char[] source) Returns the double value corresponding to the given hexadecimal floating-point double precision literal. return Double.parseDouble(new String(source)); |
double | valueOfHexDoubleLiteral(char[] source) Returns the double value corresponding to the given hexadecimal floating-point double precision literal. long bits = convertHexFloatingPointLiteralToBits(source); return Double.longBitsToDouble(bits); |