Class ColumnDefinition

java.lang.Object
org.opengis.cite.gpkg12.ColumnDefinition

public class ColumnDefinition extends Object
Author:
Luke Lambert
  • Constructor Details

    • ColumnDefinition

      public ColumnDefinition(String sqlType, boolean notNull, boolean primaryKey, boolean unique, String defaultValue)
      Parameters:
      sqlType - String representing the SQL type of the column, e.g.: TEXT, INTEGER, and so on
      notNull - Indicates that this column may not contain null values
      primaryKey - Indicates that this column is the table's primary key (implicitly unique)
      unique - Indicates that values for this column are unique. If primaryKey is true, this value is ignored
      defaultValue - String representation for the default value of this column
  • Method Details