Uses of Interface
org.opentrafficsim.base.parameters.constraint.Constraint
Package
Description
Simulation parameters.
Constraints of parameters.
-
Uses of Constraint in org.opentrafficsim.base.parameters
Modifier and TypeMethodDescriptionfinal Constraint<? super T>
ParameterType.getConstraint()
Retrieve the constraint.ModifierConstructorDescriptionParameterType
(String id, String description, Class<T> valueClass, Constraint<? super T> constraint) Construct a new AbstractParameterType without default value and with constraint.ParameterType
(String id, String description, Class<T> valueClass, T defaultValue, Constraint<? super T> constraint) Construct a new AbstractParameterType with default value and constraint.ParameterTypeAcceleration
(String id, String description, org.djunits.value.vdouble.scalar.Acceleration defaultValue, Constraint<? super org.djunits.value.vdouble.scalar.Acceleration> constraint) Construct a new ParameterTypeAcceleration with default value and check.ParameterTypeAcceleration
(String id, String description, Constraint<? super org.djunits.value.vdouble.scalar.Acceleration> constraint) Construct a new ParameterTypeAcceleration without default value, with check.ParameterTypeClass
(String id, String description, Class<Class<? extends T>> valueClass, Class<? extends T> defaultValue, Constraint<? super Class<? extends T>> constraint) Constructor with default value and check.ParameterTypeClass
(String id, String description, Class<Class<? extends T>> valueClass, Constraint<? super Class<? extends T>> constraint) Constructor without default value, with check.ParameterTypeClassList
(String id, String description, Class<List<Class<? extends T>>> valueClass, List<Class<? extends T>> defaultValue, Constraint<? super List<Class<? extends T>>> constraint) Constructor with default value and check.ParameterTypeClassList
(String id, String description, Class<List<Class<? extends T>>> valueClass, Constraint<? super List<Class<? extends T>>> constraint) Constructor without default value, with check.ParameterTypeDouble
(String id, String description, double defaultValue, Constraint<? super Double> constraint) Construct a new ParameterTypeDouble with default value and check.ParameterTypeDouble
(String id, String description, Double defaultValue, Constraint<Number> constraint) Construct a new ParameterTypeDouble with default value and check.ParameterTypeDouble
(String id, String description, Constraint<? super Double> constraint) Construct a new ParameterTypeDouble without default value, with check.ParameterTypeDuration
(String id, String description, org.djunits.value.vdouble.scalar.Duration defaultValue, Constraint<? super org.djunits.value.vdouble.scalar.Duration> constraint) Construct a new ParameterTypeDuration with default value and check.ParameterTypeDuration
(String id, String description, Constraint<? super org.djunits.value.vdouble.scalar.Duration> constraint) Construct a new ParameterTypeDuration without default value, with check.ParameterTypeFrequency
(String id, String description, org.djunits.value.vdouble.scalar.Frequency defaultValue, Constraint<? super org.djunits.value.vdouble.scalar.Frequency> constraint) Construct a new ParameterTypeFrequency with default value and check.ParameterTypeFrequency
(String id, String description, Constraint<? super org.djunits.value.vdouble.scalar.Frequency> constraint) Construct a new ParameterTypeFrequency without default value, with check.ParameterTypeInteger
(String id, String description, int defaultValue, Constraint<? super Integer> constraint) Construct a new ParameterTypeInteger with default value and check.ParameterTypeInteger
(String id, String description, Integer defaultValue, Constraint<Number> constraint) Construct a new ParameterTypeInteger with default value and check.ParameterTypeInteger
(String id, String description, Constraint<? super Integer> constraint) Construct a new ParameterTypeInteger without default value, with check.ParameterTypeLength
(String id, String description, org.djunits.value.vdouble.scalar.Length defaultValue, Constraint<? super org.djunits.value.vdouble.scalar.Length> constraint) Construct a new ParameterTypeLength with default value and check.ParameterTypeLength
(String id, String description, Constraint<? super org.djunits.value.vdouble.scalar.Length> constraint) Construct a new ParameterTypeLength without default value, with check.ParameterTypeLinearDensity
(String id, String description, org.djunits.value.vdouble.scalar.LinearDensity defaultValue, Constraint<? super org.djunits.value.vdouble.scalar.LinearDensity> constraint) Construct a new ParameterTypeLinearDensity with default value and check.ParameterTypeLinearDensity
(String id, String description, Constraint<? super org.djunits.value.vdouble.scalar.LinearDensity> constraint) Construct a new ParameterTypeLinearDensity without default value, with check.ParameterTypeNumeric
(String id, String description, Class<T> valueClass, Constraint<? super T> constraint) Constructor without default value, with check.ParameterTypeNumeric
(String id, String description, Class<T> valueClass, T defaultValue, Constraint<? super T> constraint) Constructor with default value and check.ParameterTypeSpeed
(String id, String description, org.djunits.value.vdouble.scalar.Speed defaultValue, Constraint<? super org.djunits.value.vdouble.scalar.Speed> constraint) Constructor a new ParameterTypeSpeed with default value and check.ParameterTypeSpeed
(String id, String description, Constraint<? super org.djunits.value.vdouble.scalar.Speed> constraint) Constructor a new ParameterTypeSpeed without default value, with check.ParameterTypeString
(String id, String description, String defaultValue, Constraint<? super String> constraint) ParameterTypeString
(String id, String description, Constraint<? super String> constraint) -
Uses of Constraint in org.opentrafficsim.base.parameters.constraint
Modifier and TypeClassDescriptionfinal class
Constraint that checks whether a collection of classes is a sub collection of constraint collection.final class
Constraint that checks whether the value is any of a given collection of classes, where each class is a sub class of a given type.class
Constraint that checks whether a value is in a given constraint collection.final class
Continuous constraints with a dual bound.class
Constraint containing multiple constraints.enum
List of default constraint for ParameterTypes.class
SingleBound<T extends Number>
Continuous constraints with a single bound.class
Constraint that checks whether a collection (the parameter value) is a subset of a constraint collection.Modifier and TypeFieldDescriptionstatic final Constraint<Number>
ConstraintInterface.ATLEASTONE
static final Constraint<Number>
ConstraintInterface.NEGATIVE
static final Constraint<Number>
ConstraintInterface.NEGATIVEZERO
static final Constraint<Number>
ConstraintInterface.NONZERO
static final Constraint<Number>
ConstraintInterface.POSITIVE
static final Constraint<Number>
ConstraintInterface.POSITIVEZERO
static final Constraint<Number>
ConstraintInterface.UNITINTERVAL
Modifier and TypeMethodDescriptionstatic final <T> MultiConstraint<T>
MultiConstraint.create
(Constraint<? super T>... constraints) Creates aMultiConstraint
from given constraints.ModifierConstructorDescriptionMultiConstraint
(Set<Constraint<? super T>> constraints) Constructor.