Package org.pgcodekeeper.core.schema
Interface ISimpleColumnContainer
- All Known Implementing Classes:
AbstractIndex,ChIndex,MsConstraintPk,MsIndex,PgConstraintExclude,PgIndex
public interface ISimpleColumnContainer
Interface for database objects that contain simple column references.
Used primarily by indexes and similar objects that reference columns with attributes.
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddColumn(SimpleColumn column) Adds a column reference to this container.voidaddInclude(String column) Adds an included column to this container.
-
Method Details
-
addColumn
Adds a column reference to this container.- Parameters:
column- the simple column to add
-
addInclude
Adds an included column to this container.- Parameters:
column- the column name to include
-