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

com.hashmapinc.tempus.WitsmlObjects.v1311.CsShakerOp 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 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 - Operations Shaker Component Schema
 * 
 * 

Java class for cs_shakerOp complex type. * *

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

 {@code
 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * } 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "cs_shakerOp", propOrder = { "shaker", "mdHole", "dTim", "hoursRun", "pcScreenCovered", "shakerScreen" }) public class CsShakerOp { @XmlElement(required = true) protected RefNameString shaker; protected MeasuredDepthCoord mdHole; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dTim; protected TimeMeasure hoursRun; protected AreaPerAreaMeasure pcScreenCovered; protected CsShakerScreen shakerScreen; @XmlAttribute(name = "uid") protected String uid; /** * Gets the value of the shaker property. * * @return * possible object is * {@link RefNameString } * */ public RefNameString getShaker() { return shaker; } /** * Sets the value of the shaker property. * * @param value * allowed object is * {@link RefNameString } * */ public void setShaker(RefNameString value) { this.shaker = value; } /** * Gets the value of the mdHole property. * * @return * possible object is * {@link MeasuredDepthCoord } * */ public MeasuredDepthCoord getMdHole() { return mdHole; } /** * Sets the value of the mdHole property. * * @param value * allowed object is * {@link MeasuredDepthCoord } * */ public void setMdHole(MeasuredDepthCoord value) { this.mdHole = value; } /** * Gets the value of the dTim property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDTim() { return dTim; } /** * Sets the value of the dTim property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDTim(XMLGregorianCalendar value) { this.dTim = value; } /** * Gets the value of the hoursRun property. * * @return * possible object is * {@link TimeMeasure } * */ public TimeMeasure getHoursRun() { return hoursRun; } /** * Sets the value of the hoursRun property. * * @param value * allowed object is * {@link TimeMeasure } * */ public void setHoursRun(TimeMeasure value) { this.hoursRun = value; } /** * Gets the value of the pcScreenCovered property. * * @return * possible object is * {@link AreaPerAreaMeasure } * */ public AreaPerAreaMeasure getPcScreenCovered() { return pcScreenCovered; } /** * Sets the value of the pcScreenCovered property. * * @param value * allowed object is * {@link AreaPerAreaMeasure } * */ public void setPcScreenCovered(AreaPerAreaMeasure value) { this.pcScreenCovered = value; } /** * Gets the value of the shakerScreen property. * * @return * possible object is * {@link CsShakerScreen } * */ public CsShakerScreen getShakerScreen() { return shakerScreen; } /** * Sets the value of the shakerScreen property. * * @param value * allowed object is * {@link CsShakerScreen } * */ public void setShakerScreen(CsShakerScreen value) { this.shakerScreen = value; } /** * 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 - 2025 Weber Informatics LLC | Privacy Policy