static SingleBound<Double> |
SingleBound.lowerExclusive(double bound) |
Creates a lower exclusive bound; value > bound .
|
static <T extends AbstractDoubleScalar<?,?>> SingleBound<T> |
SingleBound.lowerExclusive(T bound) |
Creates a lower exclusive bound; value > bound .
|
static SingleBound<Double> |
SingleBound.lowerInclusive(double bound) |
Creates a lower inclusive bound; value >= bound .
|
static <T extends AbstractDoubleScalar<?,?>> SingleBound<T> |
SingleBound.lowerInclusive(T bound) |
Creates a lower inclusive bound; value >= bound .
|
static SingleBound<Double> |
SingleBound.upperExclusive(double bound) |
Creates an upper exclusive bound; value < bound .
|
static <T extends AbstractDoubleScalar<?,?>> SingleBound<T> |
SingleBound.upperExclusive(T bound) |
Creates an upper exclusive bound; value < bound .
|
static SingleBound<Double> |
SingleBound.upperInclusive(double bound) |
Creates an upper inclusive bound; value <= bound .
|
static <T extends AbstractDoubleScalar<?,?>> SingleBound<T> |
SingleBound.upperInclusive(T bound) |
Creates an upper inclusive bound; value <= bound .
|