Package org.opengis.cite.gpkg12
Class ColumnDefinition
java.lang.Object
org.opengis.cite.gpkg12.ColumnDefinition
- Author:
- Luke Lambert
-
Constructor Summary
ConstructorDescriptionColumnDefinition
(String sqlType, boolean notNull, boolean primaryKey, boolean unique, String defaultValue) -
Method Summary
-
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 onnotNull
- Indicates that this column may not contain null valuesprimaryKey
- 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 ignoreddefaultValue
- String representation for the default value of this column
-
-
Method Details