java.lang.Object
com.foursoft.harness.vec.v113.VecValueWithUnit
com.foursoft.harness.vec.v113.VecValueRange
- All Implemented Interfaces:
Identifiable,ModifiableIdentifiable,Visitable,Serializable
A pair of numerical values representing a value range.
Java class for ValueRange complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ValueRange">
<complexContent>
<extension base="{http://www.prostep.org/ecad-if/2011/vec}ValueWithUnit">
<sequence>
<element name="Minimum" type="{http://www.w3.org/2001/XMLSchema}double"/>
<element name="Maximum" type="{http://www.w3.org/2001/XMLSchema}double"/>
</sequence>
</extension>
</complexContent>
</complexType>
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected doubleUpper bound of the value range.protected doubleLower bound of the value range.Fields inherited from class com.foursoft.harness.vec.v113.VecValueWithUnit
unitComponent, xmlId -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<R,E extends Throwable>
RdoubleGets the value of the maximum property.doubleGets the value of the minimum property.voidsetMaximum(double value) Sets the value of the maximum property.voidsetMinimum(double value) Sets the value of the minimum property.Methods inherited from class com.foursoft.harness.vec.v113.VecValueWithUnit
getUnitComponent, getXmlId, setUnitComponent, setXmlId, toString
-
Field Details
-
minimum
protected double minimumLower bound of the value range.
-
maximum
protected double maximumUpper bound of the value range.
-
-
Constructor Details
-
VecValueRange
public VecValueRange()
-
-
Method Details
-
getMinimum
public double getMinimum()Gets the value of the minimum property.Lower bound of the value range.
-
setMinimum
public void setMinimum(double value) Sets the value of the minimum property.- See Also:
-
getMaximum
public double getMaximum()Gets the value of the maximum property.Upper bound of the value range.
-
setMaximum
public void setMaximum(double value) Sets the value of the maximum property.- See Also:
-
accept
-