Uses of Class
org.opentrafficsim.base.parameters.constraint.DualBound
Packages that use DualBound
-
Uses of DualBound in org.opentrafficsim.base.parameters.constraint
Fields in org.opentrafficsim.base.parameters.constraint declared as DualBoundModifier and TypeFieldDescriptionDualBound.UNITINTERVAL
Standard dual bound on the unit interval [0...1].Methods in org.opentrafficsim.base.parameters.constraint that return DualBoundModifier and TypeMethodDescriptionDualBound.closed
(double lowerBound, double upperBound) Creates a dual bound including the bounds;lowerBound <= value <= upperBound
.static <T extends org.djunits.value.vdouble.scalar.base.DoubleScalar<?,
?>>
DualBound<T>DualBound.closed
(T lowerBound, T upperBound) Creates a dual bound including the bounds;lowerBound <= value <= upperBound
.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 org.djunits.value.vdouble.scalar.base.DoubleScalar<?,
?>>
DualBound<T>DualBound.leftClosedRightOpen
(T lowerBound, T upperBound) Creates a dual bound including the lower bound and excluding the upper bound;lowerBound <= value < upperBound
.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 org.djunits.value.vdouble.scalar.base.DoubleScalar<?,
?>>
DualBound<T>DualBound.leftOpenRightClosed
(T lowerBound, T upperBound) Creates a dual bound excluding the lower bound and including the upper bound;lowerBound < value <= upperBound
.DualBound.open
(double lowerBound, double upperBound) Creates a dual bound excluding the bounds;lowerBound < value < upperBound
.static <T extends org.djunits.value.vdouble.scalar.base.DoubleScalar<?,
?>>
DualBound<T>DualBound.open
(T lowerBound, T upperBound) Creates a dual bound excluding the bounds;lowerBound < value < upperBound
.