Uses of Class
org.opentrafficsim.base.parameters.constraint.DualBound
Package | Description |
---|---|
org.opentrafficsim.base.parameters.constraint |
Constraints of parameters.
|
-
Uses of DualBound in org.opentrafficsim.base.parameters.constraint
Fields in org.opentrafficsim.base.parameters.constraint declared as DualBound Modifier and Type Field Description static DualBound<java.lang.Number>
DualBound. UNITINTERVAL
Standard dual bound on the unit interval [0...1].Methods in org.opentrafficsim.base.parameters.constraint that return DualBound Modifier and Type Method Description static DualBound<java.lang.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<java.lang.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<java.lang.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<java.lang.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
.