Class VecValueRange

java.lang.Object
com.foursoft.harness.vec.v113.VecValueWithUnit
com.foursoft.harness.vec.v113.VecValueRange
All Implemented Interfaces:
Identifiable, ModifiableIdentifiable, Visitable, Serializable

public class VecValueRange extends VecValueWithUnit implements Serializable, Visitable

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 Details

    • minimum

      protected double minimum

      Lower bound of the value range.

    • maximum

      protected double maximum

      Upper 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

      public <R, E extends Throwable> R accept(Visitor<R,E> aVisitor) throws E
      Specified by:
      accept in interface Visitable
      Throws:
      E extends Throwable