energyml.common2_1.IntegerQuantityParameter 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.common2_1;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Parameter containing an integer value.
*
* Java class for IntegerQuantityParameter complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="IntegerQuantityParameter">
* <complexContent>
* <extension base="{http://www.energistics.org/energyml/data/commonv2}AbstractActivityParameter">
* <sequence>
* <element name="Value" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "IntegerQuantityParameter", propOrder = {
"value"
})
public class IntegerQuantityParameter
extends AbstractActivityParameter
{
@XmlElement(name = "Value")
protected long value;
/**
* Gets the value of the value property.
*
*/
public long getValue() {
return value;
}
/**
* Sets the value of the value property.
*
*/
public void setValue(long value) {
this.value = value;
}
}