com.foursoft.vecmodel.vec113.VecValueRange Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.08.10 at 09:49:21 AM UTC
//
package com.foursoft.vecmodel.vec113;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.foursoft.vecmodel.vec113.visitor.Visitable;
import com.foursoft.vecmodel.vec113.visitor.Visitor;
/**
* 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>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ValueRange", propOrder = {
"minimum",
"maximum"
})
public class VecValueRange
extends VecValueWithUnit
implements Serializable, Visitable
{
private final static long serialVersionUID = 1L;
/**
* Lower bound of the value range.
*
*/
@XmlElement(name = "Minimum")
protected double minimum;
/**
* Upper bound of the value range.
*
*/
@XmlElement(name = "Maximum")
protected double maximum;
/**
* Gets the value of the minimum property.
*
*
Lower bound of the value range.
*
*/
public double getMinimum() {
return minimum;
}
/**
* Sets the value of the minimum property.
*
* @see #getMinimum()
*/
public void setMinimum(double value) {
this.minimum = value;
}
/**
* Gets the value of the maximum property.
*
*
Upper bound of the value range.
*
*/
public double getMaximum() {
return maximum;
}
/**
* Sets the value of the maximum property.
*
* @see #getMaximum()
*/
public void setMaximum(double value) {
this.maximum = value;
}
publicR accept(Visitor aVisitor)
throws E
{
return aVisitor.visitVecValueRange(this);
}
}