Class FloatColumn

  • All Implemented Interfaces:
    Column

    public class FloatColumn
    extends BaseColumn
    Type-safe column which contains float values as entries.
    • Constructor Detail

      • FloatColumn

        public FloatColumn​(String name,
                           int rowCount,
                           String data,
                           int[] startToken,
                           int[] endToken)
      • FloatColumn

        public FloatColumn​(String name,
                           int rowCount,
                           Object data,
                           int[] mask)
      • FloatColumn

        public FloatColumn​(String name)
    • Method Detail

      • get

        public double get​(int row)
        Retrieve the double value at the given row index.
        Parameters:
        row - the index to retrieve
        Returns:
        the value - 0 if not present according to BaseColumn.getValueKind(int)
      • getBinaryData

        public double[] getBinaryData()
        For internal use. Returns the decoded binary data which this column wraps. Returns null for text columns.
        Returns:
        the double[] data