static DualBound<Double> |
DualBound.closed(double lowerBound,
double upperBound) |
Creates a dual bound including the bounds; lowerBound <= value <= upperBound .
|
static <T extends AbstractDoubleScalar<?,?>> DualBound<T> |
DualBound.closed(T lowerBound,
T upperBound) |
Creates a dual bound including the bounds; lowerBound <= value <= upperBound .
|
static DualBound<Double> |
DualBound.leftClosedRightOpen(double lowerBound,
double upperBound) |
Creates a dual bound including the lower bound and excluding the upper bound;
lowerBound <= value < upperBound .
|
static <T extends AbstractDoubleScalar<?,?>> DualBound<T> |
DualBound.leftClosedRightOpen(T lowerBound,
T upperBound) |
Creates a dual bound including the lower bound and excluding the upper bound;
lowerBound <= value < upperBound .
|
static DualBound<Double> |
DualBound.leftOpenRightClosed(double lowerBound,
double upperBound) |
Creates a dual bound excluding the lower bound and including the upper bound;
lowerBound < value <= upperBound .
|
static <T extends AbstractDoubleScalar<?,?>> DualBound<T> |
DualBound.leftOpenRightClosed(T lowerBound,
T upperBound) |
Creates a dual bound excluding the lower bound and including the upper bound;
lowerBound < value <= upperBound .
|
static DualBound<Double> |
DualBound.open(double lowerBound,
double upperBound) |
Creates a dual bound excluding the bounds; lowerBound < value < upperBound .
|
static <T extends AbstractDoubleScalar<?,?>> DualBound<T> |
DualBound.open(T lowerBound,
T upperBound) |
Creates a dual bound excluding the bounds; lowerBound < value < upperBound .
|