energyml.prodml2_0.DasCalibrationPoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of energyml-prodml20 Show documentation
Show all versions of energyml-prodml20 Show documentation
API to interract with energyml (resqml, witml, prodml)
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.10.13 at 08:02:05 PM UTC
//
package energyml.prodml2_0;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import energyml.common2_1.LengthMeasure;
/**
* This object contains calibration points in the array
*
* Java class for DasCalibrationPoint complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DasCalibrationPoint">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="CalibrationFacilityLength" type="energyml.common2_1.LengthMeasure"/>
* <element name="CalibrationLocusIndex" type="energyml.common2_1.NonNegativeLong"/>
* <element name="CalibrationOpticalPathDistance" type="energyml.common2_1.LengthMeasure"/>
* <element name="CalibrationType" type="energyml.prodml2_0.DasCalibrationTypeExt" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DasCalibrationPoint", propOrder = {
"calibrationFacilityLength",
"calibrationLocusIndex",
"calibrationOpticalPathDistance",
"calibrationType"
})
public class DasCalibrationPoint {
@XmlElement(name = "CalibrationFacilityLength", required = true)
protected LengthMeasure calibrationFacilityLength;
@XmlElement(name = "CalibrationLocusIndex")
protected long calibrationLocusIndex;
@XmlElement(name = "CalibrationOpticalPathDistance", required = true)
protected LengthMeasure calibrationOpticalPathDistance;
@XmlElement(name = "CalibrationType")
protected String calibrationType;
/**
* Gets the value of the calibrationFacilityLength property.
*
* @return
* possible object is
* {@link LengthMeasure }
*
*/
public LengthMeasure getCalibrationFacilityLength() {
return calibrationFacilityLength;
}
/**
* Sets the value of the calibrationFacilityLength property.
*
* @param value
* allowed object is
* {@link LengthMeasure }
*
*/
public void setCalibrationFacilityLength(LengthMeasure value) {
this.calibrationFacilityLength = value;
}
/**
* Gets the value of the calibrationLocusIndex property.
*
*/
public long getCalibrationLocusIndex() {
return calibrationLocusIndex;
}
/**
* Sets the value of the calibrationLocusIndex property.
*
*/
public void setCalibrationLocusIndex(long value) {
this.calibrationLocusIndex = value;
}
/**
* Gets the value of the calibrationOpticalPathDistance property.
*
* @return
* possible object is
* {@link LengthMeasure }
*
*/
public LengthMeasure getCalibrationOpticalPathDistance() {
return calibrationOpticalPathDistance;
}
/**
* Sets the value of the calibrationOpticalPathDistance property.
*
* @param value
* allowed object is
* {@link LengthMeasure }
*
*/
public void setCalibrationOpticalPathDistance(LengthMeasure value) {
this.calibrationOpticalPathDistance = value;
}
/**
* Gets the value of the calibrationType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCalibrationType() {
return calibrationType;
}
/**
* Sets the value of the calibrationType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCalibrationType(String value) {
this.calibrationType = value;
}
}