com.hashmapinc.tempus.WitsmlObjects.v1411.CsWbGeometry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of WitsmlObjects Show documentation
Show all versions of WitsmlObjects Show documentation
This library assists in serializing and deserializing WITSML 1.3.1.1 and 1.4.1.1 Objects
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.06.26 at 03:00:38 PM CDT
//
package com.hashmapinc.tempus.WitsmlObjects.v1411;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* WITSML - Wellbore Geometry Component Schema
*
* Java class for cs_wbGeometry complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "cs_wbGeometry", propOrder = {
"dTimReport",
"mdBottom",
"gapAir",
"depthWaterMean",
"wbGeometrySection"
})
public class CsWbGeometry {
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dTimReport;
protected MeasuredDepthCoord mdBottom;
protected LengthMeasure gapAir;
protected LengthMeasure depthWaterMean;
protected List wbGeometrySection;
/**
* Gets the value of the dTimReport property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDTimReport() {
return dTimReport;
}
/**
* Sets the value of the dTimReport property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDTimReport(XMLGregorianCalendar value) {
this.dTimReport = 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 gapAir property.
*
* @return
* possible object is
* {@link LengthMeasure }
*
*/
public LengthMeasure getGapAir() {
return gapAir;
}
/**
* Sets the value of the gapAir property.
*
* @param value
* allowed object is
* {@link LengthMeasure }
*
*/
public void setGapAir(LengthMeasure value) {
this.gapAir = value;
}
/**
* Gets the value of the depthWaterMean property.
*
* @return
* possible object is
* {@link LengthMeasure }
*
*/
public LengthMeasure getDepthWaterMean() {
return depthWaterMean;
}
/**
* Sets the value of the depthWaterMean property.
*
* @param value
* allowed object is
* {@link LengthMeasure }
*
*/
public void setDepthWaterMean(LengthMeasure value) {
this.depthWaterMean = value;
}
/**
* Gets the value of the wbGeometrySection 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 JAXB object.
* This is why there is not a set
method for the wbGeometrySection property.
*
*
* For example, to add a new item, do as follows:
* {@code
* getWbGeometrySection().add(newItem);
* }
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link CsWbGeometrySection }
*
*
*/
public List getWbGeometrySection() {
if (wbGeometrySection == null) {
wbGeometrySection = new ArrayList();
}
return this.wbGeometrySection;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy