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

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


/**
 * Descriptor of a curve associated with a block.
 * 			This captures the representational aspects of the curve.
 * 			The data semantics is defined by logCurveInfo.
 * 
 * 

Java class for cs_blockCurveInfo complex type. * *

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

 {@code
 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * } 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "cs_blockCurveInfo", propOrder = { "curveId", "columnIndex", "minIndex", "maxIndex", "minDateTimeIndex", "maxDateTimeIndex" }) public class CsBlockCurveInfo { @XmlElement(required = true) protected String curveId; protected short columnIndex; protected GenericMeasure minIndex; protected GenericMeasure maxIndex; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar minDateTimeIndex; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar maxDateTimeIndex; @XmlAttribute(name = "uid") protected String uid; /** * Gets the value of the curveId property. * * @return * possible object is * {@link String } * */ public String getCurveId() { return curveId; } /** * Sets the value of the curveId property. * * @param value * allowed object is * {@link String } * */ public void setCurveId(String value) { this.curveId = value; } /** * Gets the value of the columnIndex property. * */ public short getColumnIndex() { return columnIndex; } /** * Sets the value of the columnIndex property. * */ public void setColumnIndex(short value) { this.columnIndex = value; } /** * Gets the value of the minIndex property. * * @return * possible object is * {@link GenericMeasure } * */ public GenericMeasure getMinIndex() { return minIndex; } /** * Sets the value of the minIndex property. * * @param value * allowed object is * {@link GenericMeasure } * */ public void setMinIndex(GenericMeasure value) { this.minIndex = value; } /** * Gets the value of the maxIndex property. * * @return * possible object is * {@link GenericMeasure } * */ public GenericMeasure getMaxIndex() { return maxIndex; } /** * Sets the value of the maxIndex property. * * @param value * allowed object is * {@link GenericMeasure } * */ public void setMaxIndex(GenericMeasure value) { this.maxIndex = value; } /** * Gets the value of the minDateTimeIndex property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getMinDateTimeIndex() { return minDateTimeIndex; } /** * Sets the value of the minDateTimeIndex property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setMinDateTimeIndex(XMLGregorianCalendar value) { this.minDateTimeIndex = value; } /** * Gets the value of the maxDateTimeIndex property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getMaxDateTimeIndex() { return maxDateTimeIndex; } /** * Sets the value of the maxDateTimeIndex property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setMaxDateTimeIndex(XMLGregorianCalendar value) { this.maxDateTimeIndex = 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 - 2024 Weber Informatics LLC | Privacy Policy