energyml.common2_1.IntegerExternalArray 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;
/**
* Array of integer values provided explicitly by an HDF5 dataset. The null value must be explicitly provided in the NullValue attribute of this class.
*
* Java class for IntegerExternalArray complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="IntegerExternalArray">
* <complexContent>
* <extension base="{http://www.energistics.org/energyml/data/commonv2}AbstractIntegerArray">
* <sequence>
* <element name="NullValue" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="Values" type="energyml.common2_1.ExternalDataset"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "IntegerExternalArray", propOrder = {
"nullValue",
"values"
})
public class IntegerExternalArray
extends AbstractIntegerArray
{
@XmlElement(name = "NullValue")
protected long nullValue;
@XmlElement(name = "Values", required = true)
protected ExternalDataset values;
/**
* Gets the value of the nullValue property.
*
*/
public long getNullValue() {
return nullValue;
}
/**
* Sets the value of the nullValue property.
*
*/
public void setNullValue(long value) {
this.nullValue = value;
}
/**
* Gets the value of the values property.
*
* @return
* possible object is
* {@link ExternalDataset }
*
*/
public ExternalDataset getValues() {
return values;
}
/**
* Sets the value of the values property.
*
* @param value
* allowed object is
* {@link ExternalDataset }
*
*/
public void setValues(ExternalDataset value) {
this.values = value;
}
}