Class InputParameters
- All Implemented Interfaces:
Serializable
Java class for InputParameters complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="InputParameters"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice maxOccurs="unbounded"> <element name="Duration"> <complexType> <simpleContent> <extension base="<http://www.opentrafficsim.org/ots>DurationType"> <attribute name="Id" use="required" type="{http://www.opentrafficsim.org/ots}InputParameterIdType" /> </extension> </simpleContent> </complexType> </element> <element name="Length"> <complexType> <simpleContent> <extension base="<http://www.opentrafficsim.org/ots>LengthType"> <attribute name="Id" use="required" type="{http://www.opentrafficsim.org/ots}InputParameterIdType" /> </extension> </simpleContent> </complexType> </element> <element name="Speed"> <complexType> <simpleContent> <extension base="<http://www.opentrafficsim.org/ots>SpeedType"> <attribute name="Id" use="required" type="{http://www.opentrafficsim.org/ots}InputParameterIdType" /> </extension> </simpleContent> </complexType> </element> <element name="Acceleration"> <complexType> <simpleContent> <extension base="<http://www.opentrafficsim.org/ots>AccelerationType"> <attribute name="Id" use="required" type="{http://www.opentrafficsim.org/ots}InputParameterIdType" /> </extension> </simpleContent> </complexType> </element> <element name="LinearDensity"> <complexType> <simpleContent> <extension base="<http://www.opentrafficsim.org/ots>LinearDensityType"> <attribute name="Id" use="required" type="{http://www.opentrafficsim.org/ots}InputParameterIdType" /> </extension> </simpleContent> </complexType> </element> <element name="Frequency"> <complexType> <simpleContent> <extension base="<http://www.opentrafficsim.org/ots>FrequencyType"> <attribute name="Id" use="required" type="{http://www.opentrafficsim.org/ots}InputParameterIdType" /> </extension> </simpleContent> </complexType> </element> <element name="Double"> <complexType> <simpleContent> <extension base="<http://www.opentrafficsim.org/ots>double"> <attribute name="Id" use="required" type="{http://www.opentrafficsim.org/ots}InputParameterIdType" /> </extension> </simpleContent> </complexType> </element> <element name="Fraction"> <complexType> <simpleContent> <extension base="<http://www.opentrafficsim.org/ots>FractionType"> <attribute name="Id" use="required" type="{http://www.opentrafficsim.org/ots}InputParameterIdType" /> </extension> </simpleContent> </complexType> </element> <element name="Integer"> <complexType> <simpleContent> <extension base="<http://www.opentrafficsim.org/ots>integer"> <attribute name="Id" use="required" type="{http://www.opentrafficsim.org/ots}InputParameterIdType" /> </extension> </simpleContent> </complexType> </element> <element name="Boolean"> <complexType> <simpleContent> <extension base="<http://www.opentrafficsim.org/ots>boolean"> <attribute name="Id" use="required" type="{http://www.opentrafficsim.org/ots}InputParameterIdType" /> </extension> </simpleContent> </complexType> </element> <element name="String"> <complexType> <simpleContent> <extension base="<http://www.opentrafficsim.org/ots>string"> <attribute name="Id" use="required" type="{http://www.opentrafficsim.org/ots}InputParameterIdType" /> </extension> </simpleContent> </complexType> </element> <element name="Class"> <complexType> <simpleContent> <extension base="<http://www.opentrafficsim.org/ots>ClassNameType"> <attribute name="Id" use="required" type="{http://www.opentrafficsim.org/ots}InputParameterIdType" /> </extension> </simpleContent> </complexType> </element> </choice> </restriction> </complexContent> </complexType>
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Java class for anonymous complex type.static class
Java class for anonymous complex type.static class
Java class for anonymous complex type.static class
Java class for anonymous complex type.static class
Java class for anonymous complex type.static class
Java class for anonymous complex type.static class
Java class for anonymous complex type.static class
Java class for anonymous complex type.static class
Java class for anonymous complex type.static class
Java class for anonymous complex type.static class
Java class for anonymous complex type.static class
Java class for anonymous complex type. -
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGets the value of the durationOrLengthOrSpeed property.
-
Field Details
-
durationOrLengthOrSpeed
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.7", date="2024-08-29T18:50:16+02:00") protected List<Serializable> durationOrLengthOrSpeed
-
-
Constructor Details
-
InputParameters
public InputParameters()
-
-
Method Details
-
getDurationOrLengthOrSpeed
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.7", date="2024-08-29T18:50:16+02:00") public List<Serializable> getDurationOrLengthOrSpeed()Gets the value of the durationOrLengthOrSpeed property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
set
method for the durationOrLengthOrSpeed property.For example, to add a new item, do as follows:
getDurationOrLengthOrSpeed().add(newItem);
Objects of the following type(s) are allowed in the list
InputParameters.Acceleration
InputParameters.Boolean
InputParameters.Class
InputParameters.Double
InputParameters.Duration
InputParameters.Fraction
InputParameters.Frequency
InputParameters.Integer
InputParameters.Length
InputParameters.LinearDensity
InputParameters.Speed
InputParameters.String
-