@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class Row extends Object implements Serializable, Cloneable, StructuredPojo
Represents a single row in the query results.
| Constructor and Description | 
|---|
| Row() | 
| Modifier and Type | Method and Description | 
|---|---|
| Row | clone() | 
| boolean | equals(Object obj) | 
| List<Datum> | getData()
 List of data points in a single row of the result set. | 
| int | hashCode() | 
| void | marshall(ProtocolMarshaller protocolMarshaller)Marshalls this structured data using the given  ProtocolMarshaller. | 
| void | setData(Collection<Datum> data)
 List of data points in a single row of the result set. | 
| String | toString()Returns a string representation of this object. | 
| Row | withData(Collection<Datum> data)
 List of data points in a single row of the result set. | 
| Row | withData(Datum... data)
 List of data points in a single row of the result set. | 
public List<Datum> getData()
List of data points in a single row of the result set.
public void setData(Collection<Datum> data)
List of data points in a single row of the result set.
data - List of data points in a single row of the result set.public Row withData(Datum... data)
List of data points in a single row of the result set.
 NOTE: This method appends the values to the existing list (if any). Use
 setData(java.util.Collection) or withData(java.util.Collection) if you want to override the
 existing values.
 
data - List of data points in a single row of the result set.public Row withData(Collection<Datum> data)
List of data points in a single row of the result set.
data - List of data points in a single row of the result set.public String toString()
toString in class ObjectObject.toString()public void marshall(ProtocolMarshaller protocolMarshaller)
StructuredPojoProtocolMarshaller.marshall in interface StructuredPojoprotocolMarshaller - Implementation of ProtocolMarshaller used to marshall this object's data.