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

energyml.prodml2_0.IndexedObject 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 jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;


/**
 * Indexed object.
 * 
 * 

Java class for IndexedObject complex type. * *

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

 * <complexType name="IndexedObject">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="description" type="energyml.common2_1.String2000" />
 *       <attribute name="index" type="energyml.common2_1.NonNegativeLong" />
 *       <attribute name="name" type="energyml.common2_1.String64" />
 *       <attribute name="uom" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IndexedObject") public class IndexedObject { @XmlAttribute(name = "description") protected String description; @XmlAttribute(name = "index") protected Long index; @XmlAttribute(name = "name") protected String name; @XmlAttribute(name = "uom") protected String uom; /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the index property. * * @return * possible object is * {@link Long } * */ public Long getIndex() { return index; } /** * Sets the value of the index property. * * @param value * allowed object is * {@link Long } * */ public void setIndex(Long value) { this.index = value; } /** * 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 uom property. * * @return * possible object is * {@link String } * */ public String getUom() { return uom; } /** * Sets the value of the uom property. * * @param value * allowed object is * {@link String } * */ public void setUom(String value) { this.uom = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy