
com.google.api.ads.dfp.jaxws.v201602.ResultSet Maven / Gradle / Ivy
Show all versions of dfp-appengine Show documentation
package com.google.api.ads.dfp.jaxws.v201602;
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.XmlType;
/**
*
* The {@code ResultSet} represents a table of data obtained from the execution of a PQL {@link
* Statement}.
*
*
* Java class for ResultSet complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ResultSet">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="columnTypes" type="{https://www.google.com/apis/ads/publisher/v201602}ColumnType" maxOccurs="unbounded" minOccurs="0"/>
* <element name="rows" type="{https://www.google.com/apis/ads/publisher/v201602}Row" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ResultSet", propOrder = {
"columnTypes",
"rows"
})
public class ResultSet {
protected List columnTypes;
protected List rows;
/**
* Gets the value of the columnTypes 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 columnTypes property.
*
*
* For example, to add a new item, do as follows:
*
* getColumnTypes().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ColumnType }
*
*
*/
public List getColumnTypes() {
if (columnTypes == null) {
columnTypes = new ArrayList();
}
return this.columnTypes;
}
/**
* Gets the value of the rows 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 rows property.
*
*
* For example, to add a new item, do as follows:
*
* getRows().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Row }
*
*
*/
public List getRows() {
if (rows == null) {
rows = new ArrayList();
}
return this.rows;
}
}