Class DataTableResponseObject
java.lang.Object
com.microsoft.azure.management.appservice.DataTableResponseObject
Data Table which defines columns and raw row values.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncolumns()
Get list of columns with data types.rows()
Get raw row values.Get name of the table.withColumns
(List<DataTableResponseColumn> columns) Set list of columns with data types.Set raw row values.withTableName
(String tableName) Set name of the table.
-
Constructor Details
-
DataTableResponseObject
public DataTableResponseObject()
-
-
Method Details
-
tableName
Get name of the table.- Returns:
- the tableName value
-
withTableName
Set name of the table.- Parameters:
tableName
- the tableName value to set- Returns:
- the DataTableResponseObject object itself.
-
columns
Get list of columns with data types.- Returns:
- the columns value
-
withColumns
Set list of columns with data types.- Parameters:
columns
- the columns value to set- Returns:
- the DataTableResponseObject object itself.
-
rows
Get raw row values.- Returns:
- the rows value
-
withRows
Set raw row values.- Parameters:
rows
- the rows value to set- Returns:
- the DataTableResponseObject object itself.
-