Interface PostgreSQLColumn
- All Known Implementing Classes:
- AuditLogColumn,- HarvestOpenMetadataColumn,- HarvestSurveysColumn,- PostgresTabularColumn,- RepositoryColumn
public interface PostgreSQLColumn
Describes the different types of columns found in a database schema
- 
Method SummaryModifier and TypeMethodDescriptionReturn th optional description for the column.Retrieve the name of the column.Return the type of the column.booleanReturn whether the column is not null;
- 
Method Details- 
getColumnNameString getColumnName()Retrieve the name of the column.- Returns:
- name
 
- 
getColumnTypeColumnType getColumnType()Return the type of the column.- Returns:
- ColumnType
 
- 
getColumnDescriptionString getColumnDescription()Return th optional description for the column.- Returns:
- text
 
- 
isNotNullboolean isNotNull()Return whether the column is not null;- Returns:
- boolean
 
 
-