com.hashmapinc.tempus.WitsmlObjects.v1411.CsSensor 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
The newest version!
//
// 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.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* WITSML - Tubular Sensor Component Schema
*
* Java class for cs_sensor complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "cs_sensor", propOrder = {
"typeMeasurement",
"offsetBot",
"comments",
"customData",
"extensionAny",
"extensionNameValue"
})
public class CsSensor {
@XmlSchemaType(name = "string")
protected String typeMeasurement;
protected LengthMeasure offsetBot;
protected String comments;
protected CsCustomData customData;
protected CsExtensionAny extensionAny;
protected List extensionNameValue;
@XmlAttribute(name = "uid")
protected String uid;
/**
* Gets the value of the typeMeasurement property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTypeMeasurement() {
return typeMeasurement;
}
/**
* Sets the value of the typeMeasurement property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTypeMeasurement(String value) {
this.typeMeasurement = value;
}
/**
* Gets the value of the offsetBot property.
*
* @return
* possible object is
* {@link LengthMeasure }
*
*/
public LengthMeasure getOffsetBot() {
return offsetBot;
}
/**
* Sets the value of the offsetBot property.
*
* @param value
* allowed object is
* {@link LengthMeasure }
*
*/
public void setOffsetBot(LengthMeasure value) {
this.offsetBot = value;
}
/**
* Gets the value of the comments property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getComments() {
return comments;
}
/**
* Sets the value of the comments property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setComments(String value) {
this.comments = value;
}
/**
* Gets the value of the customData property.
*
* @return
* possible object is
* {@link CsCustomData }
*
*/
public CsCustomData getCustomData() {
return customData;
}
/**
* Sets the value of the customData property.
*
* @param value
* allowed object is
* {@link CsCustomData }
*
*/
public void setCustomData(CsCustomData value) {
this.customData = value;
}
/**
* Gets the value of the extensionAny property.
*
* @return
* possible object is
* {@link CsExtensionAny }
*
*/
public CsExtensionAny getExtensionAny() {
return extensionAny;
}
/**
* Sets the value of the extensionAny property.
*
* @param value
* allowed object is
* {@link CsExtensionAny }
*
*/
public void setExtensionAny(CsExtensionAny value) {
this.extensionAny = value;
}
/**
* Gets the value of the extensionNameValue 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 extensionNameValue property.
*
*
* For example, to add a new item, do as follows:
* {@code
* getExtensionNameValue().add(newItem);
* }
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link CsExtensionNameValue }
*
*
*/
public List getExtensionNameValue() {
if (extensionNameValue == null) {
extensionNameValue = new ArrayList();
}
return this.extensionNameValue;
}
/**
* 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;
}
}