Uses of Class
org.opentrafficsim.base.parameters.constraint.SingleBound
Package | Description |
---|---|
org.opentrafficsim.base.parameters.constraint |
Constraints of parameters.
|
-
Uses of SingleBound in org.opentrafficsim.base.parameters.constraint
Subclasses of SingleBound in org.opentrafficsim.base.parameters.constraint Modifier and Type Class Description class
DualBound<T extends java.lang.Number>
Continuous constraints with a dual bound.Methods in org.opentrafficsim.base.parameters.constraint that return SingleBound Modifier and Type Method Description static SingleBound<java.lang.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<java.lang.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<java.lang.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<java.lang.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
.