energyml.prodml2_0.SaturationPressure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of energyml-prodml20 Show documentation
Show all versions of energyml-prodml20 Show documentation
API to interract with energyml (resqml, witml, prodml)
//
// 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.prodml2_0;
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 energyml.common2_1.PressureMeasureExt;
/**
* Saturation pressure.
*
* Java class for SaturationPressure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SaturationPressure">
* <simpleContent>
* <extension base="<http://www.energistics.org/energyml/data/commonv2>PressureMeasureExt">
* <attribute name="kind" use="required" type="energyml.prodml2_0.SaturationPointKind" />
* </extension>
* </simpleContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SaturationPressure")
public class SaturationPressure
extends PressureMeasureExt
{
@XmlAttribute(name = "kind", required = true)
protected SaturationPointKind kind;
/**
* Gets the value of the kind property.
*
* @return
* possible object is
* {@link SaturationPointKind }
*
*/
public SaturationPointKind getKind() {
return kind;
}
/**
* Sets the value of the kind property.
*
* @param value
* allowed object is
* {@link SaturationPointKind }
*
*/
public void setKind(SaturationPointKind value) {
this.kind = value;
}
}