Uses of Class
liquibase.change.ColumnConfig
Packages that use ColumnConfig
Package
Description
The change package contains the available database "changes".
Technically, a Change expresses an intention for alter the structure of the Database.
- 
Uses of ColumnConfig in liquibase.changeClasses in liquibase.change with type parameters of type ColumnConfigModifier and TypeInterfaceDescriptioninterfaceChangeWithColumns<T extends ColumnConfig>Markers a Change class as containing one or moreColumnConfigconfiguration.Subclasses of ColumnConfig in liquibase.changeMethods in liquibase.change that return ColumnConfigModifier and TypeMethodDescriptionstatic ColumnConfig[]ColumnConfig.arrayFromNames(String names) protected ColumnConfigAbstractChange.createEmptyColumnConfig(Class collectionType) static ColumnConfigColumnConfig.setAutoIncrement(Boolean autoIncrement) ColumnConfig.setComputed(Boolean computed) ColumnConfig.setConstraints(ConstraintsConfig constraints) ColumnConfig.setDefaultOnNull(Boolean defaultOnNull) ColumnConfig.setDefaultValue(String defaultValue) Sets the string default value to assign to this column.ColumnConfig.setDefaultValueBoolean(Boolean defaultValueBoolean) ColumnConfig.setDefaultValueBoolean(String defaultValueBoolean) Set the defaultValueBoolean based on a given string.ColumnConfig.setDefaultValueComputed(DatabaseFunction defaultValueComputed) ColumnConfig.setDefaultValueDate(String defaultValueDate) Set the date this column should default to.ColumnConfig.setDefaultValueDate(Date defaultValueDate) ColumnConfig.setDefaultValueNumeric(Number defaultValueNumeric) ColumnConfig.setDefaultValueNumeric(String defaultValueNumeric) Set the number this column should use as its default.ColumnConfig.setDefaultValueSequenceNext(SequenceNextValueFunction defaultValueSequenceNext) ColumnConfig.setDescending(Boolean descending) ColumnConfig.setEncoding(String encoding) ColumnConfig.setGenerationType(String generationType) ColumnConfig.setIncluded(Boolean included) ColumnConfig.setIncrementBy(BigInteger incrementBy) ColumnConfig.setRemarks(String remarks) ColumnConfig.setStartWith(BigInteger startWith) Sets the string value this column should be set to.ColumnConfig.setValueBlobFile(String valueBlobFile) ColumnConfig.setValueBoolean(Boolean valueBoolean) ColumnConfig.setValueBoolean(String valueBoolean) Set the valueBoolean based on a given string.ColumnConfig.setValueClobFile(String valueClobFile) ColumnConfig.setValueComputed(DatabaseFunction valueComputed) ColumnConfig.setValueDate(String valueDate) Set the date this column should be set to.ColumnConfig.setValueDate(Date valueDate) ColumnConfig.setValueNumeric(Number valueNumeric) ColumnConfig.setValueNumeric(String valueNumeric) Set the number this column should be set to.ColumnConfig.setValueSequenceCurrent(SequenceCurrentValueFunction valueSequenceCurrent) ColumnConfig.setValueSequenceNext(SequenceNextValueFunction valueSequenceNext) 
- 
Uses of ColumnConfig in liquibase.change.coreSubclasses of ColumnConfig in liquibase.change.coreFields in liquibase.change.core with type parameters of type ColumnConfigModifier and TypeFieldDescriptionprotected List<ColumnConfig>AbstractModifyDataChange.whereParamsMethods in liquibase.change.core that return ColumnConfigModifier and TypeMethodDescriptionLoadDataColumnConfig.setType(LoadDataChange.LOAD_DATA_TYPE value) Methods in liquibase.change.core that return types with arguments of type ColumnConfigModifier and TypeMethodDescriptionCreateTableChange.getColumns()DropColumnChange.getColumns()InsertDataChange.getColumns()UpdateDataChange.getColumns()AbstractModifyDataChange.getWhereParams()Methods in liquibase.change.core with parameters of type ColumnConfigModifier and TypeMethodDescriptionvoidCreateTableChange.addColumn(ColumnConfig column) voidDropColumnChange.addColumn(ColumnConfig column) voidInsertDataChange.addColumn(ColumnConfig column) voidUpdateDataChange.addColumn(ColumnConfig column) voidAbstractModifyDataChange.addWhereParam(ColumnConfig param) voidAddColumnChange.removeColumn(ColumnConfig column) voidInsertDataChange.removeColumn(ColumnConfig column) voidUpdateDataChange.removeColumn(ColumnConfig column) voidAbstractModifyDataChange.removeWhereParam(ColumnConfig param) Method parameters in liquibase.change.core with type arguments of type ColumnConfigModifier and TypeMethodDescriptionvoidCreateTableChange.setColumns(List<ColumnConfig> columns) voidDropColumnChange.setColumns(List<ColumnConfig> columns) voidInsertDataChange.setColumns(List<ColumnConfig> columns) voidUpdateDataChange.setColumns(List<ColumnConfig> columns) 
- 
Uses of ColumnConfig in liquibase.database.coreMethods in liquibase.database.core that return ColumnConfigMethods in liquibase.database.core with parameters of type ColumnConfigModifier and TypeMethodDescriptionbooleanSQLiteDatabase.AlterTableVisitor.copyThisColumn(ColumnConfig column) booleanSQLiteDatabase.AlterTableVisitor.createThisColumn(ColumnConfig column) 
- 
Uses of ColumnConfig in liquibase.diff.output.changelog.coreMethods in liquibase.diff.output.changelog.core with parameters of type ColumnConfigModifier and TypeMethodDescriptionstatic voidMissingTableChangeGenerator.setDefaultValue(ColumnConfig columnConfig, Column column, Database database) 
- 
Uses of ColumnConfig in liquibase.serializer.core.xmlMethods in liquibase.serializer.core.xml with parameters of type ColumnConfig
- 
Uses of ColumnConfig in liquibase.statementMethods in liquibase.statement that return types with arguments of type ColumnConfigModifier and TypeMethodDescriptionList<? extends ColumnConfig>ExecutablePreparedStatementBase.getColumns()Methods in liquibase.statement with parameters of type ColumnConfigModifier and TypeMethodDescriptionprotected voidExecutablePreparedStatementBase.applyColumnParameter(PreparedStatement stmt, int i, ColumnConfig col) Sets a single bind variable for a statement to its designated valueMethod parameters in liquibase.statement with type arguments of type ColumnConfigModifier and TypeMethodDescriptionprotected voidBatchDmlExecutablePreparedStatement.attachParams(List<? extends ColumnConfig> ignored, PreparedStatement stmt) protected voidExecutablePreparedStatementBase.attachParams(List<? extends ColumnConfig> cols, PreparedStatement stmt) Sets the list of bind variables for the execution of a DML statementprotected StringBatchDmlExecutablePreparedStatement.generateSql(List<ColumnConfig> cols) protected abstract StringExecutablePreparedStatementBase.generateSql(List<ColumnConfig> cols) protected StringInsertExecutablePreparedStatement.generateSql(List<ColumnConfig> cols) protected StringUpdateExecutablePreparedStatement.generateSql(List<ColumnConfig> cols) Constructor parameters in liquibase.statement with type arguments of type ColumnConfigModifierConstructorDescriptionprotectedExecutablePreparedStatementBase(Database database, String catalogName, String schemaName, String tableName, List<? extends ColumnConfig> columns, ChangeSet changeSet, ResourceAccessor resourceAccessor) InsertExecutablePreparedStatement(Database database, String catalogName, String schemaName, String tableName, List<? extends ColumnConfig> columns, ChangeSet changeSet, ResourceAccessor resourceAccessor) UpdateExecutablePreparedStatement(Database database, String catalogName, String schemaName, String tableName, List<ColumnConfig> columns, ChangeSet changeSet, ResourceAccessor resourceAccessor) 
- 
Uses of ColumnConfig in liquibase.statement.coreMethods in liquibase.statement.core that return ColumnConfigModifier and TypeMethodDescriptionSelectFromDatabaseChangeLogLockStatement.getColumnsToSelect()SelectFromDatabaseChangeLogStatement.getColumnsToSelect()DropUniqueConstraintStatement.getUniqueColumns()Methods in liquibase.statement.core that return types with arguments of type ColumnConfigMethods in liquibase.statement.core with parameters of type ColumnConfigModifier and TypeMethodDescriptionInsertStatement.addColumn(ColumnConfig columnConfig) voidDropUniqueConstraintStatement.setUniqueColumns(ColumnConfig[] uniqueColumns) Constructors in liquibase.statement.core with parameters of type ColumnConfigModifierConstructorDescriptionAddForeignKeyConstraintStatement(String constraintName, String baseTableCatalogName, String baseTableSchemaName, String baseTableName, ColumnConfig[] baseColumns, String referencedTableCatalogName, String referencedTableSchemaName, String referencedTableName, ColumnConfig[] referencedColumns) AddPrimaryKeyStatement(String catalogName, String schemaName, String tableName, ColumnConfig[] columns, String constraintName) AddUniqueConstraintStatement(String catalogName, String schemaName, String tableName, ColumnConfig[] columns, String constraintName) DropUniqueConstraintStatement(String catalogName, String schemaName, String tableName, String constraintName, ColumnConfig[] uniqueColumns) SelectFromDatabaseChangeLogLockStatement(ColumnConfig... columnsToSelect) SelectFromDatabaseChangeLogStatement(ColumnConfig... columnsToSelect) SelectFromDatabaseChangeLogStatement(SelectFromDatabaseChangeLogStatement.WhereClause whereClause, ColumnConfig... columnsToSelect) Constructor parameters in liquibase.statement.core with type arguments of type ColumnConfigModifierConstructorDescriptionCopyRowsStatement(String sourceTable, String targetTable, List<ColumnConfig> copyColumns) 
- 
Uses of ColumnConfig in liquibase.structure.coreConstructors in liquibase.structure.core with parameters of type ColumnConfig