![JAR search and dependency download from the Maven repository](/logo.png)
energyml.common2_1.ThermalConductanceMeasure Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.10.13 at 08:02:05 PM UTC
//
package energyml.common2_1;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.XmlValue;
/**
* Java class for ThermalConductanceMeasure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ThermalConductanceMeasure">
* <simpleContent>
* <extension base="<http://www.energistics.org/energyml/data/commonv2>AbstractMeasure">
* <attribute name="uom" use="required" type="energyml.common2_1.ThermalConductanceUom" />
* </extension>
* </simpleContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ThermalConductanceMeasure", propOrder = {
"value"
})
public class ThermalConductanceMeasure {
@XmlValue
protected double value;
@XmlAttribute(name = "uom", required = true)
protected ThermalConductanceUom uom;
/**
* The intended abstract supertype of all quantities that have a value with a unit of measure. The unit of measure is in the uom attribute of the subtypes.
*
* This type allows all quantities to be profiled to be a 'float' instead of a 'double'.
*
*/
public double getValue() {
return value;
}
/**
* Sets the value of the value property.
*
*/
public void setValue(double value) {
this.value = value;
}
/**
* Gets the value of the uom property.
*
* @return
* possible object is
* {@link ThermalConductanceUom }
*
*/
public ThermalConductanceUom getUom() {
return uom;
}
/**
* Sets the value of the uom property.
*
* @param value
* allowed object is
* {@link ThermalConductanceUom }
*
*/
public void setUom(ThermalConductanceUom value) {
this.uom = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy