Class Table

java.lang.Object
org.apache.druid.server.compaction.Table

public class Table extends Object
A simple table POJO with any number of rows and specified column names. Used in CompactionSimulateResult.
  • Constructor Details

  • Method Details

    • withColumnNames

      public static Table withColumnNames(String... columnNames)
    • getColumnNames

      public List<String> getColumnNames()
    • getRows

      public List<List<Object>> getRows()
    • addRow

      public void addRow(Object... values)
    • isEmpty

      public boolean isEmpty()
    • toString

      public String toString()
      Overrides:
      toString in class Object