@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class TableRow extends Object implements Serializable, Cloneable, StructuredPojo
Information about a row in a table excerpt.
Constructor and Description |
---|
TableRow() |
Modifier and Type | Method and Description |
---|---|
TableRow |
clone() |
boolean |
equals(Object obj) |
List<TableCell> |
getCells()
A list of table cells in a row.
|
int |
hashCode() |
void |
marshall(ProtocolMarshaller protocolMarshaller)
Marshalls this structured data using the given
ProtocolMarshaller . |
void |
setCells(Collection<TableCell> cells)
A list of table cells in a row.
|
String |
toString()
Returns a string representation of this object.
|
TableRow |
withCells(Collection<TableCell> cells)
A list of table cells in a row.
|
TableRow |
withCells(TableCell... cells)
A list of table cells in a row.
|
public List<TableCell> getCells()
A list of table cells in a row.
public void setCells(Collection<TableCell> cells)
A list of table cells in a row.
cells
- A list of table cells in a row.public TableRow withCells(TableCell... cells)
A list of table cells in a row.
NOTE: This method appends the values to the existing list (if any). Use
setCells(java.util.Collection)
or withCells(java.util.Collection)
if you want to override the
existing values.
cells
- A list of table cells in a row.public TableRow withCells(Collection<TableCell> cells)
A list of table cells in a row.
cells
- A list of table cells in a row.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.