Uses of Interface
org.tentackle.model.ForeignKey
-
Packages that use ForeignKey Package Description org.tentackle.model Entity model.org.tentackle.model.impl Default model implementation.org.tentackle.model.migrate Database migration support. -
-
Uses of ForeignKey in org.tentackle.model
Methods in org.tentackle.model that return types with arguments of type ForeignKey Modifier and Type Method Description java.util.Collection<ForeignKey>Model. getForeignKeys()Gets all foreign keys.Methods in org.tentackle.model with parameters of type ForeignKey Modifier and Type Method Description java.lang.StringCodeFactory. createSqlForeignKey(ForeignKey foreignKey, org.tentackle.sql.Backend backend)Creates the foreign key creation sql code. -
Uses of ForeignKey in org.tentackle.model.impl
Classes in org.tentackle.model.impl that implement ForeignKey Modifier and Type Class Description classForeignKeyImplImplementation of a foreign key.Methods in org.tentackle.model.impl that return types with arguments of type ForeignKey Modifier and Type Method Description java.util.Collection<ForeignKey>ModelImpl. getForeignKeys()Methods in org.tentackle.model.impl with parameters of type ForeignKey Modifier and Type Method Description intForeignKeyImpl. compareTo(ForeignKey o) -
Uses of ForeignKey in org.tentackle.model.migrate
Methods in org.tentackle.model.migrate that return ForeignKey Modifier and Type Method Description ForeignKeyForeignKeyMigrator. getForeignKey()Gets the foreign key to migrate.Constructors in org.tentackle.model.migrate with parameters of type ForeignKey Constructor Description ForeignKeyMigrator(org.tentackle.sql.Backend backend, ForeignKey foreignKey, org.tentackle.sql.metadata.ForeignKeyMetaData foreignKeyMetaData)Creates a migrator.Constructor parameters in org.tentackle.model.migrate with type arguments of type ForeignKey Constructor Description TableMigrator(Entity entity, java.util.Collection<ForeignKey> foreignKeys, org.tentackle.sql.Backend backend, org.tentackle.sql.metadata.TableMetaData table)Creates a table migrator.
-