Uses of Class
com.feedzai.commons.sql.abstraction.ddl.DbFk
-
Packages that use DbFk Package Description com.feedzai.commons.sql.abstraction.ddl Contains classes that aid on DDL creation.com.feedzai.commons.sql.abstraction.engine Contains the database engine core.com.feedzai.commons.sql.abstraction.engine.impl Database specific implementations. -
-
Uses of DbFk in com.feedzai.commons.sql.abstraction.ddl
Fields in com.feedzai.commons.sql.abstraction.ddl with type parameters of type DbFk Modifier and Type Field Description protected List<DbFk>DbEntity.Builder. fksMethods in com.feedzai.commons.sql.abstraction.ddl that return DbFk Modifier and Type Method Description DbFkDbFk.Builder. build()Methods in com.feedzai.commons.sql.abstraction.ddl that return types with arguments of type DbFk Modifier and Type Method Description List<DbFk>DbEntity. getFks()Gets the immutable list of foreign keys.Methods in com.feedzai.commons.sql.abstraction.ddl with parameters of type DbFk Modifier and Type Method Description DbEntity.BuilderDbEntity.Builder. addFk(DbFk... fks)Adds the FKs.Method parameters in com.feedzai.commons.sql.abstraction.ddl with type arguments of type DbFk Modifier and Type Method Description DbEntity.BuilderDbEntity.Builder. addFk(Collection<DbFk> fks)Adds the FKs.DbEntity.BuilderDbEntity.Builder. addFks(Collection<DbFk> fks)Adds the FKs. -
Uses of DbFk in com.feedzai.commons.sql.abstraction.engine
Method parameters in com.feedzai.commons.sql.abstraction.engine with type arguments of type DbFk Modifier and Type Method Description protected voidAbstractDatabaseEngine. addFks(DbEntity entity, Set<DbFk> fks)Adds foreign key constraints to the table in the database that the provided entity represents. -
Uses of DbFk in com.feedzai.commons.sql.abstraction.engine.impl
Method parameters in com.feedzai.commons.sql.abstraction.engine.impl with type arguments of type DbFk Modifier and Type Method Description protected voidCockroachDBEngine. addFks(DbEntity entity, Set<DbFk> fks)protected voidDB2Engine. addFks(DbEntity entity, Set<DbFk> fks)protected voidH2Engine. addFks(DbEntity entity, Set<DbFk> fks)protected voidMySqlEngine. addFks(DbEntity entity, Set<DbFk> fks)protected voidOracleEngine. addFks(DbEntity entity, Set<DbFk> fks)protected voidPostgreSqlEngine. addFks(DbEntity entity, Set<DbFk> fks)protected voidSqlServerEngine. addFks(DbEntity entity, Set<DbFk> fks)
-