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

com.hashmapinc.tempus.WitsmlObjects.v1311.CsCentrifuge 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
package com.hashmapinc.tempus.WitsmlObjects.v1311;

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;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 *  WITSML - Rig Centrifuge Component Schema 
 * 
 * 

Java class for cs_centrifuge complex type. * *

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

 {@code
 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * } 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "cs_centrifuge", propOrder = { "manufacturer", "model", "dTimInstall", "dTimRemove", "type", "capFlow", "owner", "nameTag" }) public class CsCentrifuge { protected String manufacturer; protected String model; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dTimInstall; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dTimRemove; protected String type; protected VolumeFlowRateMeasure capFlow; protected String owner; protected List nameTag; @XmlAttribute(name = "uid") protected String uid; /** * 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 model property. * * @return * possible object is * {@link String } * */ public String getModel() { return model; } /** * Sets the value of the model property. * * @param value * allowed object is * {@link String } * */ public void setModel(String value) { this.model = 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 type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the capFlow property. * * @return * possible object is * {@link VolumeFlowRateMeasure } * */ public VolumeFlowRateMeasure getCapFlow() { return capFlow; } /** * Sets the value of the capFlow property. * * @param value * allowed object is * {@link VolumeFlowRateMeasure } * */ public void setCapFlow(VolumeFlowRateMeasure value) { this.capFlow = 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 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 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