
net.datastream.schemas.mp_functions.gridresult.FIELDS Maven / Gradle / Ivy
Show all versions of eam-wshub-proxyclient Show documentation
package net.datastream.schemas.mp_functions.gridresult;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Classe Java pour anonymous complex type.
*
*
Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://schemas.datastream.net/MP_functions/GridResult}FIELD" maxOccurs="unbounded"/>
* </sequence>
* <attribute name="viewtype" type="{http://schemas.datastream.net/MP_functions/GridResult}GRID_TYPE_type" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"field"
})
@XmlRootElement(name = "FIELDS")
public class FIELDS {
@XmlElement(name = "FIELD", required = true)
protected List field;
@XmlAttribute(name = "viewtype")
protected GRID_TYPE_Type viewtype;
/**
* Gets the value of the field 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 JAXB object.
* This is why there is not a set
method for the field property.
*
*
* For example, to add a new item, do as follows:
*
* getFIELD().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link FIELD }
*
*
*/
public List getFIELD() {
if (field == null) {
field = new ArrayList();
}
return this.field;
}
/**
* Obtient la valeur de la propriété viewtype.
*
* @return
* possible object is
* {@link GRID_TYPE_Type }
*
*/
public GRID_TYPE_Type getViewtype() {
return viewtype;
}
/**
* Définit la valeur de la propriété viewtype.
*
* @param value
* allowed object is
* {@link GRID_TYPE_Type }
*
*/
public void setViewtype(GRID_TYPE_Type value) {
this.viewtype = value;
}
}