Class DataTableResponseObject
- java.lang.Object
-
- com.microsoft.azure.management.appservice.DataTableResponseObject
-
public class DataTableResponseObject extends Object
Data Table which defines columns and raw row values.
-
-
Constructor Summary
Constructors Constructor Description DataTableResponseObject()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<DataTableResponseColumn>columns()Get list of columns with data types.List<List<String>>rows()Get raw row values.StringtableName()Get name of the table.DataTableResponseObjectwithColumns(List<DataTableResponseColumn> columns)Set list of columns with data types.DataTableResponseObjectwithRows(List<List<String>> rows)Set raw row values.DataTableResponseObjectwithTableName(String tableName)Set name of the table.
-
-
-
Method Detail
-
tableName
public String tableName()
Get name of the table.- Returns:
- the tableName value
-
withTableName
public DataTableResponseObject withTableName(String tableName)
Set name of the table.- Parameters:
tableName- the tableName value to set- Returns:
- the DataTableResponseObject object itself.
-
columns
public List<DataTableResponseColumn> columns()
Get list of columns with data types.- Returns:
- the columns value
-
withColumns
public DataTableResponseObject withColumns(List<DataTableResponseColumn> columns)
Set list of columns with data types.- Parameters:
columns- the columns value to set- Returns:
- the DataTableResponseObject object itself.
-
withRows
public DataTableResponseObject withRows(List<List<String>> rows)
Set raw row values.- Parameters:
rows- the rows value to set- Returns:
- the DataTableResponseObject object itself.
-
-