All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hashmapinc.tempus.WitsmlObjects.v1411.CsBitRecord Maven / Gradle / Ivy

Go to download

This library assists in serializing and deserializing WITSML 1.3.1.1 and 1.4.1.1 Objects

There is a newer version: 1.1.48.1
Show 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.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * WITSML - Bit Record Component Schema.
 * 
 * 

Java class for cs_bitRecord complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 {@code
 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * } 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "cs_bitRecord", propOrder = { "numBit", "diaBit", "diaPassThru", "diaPilot", "manufacturer", "typeBit", "cost", "codeMfg", "codeIADC", "condInitInner", "condInitOuter", "condInitDull", "condInitLocation", "condInitBearing", "condInitGauge", "condInitOther", "condInitReason", "condFinalInner", "condFinalOuter", "condFinalDull", "condFinalLocation", "condFinalBearing", "condFinalGauge", "condFinalOther", "condFinalReason", "drive", "bitClass", "customData", "extensionAny", "extensionNameValue" }) public class CsBitRecord { protected String numBit; @XmlElement(required = true) protected LengthMeasure diaBit; protected LengthMeasure diaPassThru; protected LengthMeasure diaPilot; protected String manufacturer; @XmlSchemaType(name = "string") protected BitType typeBit; protected Cost cost; protected String codeMfg; protected String codeIADC; protected Short condInitInner; protected Short condInitOuter; @XmlSchemaType(name = "string") protected BitDullCode condInitDull; protected String condInitLocation; protected String condInitBearing; protected String condInitGauge; protected String condInitOther; @XmlSchemaType(name = "string") protected BitReasonPulled condInitReason; protected Short condFinalInner; protected Short condFinalOuter; @XmlSchemaType(name = "string") protected BitDullCode condFinalDull; protected String condFinalLocation; protected String condFinalBearing; protected String condFinalGauge; protected String condFinalOther; @XmlSchemaType(name = "string") protected BitReasonPulled condFinalReason; protected String drive; protected String bitClass; protected CsCustomData customData; protected CsExtensionAny extensionAny; protected List extensionNameValue; @XmlAttribute(name = "uid") protected String uid; /** * Gets the value of the numBit property. * * @return * possible object is * {@link String } * */ public String getNumBit() { return numBit; } /** * Sets the value of the numBit property. * * @param value * allowed object is * {@link String } * */ public void setNumBit(String value) { this.numBit = value; } /** * Gets the value of the diaBit property. * * @return * possible object is * {@link LengthMeasure } * */ public LengthMeasure getDiaBit() { return diaBit; } /** * Sets the value of the diaBit property. * * @param value * allowed object is * {@link LengthMeasure } * */ public void setDiaBit(LengthMeasure value) { this.diaBit = value; } /** * Gets the value of the diaPassThru property. * * @return * possible object is * {@link LengthMeasure } * */ public LengthMeasure getDiaPassThru() { return diaPassThru; } /** * Sets the value of the diaPassThru property. * * @param value * allowed object is * {@link LengthMeasure } * */ public void setDiaPassThru(LengthMeasure value) { this.diaPassThru = value; } /** * Gets the value of the diaPilot property. * * @return * possible object is * {@link LengthMeasure } * */ public LengthMeasure getDiaPilot() { return diaPilot; } /** * Sets the value of the diaPilot property. * * @param value * allowed object is * {@link LengthMeasure } * */ public void setDiaPilot(LengthMeasure value) { this.diaPilot = value; } /** * Gets the value of the manufacturer property. * * @return * possible object is * {@link String } * */ public String getManufacturer() { return manufacturer; } /** * Sets the value of the manufacturer property. * * @param value * allowed object is * {@link String } * */ public void setManufacturer(String value) { this.manufacturer = value; } /** * Gets the value of the typeBit property. * * @return * possible object is * {@link BitType } * */ public BitType getTypeBit() { return typeBit; } /** * Sets the value of the typeBit property. * * @param value * allowed object is * {@link BitType } * */ public void setTypeBit(BitType value) { this.typeBit = value; } /** * Gets the value of the cost property. * * @return * possible object is * {@link Cost } * */ public Cost getCost() { return cost; } /** * Sets the value of the cost property. * * @param value * allowed object is * {@link Cost } * */ public void setCost(Cost value) { this.cost = value; } /** * Gets the value of the codeMfg property. * * @return * possible object is * {@link String } * */ public String getCodeMfg() { return codeMfg; } /** * Sets the value of the codeMfg property. * * @param value * allowed object is * {@link String } * */ public void setCodeMfg(String value) { this.codeMfg = value; } /** * Gets the value of the codeIADC property. * * @return * possible object is * {@link String } * */ public String getCodeIADC() { return codeIADC; } /** * Sets the value of the codeIADC property. * * @param value * allowed object is * {@link String } * */ public void setCodeIADC(String value) { this.codeIADC = value; } /** * Gets the value of the condInitInner property. * * @return * possible object is * {@link Short } * */ public Short getCondInitInner() { return condInitInner; } /** * Sets the value of the condInitInner property. * * @param value * allowed object is * {@link Short } * */ public void setCondInitInner(Short value) { this.condInitInner = value; } /** * Gets the value of the condInitOuter property. * * @return * possible object is * {@link Short } * */ public Short getCondInitOuter() { return condInitOuter; } /** * Sets the value of the condInitOuter property. * * @param value * allowed object is * {@link Short } * */ public void setCondInitOuter(Short value) { this.condInitOuter = value; } /** * Gets the value of the condInitDull property. * * @return * possible object is * {@link BitDullCode } * */ public BitDullCode getCondInitDull() { return condInitDull; } /** * Sets the value of the condInitDull property. * * @param value * allowed object is * {@link BitDullCode } * */ public void setCondInitDull(BitDullCode value) { this.condInitDull = value; } /** * Gets the value of the condInitLocation property. * * @return * possible object is * {@link String } * */ public String getCondInitLocation() { return condInitLocation; } /** * Sets the value of the condInitLocation property. * * @param value * allowed object is * {@link String } * */ public void setCondInitLocation(String value) { this.condInitLocation = value; } /** * Gets the value of the condInitBearing property. * * @return * possible object is * {@link String } * */ public String getCondInitBearing() { return condInitBearing; } /** * Sets the value of the condInitBearing property. * * @param value * allowed object is * {@link String } * */ public void setCondInitBearing(String value) { this.condInitBearing = value; } /** * Gets the value of the condInitGauge property. * * @return * possible object is * {@link String } * */ public String getCondInitGauge() { return condInitGauge; } /** * Sets the value of the condInitGauge property. * * @param value * allowed object is * {@link String } * */ public void setCondInitGauge(String value) { this.condInitGauge = value; } /** * Gets the value of the condInitOther property. * * @return * possible object is * {@link String } * */ public String getCondInitOther() { return condInitOther; } /** * Sets the value of the condInitOther property. * * @param value * allowed object is * {@link String } * */ public void setCondInitOther(String value) { this.condInitOther = value; } /** * Gets the value of the condInitReason property. * * @return * possible object is * {@link BitReasonPulled } * */ public BitReasonPulled getCondInitReason() { return condInitReason; } /** * Sets the value of the condInitReason property. * * @param value * allowed object is * {@link BitReasonPulled } * */ public void setCondInitReason(BitReasonPulled value) { this.condInitReason = value; } /** * Gets the value of the condFinalInner property. * * @return * possible object is * {@link Short } * */ public Short getCondFinalInner() { return condFinalInner; } /** * Sets the value of the condFinalInner property. * * @param value * allowed object is * {@link Short } * */ public void setCondFinalInner(Short value) { this.condFinalInner = value; } /** * Gets the value of the condFinalOuter property. * * @return * possible object is * {@link Short } * */ public Short getCondFinalOuter() { return condFinalOuter; } /** * Sets the value of the condFinalOuter property. * * @param value * allowed object is * {@link Short } * */ public void setCondFinalOuter(Short value) { this.condFinalOuter = value; } /** * Gets the value of the condFinalDull property. * * @return * possible object is * {@link BitDullCode } * */ public BitDullCode getCondFinalDull() { return condFinalDull; } /** * Sets the value of the condFinalDull property. * * @param value * allowed object is * {@link BitDullCode } * */ public void setCondFinalDull(BitDullCode value) { this.condFinalDull = value; } /** * Gets the value of the condFinalLocation property. * * @return * possible object is * {@link String } * */ public String getCondFinalLocation() { return condFinalLocation; } /** * Sets the value of the condFinalLocation property. * * @param value * allowed object is * {@link String } * */ public void setCondFinalLocation(String value) { this.condFinalLocation = value; } /** * Gets the value of the condFinalBearing property. * * @return * possible object is * {@link String } * */ public String getCondFinalBearing() { return condFinalBearing; } /** * Sets the value of the condFinalBearing property. * * @param value * allowed object is * {@link String } * */ public void setCondFinalBearing(String value) { this.condFinalBearing = value; } /** * Gets the value of the condFinalGauge property. * * @return * possible object is * {@link String } * */ public String getCondFinalGauge() { return condFinalGauge; } /** * Sets the value of the condFinalGauge property. * * @param value * allowed object is * {@link String } * */ public void setCondFinalGauge(String value) { this.condFinalGauge = value; } /** * Gets the value of the condFinalOther property. * * @return * possible object is * {@link String } * */ public String getCondFinalOther() { return condFinalOther; } /** * Sets the value of the condFinalOther property. * * @param value * allowed object is * {@link String } * */ public void setCondFinalOther(String value) { this.condFinalOther = value; } /** * Gets the value of the condFinalReason property. * * @return * possible object is * {@link BitReasonPulled } * */ public BitReasonPulled getCondFinalReason() { return condFinalReason; } /** * Sets the value of the condFinalReason property. * * @param value * allowed object is * {@link BitReasonPulled } * */ public void setCondFinalReason(BitReasonPulled value) { this.condFinalReason = value; } /** * Gets the value of the drive property. * * @return * possible object is * {@link String } * */ public String getDrive() { return drive; } /** * Sets the value of the drive property. * * @param value * allowed object is * {@link String } * */ public void setDrive(String value) { this.drive = value; } /** * Gets the value of the bitClass property. * * @return * possible object is * {@link String } * */ public String getBitClass() { return bitClass; } /** * Sets the value of the bitClass property. * * @param value * allowed object is * {@link String } * */ public void setBitClass(String value) { this.bitClass = 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy