Class LogsTable

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

public final class LogsTable extends Object
Represents a table of results for a logs query.
  • Constructor Details

    • LogsTable

      public LogsTable(List<LogsTableCell> allTableCells, List<LogsTableRow> tableRows, List<LogsTableColumn> 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<LogsTableCell> getAllTableCells()
      Returns all the cells in this table.
      Returns:
      all the cells in this table.
    • getRows

      public List<LogsTableRow> getRows()
      Returns all the rows in this table.
      Returns:
      all the rows in this table.
    • getColumns

      public List<LogsTableColumn> getColumns()
      Returns all the columns in this table.
      Returns:
      all the columns in this table.