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

com.hashmapinc.tempus.WitsmlObjects.v1411.CsPit 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;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 *  WITSML - Rig Pit Component Schema 
 * 
 * 

Java class for cs_pit complex type. * *

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

 {@code
 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * } 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "cs_pit", propOrder = { "index", "dTimInstall", "dTimRemove", "capMx", "owner", "typePit", "isActive", "nameTag", "extensionNameValue" }) public class CsPit { protected short index; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dTimInstall; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dTimRemove; @XmlElement(required = true) protected VolumeMeasure capMx; protected String owner; @XmlSchemaType(name = "string") protected PitType typePit; protected Boolean isActive; protected List nameTag; protected List extensionNameValue; @XmlAttribute(name = "uid") protected String uid; /** * Gets the value of the index property. * */ public short getIndex() { return index; } /** * Sets the value of the index property. * */ public void setIndex(short value) { this.index = value; } /** * Gets the value of the dTimInstall property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDTimInstall() { return dTimInstall; } /** * Sets the value of the dTimInstall property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDTimInstall(XMLGregorianCalendar value) { this.dTimInstall = value; } /** * Gets the value of the dTimRemove property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDTimRemove() { return dTimRemove; } /** * Sets the value of the dTimRemove property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDTimRemove(XMLGregorianCalendar value) { this.dTimRemove = value; } /** * Gets the value of the capMx property. * * @return * possible object is * {@link VolumeMeasure } * */ public VolumeMeasure getCapMx() { return capMx; } /** * Sets the value of the capMx property. * * @param value * allowed object is * {@link VolumeMeasure } * */ public void setCapMx(VolumeMeasure value) { this.capMx = value; } /** * Gets the value of the owner property. * * @return * possible object is * {@link String } * */ public String getOwner() { return owner; } /** * Sets the value of the owner property. * * @param value * allowed object is * {@link String } * */ public void setOwner(String value) { this.owner = value; } /** * Gets the value of the typePit property. * * @return * possible object is * {@link PitType } * */ public PitType getTypePit() { return typePit; } /** * Sets the value of the typePit property. * * @param value * allowed object is * {@link PitType } * */ public void setTypePit(PitType value) { this.typePit = value; } /** * Gets the value of the isActive property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsActive() { return isActive; } /** * Sets the value of the isActive property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsActive(Boolean value) { this.isActive = value; } /** * Gets the value of the nameTag 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 nameTag property. * * * For example, to add a new item, do as follows: *
 {@code
     *    getNameTag().add(newItem);
     * } 
* * * * Objects of the following type(s) are allowed in the list * {@link CsNameTag } * * */ public List getNameTag() { if (nameTag == null) { nameTag = new ArrayList(); } return this.nameTag; } /** * 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