energyml.prodml2_0.GeologyFeature Maven / Gradle / Ivy
Show all versions of energyml-prodml20 Show documentation
//
// 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 java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Geology features found in the location of the borehole string.
*
* Java class for GeologyFeature complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GeologyFeature">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Name" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
* <element name="GeologyType" type="energyml.prodml2_0.GeologyType" minOccurs="0"/>
* <element name="MdTop" type="energyml.prodml2_0.MeasuredDepthCoord" minOccurs="0"/>
* <element name="MdBottom" type="energyml.prodml2_0.MeasuredDepthCoord" minOccurs="0"/>
* <element name="TvdTop" type="energyml.prodml2_0.WellVerticalDepthCoord" minOccurs="0"/>
* <element name="TvdBottom" type="energyml.prodml2_0.WellVerticalDepthCoord" minOccurs="0"/>
* </sequence>
* <attribute name="uid" use="required" type="energyml.common2_1.String64" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GeologyFeature", propOrder = {
"name",
"geologyType",
"mdTop",
"mdBottom",
"tvdTop",
"tvdBottom"
})
public class GeologyFeature {
@XmlElement(name = "Name")
protected List name;
@XmlElement(name = "GeologyType")
@XmlSchemaType(name = "string")
protected GeologyType geologyType;
@XmlElement(name = "MdTop")
protected MeasuredDepthCoord mdTop;
@XmlElement(name = "MdBottom")
protected MeasuredDepthCoord mdBottom;
@XmlElement(name = "TvdTop")
protected WellVerticalDepthCoord tvdTop;
@XmlElement(name = "TvdBottom")
protected WellVerticalDepthCoord tvdBottom;
@XmlAttribute(name = "uid", required = true)
protected String uid;
/**
* Gets the value of the name property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the name property.
*
*
* For example, to add a new item, do as follows:
*
* getName().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getName() {
if (name == null) {
name = new ArrayList();
}
return this.name;
}
/**
* Gets the value of the geologyType property.
*
* @return
* possible object is
* {@link GeologyType }
*
*/
public GeologyType getGeologyType() {
return geologyType;
}
/**
* Sets the value of the geologyType property.
*
* @param value
* allowed object is
* {@link GeologyType }
*
*/
public void setGeologyType(GeologyType value) {
this.geologyType = value;
}
/**
* Gets the value of the mdTop property.
*
* @return
* possible object is
* {@link MeasuredDepthCoord }
*
*/
public MeasuredDepthCoord getMdTop() {
return mdTop;
}
/**
* Sets the value of the mdTop property.
*
* @param value
* allowed object is
* {@link MeasuredDepthCoord }
*
*/
public void setMdTop(MeasuredDepthCoord value) {
this.mdTop = value;
}
/**
* Gets the value of the mdBottom property.
*
* @return
* possible object is
* {@link MeasuredDepthCoord }
*
*/
public MeasuredDepthCoord getMdBottom() {
return mdBottom;
}
/**
* Sets the value of the mdBottom property.
*
* @param value
* allowed object is
* {@link MeasuredDepthCoord }
*
*/
public void setMdBottom(MeasuredDepthCoord value) {
this.mdBottom = value;
}
/**
* Gets the value of the tvdTop property.
*
* @return
* possible object is
* {@link WellVerticalDepthCoord }
*
*/
public WellVerticalDepthCoord getTvdTop() {
return tvdTop;
}
/**
* Sets the value of the tvdTop property.
*
* @param value
* allowed object is
* {@link WellVerticalDepthCoord }
*
*/
public void setTvdTop(WellVerticalDepthCoord value) {
this.tvdTop = value;
}
/**
* Gets the value of the tvdBottom property.
*
* @return
* possible object is
* {@link WellVerticalDepthCoord }
*
*/
public WellVerticalDepthCoord getTvdBottom() {
return tvdBottom;
}
/**
* Sets the value of the tvdBottom property.
*
* @param value
* allowed object is
* {@link WellVerticalDepthCoord }
*
*/
public void setTvdBottom(WellVerticalDepthCoord value) {
this.tvdBottom = value;
}
/**
* Gets the value of the uid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUid() {
return uid;
}
/**
* Sets the value of the uid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUid(String value) {
this.uid = value;
}
}