net.datastream.schemas.mp_functions.gridresult.GRID Maven / Gradle / Ivy
package net.datastream.schemas.mp_functions.gridresult;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://schemas.datastream.net/MP_functions/GridResult}METADATA" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_functions/GridResult}DATA" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_functions/GridResult}FIELDS" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"metadata",
"data",
"fields"
})
@XmlRootElement(name = "GRID")
public class GRID {
@XmlElement(name = "METADATA")
protected METADATA metadata;
@XmlElement(name = "DATA")
protected DATA data;
@XmlElement(name = "FIELDS")
protected FIELDS fields;
/**
* Gets the value of the metadata property.
*
* @return
* possible object is
* {@link METADATA }
*
*/
public METADATA getMETADATA() {
return metadata;
}
/**
* Sets the value of the metadata property.
*
* @param value
* allowed object is
* {@link METADATA }
*
*/
public void setMETADATA(METADATA value) {
this.metadata = value;
}
/**
* Gets the value of the data property.
*
* @return
* possible object is
* {@link DATA }
*
*/
public DATA getDATA() {
return data;
}
/**
* Sets the value of the data property.
*
* @param value
* allowed object is
* {@link DATA }
*
*/
public void setDATA(DATA value) {
this.data = value;
}
/**
* Gets the value of the fields property.
*
* @return
* possible object is
* {@link FIELDS }
*
*/
public FIELDS getFIELDS() {
return fields;
}
/**
* Sets the value of the fields property.
*
* @param value
* allowed object is
* {@link FIELDS }
*
*/
public void setFIELDS(FIELDS value) {
this.fields = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy