LogsTable Class

  • java.lang.Object
    • com.azure.monitor.query.models.LogsTable

public final class LogsTable

Represents a table of results for a logs query.

Constructor Summary

Constructor Description
LogsTable(List<LogsTableCell> allTableCells, List<LogsTableRow> tableRows, List<LogsTableColumn> tableColumns)

Creates an instance of table that contains results of a logs query.

Method Summary

Modifier and Type Method and Description
List<LogsTableCell> getAllTableCells()

Returns all the cells in this table.

List<LogsTableColumn> getColumns()

Returns all the columns in this table.

List<LogsTableRow> getRows()

Returns all the rows in this table.

Methods inherited from java.lang.Object

Constructor Details

LogsTable

public LogsTable(List allTableCells, List tableRows, List tableColumns)

Creates an instance of table that contains results of a logs query.

Parameters:

allTableCells - All the cells that make up this table.
tableRows - All the rows in this table.
tableColumns - All the columns in this table.

Method Details

getAllTableCells

public List getAllTableCells()

Returns all the cells in this table.

Returns:

all the cells in this table.

getColumns

public List getColumns()

Returns all the columns in this table.

Returns:

all the columns in this table.

getRows

public List getRows()

Returns all the rows in this table.

Returns:

all the rows in this table.

Applies to