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

energyml.prodml2_0.FluidCharacterizationTable 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.XmlType;


/**
 * Fluid characterization table.
 * 
 * 

Java class for FluidCharacterizationTable complex type. * *

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

 * <complexType name="FluidCharacterizationTable">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Remark" type="energyml.common2_1.String2000" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="TableConstant" type="energyml.prodml2_0.FluidCharacterizationTableConstant" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="TableRow" type="energyml.prodml2_0.FluidCharacterizationTableRow" maxOccurs="unbounded"/>
 *       </sequence>
 *       <attribute name="name" use="required" type="energyml.common2_1.String64" />
 *       <attribute name="tableFormat" use="required" type="energyml.common2_1.String64" />
 *       <attribute name="uid" use="required" type="energyml.common2_1.String64" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FluidCharacterizationTable", propOrder = { "remark", "tableConstant", "tableRow" }) public class FluidCharacterizationTable { @XmlElement(name = "Remark") protected List remark; @XmlElement(name = "TableConstant") protected List tableConstant; @XmlElement(name = "TableRow", required = true) protected List tableRow; @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "tableFormat", required = true) protected String tableFormat; @XmlAttribute(name = "uid", required = true) protected String uid; /** * Gets the value of the remark 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 remark property. * *

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

     *    getRemark().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getRemark() { if (remark == null) { remark = new ArrayList(); } return this.remark; } /** * Gets the value of the tableConstant 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 tableConstant property. * *

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

     *    getTableConstant().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link FluidCharacterizationTableConstant } * * */ public List getTableConstant() { if (tableConstant == null) { tableConstant = new ArrayList(); } return this.tableConstant; } /** * Gets the value of the tableRow 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 tableRow property. * *

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

     *    getTableRow().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link FluidCharacterizationTableRow } * * */ public List getTableRow() { if (tableRow == null) { tableRow = new ArrayList(); } return this.tableRow; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the tableFormat property. * * @return * possible object is * {@link String } * */ public String getTableFormat() { return tableFormat; } /** * Sets the value of the tableFormat property. * * @param value * allowed object is * {@link String } * */ public void setTableFormat(String value) { this.tableFormat = 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