Class NumericColumn

Direct Known Subclasses:
ByteColumn, DecimalColumn, DoubleColumn, FloatColumn, IntegerColumn, LongIntegerColumn, ShortIntegerColumn

public abstract class NumericColumn extends SparqlColumnInfo
Abstract column information for numeric columns
  • Constructor Details

    • NumericColumn

      public NumericColumn(String label, int type, int nullable, Class<?> numericClass, int scale, int precision, boolean signed) throws SQLException
      Creates new numeric column information
      Parameters:
      label - Column Label
      type - JDBC type
      nullable - Whether the column is nullable
      numericClass - Numeric class
      scale - Scale
      precision - Precision
      signed - Whether the column contains signed numbers
      Throws:
      SQLException - Thrown if the column information cannot be created