cm.format.json.JsonInt
now stores the numeric value as int64 instead of int. Be careful when calling JsonInt.int()
as the returned value will be incorrect if the real value is not between minInt
and maxInt
.
// Max int value. public const int maxInt = 2147483647; // Min int value. public const int minInt = (-2147483647 - 1);