public final class DataTableResponseObject extends Object
| Constructor and Description |
|---|
DataTableResponseObject() |
| Modifier and Type | Method and Description |
|---|---|
List<DataTableResponseColumn> |
columns()
Get the columns property: List of columns with data types.
|
List<List<String>> |
rows()
Get the rows property: Raw row values.
|
String |
tableName()
Get the tableName property: Name of the table.
|
void |
validate()
Validates the instance.
|
DataTableResponseObject |
withColumns(List<DataTableResponseColumn> columns)
Set the columns property: List of columns with data types.
|
DataTableResponseObject |
withRows(List<List<String>> rows)
Set the rows property: Raw row values.
|
DataTableResponseObject |
withTableName(String tableName)
Set the tableName property: Name of the table.
|
public String tableName()
public DataTableResponseObject withTableName(String tableName)
tableName - the tableName value to set.public List<DataTableResponseColumn> columns()
public DataTableResponseObject withColumns(List<DataTableResponseColumn> columns)
columns - the columns value to set.public List<List<String>> rows()
public DataTableResponseObject withRows(List<List<String>> rows)
rows - the rows value to set.public void validate()
IllegalArgumentException - thrown if the instance is not valid.Visit the Azure for Java Developers site for more Java documentation, including quick starts, tutorials, and code samples.