Uses of Class
org.opentrafficsim.base.parameters.constraint.DualBound

Packages that use DualBound
Package
Description
Constraints of parameters.
  • Uses of DualBound in org.opentrafficsim.base.parameters.constraint

    Modifier and Type
    Field
    Description
    static final DualBound<Number>
    DualBound.UNITINTERVAL
    Standard dual bound on the unit interval [0...1].
    Modifier and Type
    Method
    Description
    DualBound.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.