Interface NumericColumn

All Superinterfaces:
AutoCloseable, BaseColumn, Closeable, HotLoopCallee, SelectableColumn
All Known Implementing Classes:
ConstantTimeColumn, DoublesColumn, FloatsColumn, LongsColumn

public interface NumericColumn extends BaseColumn, HotLoopCallee
  • Method Details

    • length

      int length()
      Returns the row count of this column. Note that this method currently counts only non-null values. Using this method to get the length of a column that contains nulls will not work as expected. This method should be used only for non-nullable numeric columns such as the "__time" column.
    • getLongSingleValueRow

      @CalledFromHotLoop long getLongSingleValueRow(int rowNum)
    • close

      void close()
      Specified by:
      close in interface AutoCloseable
      Specified by:
      close in interface Closeable