Class FluxTable

java.lang.Object
com.influxdb.query.FluxTable
All Implemented Interfaces:
Serializable

public final class FluxTable extends Object implements Serializable
This class represents the table structure of the Flux CSV Response. Specification.
See Also:
  • Constructor Details

    • FluxTable

      public FluxTable()
  • Method Details

    • getColumns

      @Nonnull public List<FluxColumn> getColumns()
      See Also:
      • columns
    • getGroupKey

      @Nonnull public List<FluxColumn> getGroupKey()
      A table's group key is subset of the entire columns dataset that assigned to the table. As such, all records within a table will have the same values for each column that is part of the group key.
    • getRecords

      @Nonnull public List<FluxRecord> getRecords()
      See Also:
      • records
    • toString

      public String toString()
      Overrides:
      toString in class Object