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

energyml.prodml2_0.WftTestResult Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
//
// 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 java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * A single result derived from analysis of formation tester data.
 * 
 * 

Java class for WftTestResult complex type. * *

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

 * <complexType name="WftTestResult">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="MdBottom" type="energyml.prodml2_0.MeasuredDepthCoord"/>
 *         <element name="MdTop" type="energyml.prodml2_0.MeasuredDepthCoord"/>
 *         <element name="Method" type="energyml.common2_1.String64"/>
 *         <element name="InputParameter" type="energyml.prodml2_0.WftInOutParameter" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="OutputParameter" type="energyml.prodml2_0.WftInOutParameter" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="InputResultReference" type="energyml.prodml2_0.WftResultReference" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="TestData" type="energyml.prodml2_0.WftTestData" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Kind" type="energyml.prodml2_0.WftTestResultKind"/>
 *       </sequence>
 *       <attribute name="uid" use="required" type="energyml.common2_1.String64" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WftTestResult", propOrder = { "mdBottom", "mdTop", "method", "inputParameter", "outputParameter", "inputResultReference", "testData", "kind" }) public class WftTestResult { @XmlElement(name = "MdBottom", required = true) protected MeasuredDepthCoord mdBottom; @XmlElement(name = "MdTop", required = true) protected MeasuredDepthCoord mdTop; @XmlElement(name = "Method", required = true) protected String method; @XmlElement(name = "InputParameter") protected List inputParameter; @XmlElement(name = "OutputParameter") protected List outputParameter; @XmlElement(name = "InputResultReference") protected List inputResultReference; @XmlElement(name = "TestData") protected List testData; @XmlElement(name = "Kind", required = true) @XmlSchemaType(name = "string") protected WftTestResultKind kind; @XmlAttribute(name = "uid", required = true) protected String uid; /** * Gets the value of the mdBottom property. * * @return * possible object is * {@link MeasuredDepthCoord } * */ public MeasuredDepthCoord getMdBottom() { return mdBottom; } /** * Sets the value of the mdBottom property. * * @param value * allowed object is * {@link MeasuredDepthCoord } * */ public void setMdBottom(MeasuredDepthCoord value) { this.mdBottom = value; } /** * Gets the value of the mdTop property. * * @return * possible object is * {@link MeasuredDepthCoord } * */ public MeasuredDepthCoord getMdTop() { return mdTop; } /** * Sets the value of the mdTop property. * * @param value * allowed object is * {@link MeasuredDepthCoord } * */ public void setMdTop(MeasuredDepthCoord value) { this.mdTop = value; } /** * Gets the value of the method property. * * @return * possible object is * {@link String } * */ public String getMethod() { return method; } /** * Sets the value of the method property. * * @param value * allowed object is * {@link String } * */ public void setMethod(String value) { this.method = value; } /** * Gets the value of the inputParameter 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 Jakarta XML Binding object. * This is why there is not a set method for the inputParameter property. * *

* For example, to add a new item, do as follows: *

     *    getInputParameter().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link WftInOutParameter } * * */ public List getInputParameter() { if (inputParameter == null) { inputParameter = new ArrayList(); } return this.inputParameter; } /** * Gets the value of the outputParameter 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 Jakarta XML Binding object. * This is why there is not a set method for the outputParameter property. * *

* For example, to add a new item, do as follows: *

     *    getOutputParameter().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link WftInOutParameter } * * */ public List getOutputParameter() { if (outputParameter == null) { outputParameter = new ArrayList(); } return this.outputParameter; } /** * Gets the value of the inputResultReference 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 Jakarta XML Binding object. * This is why there is not a set method for the inputResultReference property. * *

* For example, to add a new item, do as follows: *

     *    getInputResultReference().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link WftResultReference } * * */ public List getInputResultReference() { if (inputResultReference == null) { inputResultReference = new ArrayList(); } return this.inputResultReference; } /** * Gets the value of the testData 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 Jakarta XML Binding object. * This is why there is not a set method for the testData property. * *

* For example, to add a new item, do as follows: *

     *    getTestData().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link WftTestData } * * */ public List getTestData() { if (testData == null) { testData = new ArrayList(); } return this.testData; } /** * Gets the value of the kind property. * * @return * possible object is * {@link WftTestResultKind } * */ public WftTestResultKind getKind() { return kind; } /** * Sets the value of the kind property. * * @param value * allowed object is * {@link WftTestResultKind } * */ public void setKind(WftTestResultKind value) { this.kind = 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