mirror of
https://github.com/corda/corda.git
synced 2025-06-16 06:08:13 +00:00
Added missing MIX/MAX_VALUE for basic types.
This commit is contained in:
@ -17,6 +17,9 @@ public final class Double extends Number {
|
||||
public static final double POSITIVE_INFINITY = 1.0 / 0.0;
|
||||
public static final double NaN = 0.0 / 0.0;
|
||||
|
||||
public static final double MIN_VALUE = 2.22507385850720138309e-308;
|
||||
public static final double MAX_VALUE = 1.79769313486231570815e+308;
|
||||
|
||||
private final double value;
|
||||
|
||||
public Double(String value) {
|
||||
|
Reference in New Issue
Block a user