NumericUtilities

Package: ghidra.util
Type: class

11.3_PUBLIC

addedfield: MAX_UNSIGNED_INT
static java.math.BigInteger MAX_UNSIGNED_INT
addedmethod: parseInt
static int parseInt(java.lang.String s, int defaultValue)
addedmethod: parseLong
static long parseLong(java.lang.String s, long defaultValue)
modifiedmethod: parseHexBigInteger
added throws NumberFormatException
- static java.math.BigInteger parseHexBigInteger(java.lang.String s)
+ static java.math.BigInteger parseHexBigInteger(java.lang.String s) throws NumberFormatException
modifiedmethod: parseHexLong
added throws NumberFormatException
- static long parseHexLong(java.lang.String s)
+ static long parseHexLong(java.lang.String s) throws NumberFormatException
modifiedmethod: parseInt
added throws NumberFormatException
- static int parseInt(java.lang.String s)
+ static int parseInt(java.lang.String s) throws NumberFormatException
modifiedmethod: parseLong
added throws NumberFormatException
- static long parseLong(java.lang.String s)
+ static long parseLong(java.lang.String s) throws NumberFormatException

11.2_PUBLIC

addedmethod: decodeBigInteger
static java.math.BigInteger decodeBigInteger(java.lang.String s)
addedmethod: parseInt
static int parseInt(java.lang.String s)

11.0_PUBLIC

modifiedmethod: parseHexBigInteger
param 1 renamed: numStr → s
- static java.math.BigInteger parseHexBigInteger(java.lang.String numStr)
+ static java.math.BigInteger parseHexBigInteger(java.lang.String s)
modifiedmethod: parseHexLong
param 1 renamed: numStr → s
- static long parseHexLong(java.lang.String numStr)
+ static long parseHexLong(java.lang.String s)
modifiedmethod: parseLong
param 1 renamed: numStr → s
- static long parseLong(java.lang.String numStr)
+ static long parseLong(java.lang.String s)
modifiedmethod: parseNumber
param 1 renamed: numStr → s
- static java.lang.Long parseNumber(java.lang.String numStr, java.lang.Long defaultValue)
+ static java.lang.Long parseNumber(java.lang.String s, java.lang.Long defaultValue)
removedmethod: parseOctLong
static long parseOctLong(java.lang.String numStr)

10.2_PUBLIC

addedmethod: parseNumber
static java.lang.Long parseNumber(java.lang.String numStr, java.lang.Long defaultValue)
addedmethod: unsignedLongToDouble
static double unsignedLongToDouble(long val)

9.2_PUBLIC

addedfield: MAX_UNSIGNED_INT32_AS_LONG
static long MAX_UNSIGNED_INT32_AS_LONG

9.0.1_PUBLIC

introducedInitial version