@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class Row extends Object implements Serializable, Cloneable, StructuredPojo
The rows that make up a query result table.
Constructor and Description |
---|
Row() |
Modifier and Type | Method and Description |
---|---|
Row |
clone() |
boolean |
equals(Object obj) |
List<Datum> |
getData()
The data that populates a row in a query result table.
|
int |
hashCode() |
void |
marshall(ProtocolMarshaller protocolMarshaller)
Marshalls this structured data using the given
ProtocolMarshaller . |
void |
setData(Collection<Datum> data)
The data that populates a row in a query result table.
|
String |
toString()
Returns a string representation of this object.
|
Row |
withData(Collection<Datum> data)
The data that populates a row in a query result table.
|
Row |
withData(Datum... data)
The data that populates a row in a query result table.
|
public List<Datum> getData()
The data that populates a row in a query result table.
public void setData(Collection<Datum> data)
The data that populates a row in a query result table.
data
- The data that populates a row in a query result table.public Row withData(Datum... data)
The data that populates a row in a query result table.
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
- The data that populates a row in a query result table.public Row withData(Collection<Datum> data)
The data that populates a row in a query result table.
data
- The data that populates a row in a query result table.public String toString()
toString
in class Object
Object.toString()
public void marshall(ProtocolMarshaller protocolMarshaller)
StructuredPojo
ProtocolMarshaller
.marshall
in interface StructuredPojo
protocolMarshaller
- Implementation of ProtocolMarshaller
used to marshall this object's data.