public class Table extends Object
| Constructor | Description |
|---|---|
Table() |
| Modifier and Type | Method | Description |
|---|---|---|
List<Column> |
columns() |
Get the list of columns in this table.
|
String |
name() |
Get the name of the table.
|
List<List<Object>> |
rows() |
Get the resulting rows from this query.
|
Table |
withColumns(List<Column> columns) |
Set the list of columns in this table.
|
Table |
withName(String name) |
Set the name of the table.
|
Table |
withRows(List<List<Object>> rows) |
Set the resulting rows from this query.
|
public String name()
public Table withName(String name)
name - the name value to setpublic List<Column> columns()
public Table withColumns(List<Column> columns)
columns - the columns value to setpublic List<List<Object>> rows()
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/