Uses of Class
com.feedzai.commons.sql.abstraction.ddl.DbColumnConstraint
-
Packages that use DbColumnConstraint Package Description com.feedzai.commons.sql.abstraction.ddl Contains classes that aid on DDL creation.com.feedzai.commons.sql.abstraction.dml.dialect Contains an SQL builder. -
-
Uses of DbColumnConstraint in com.feedzai.commons.sql.abstraction.ddl
Methods in com.feedzai.commons.sql.abstraction.ddl that return DbColumnConstraint Modifier and Type Method Description static DbColumnConstraintDbColumnConstraint. valueOf(String name)Returns the enum constant of this type with the specified name.static DbColumnConstraint[]DbColumnConstraint. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.feedzai.commons.sql.abstraction.ddl that return types with arguments of type DbColumnConstraint Modifier and Type Method Description List<DbColumnConstraint>DbColumn. getColumnConstraints()Gets the immutable list of constraints in the column.Methods in com.feedzai.commons.sql.abstraction.ddl with parameters of type DbColumnConstraint Modifier and Type Method Description DbEntity.BuilderDbEntity.Builder. addColumn(String name, DbColumnType type, boolean autoInc, DbColumnConstraint... constraints)Adds a column to the entity.DbEntity.BuilderDbEntity.Builder. addColumn(String name, DbColumnType type, DbColumnConstraint... constraints)Adds a column to the entity.DbEntity.BuilderDbEntity.Builder. addColumn(String name, DbColumnType type, K defaultValue, DbColumnConstraint... constraints)Adds a column to the entity.DbEntity.BuilderDbEntity.Builder. addColumn(String name, DbColumnType type, Integer size, boolean autoInc, DbColumnConstraint... constraints)Adds a column to the entity.DbEntity.BuilderDbEntity.Builder. addColumn(String name, DbColumnType type, Integer size, DbColumnConstraint... constraints)Adds a column to the entity.DbColumn.BuilderDbColumn.Builder. addConstraint(DbColumnConstraint dbColumnConstraint)Adds a new constraint to this column.DbColumn.BuilderDbColumn.Builder. addConstraints(DbColumnConstraint... constraints)Adds constraints.Method parameters in com.feedzai.commons.sql.abstraction.ddl with type arguments of type DbColumnConstraint Modifier and Type Method Description DbColumn.BuilderDbColumn.Builder. addConstraints(Collection<DbColumnConstraint> constraints)Adds constraints. -
Uses of DbColumnConstraint in com.feedzai.commons.sql.abstraction.dml.dialect
Methods in com.feedzai.commons.sql.abstraction.dml.dialect with parameters of type DbColumnConstraint Modifier and Type Method Description static AlterColumnSqlBuilder. alterColumn(Expression table, Name column, DbColumnType dbColumnType, DbColumnConstraint... constraints)Alter column operator.
-