Uses of Class
org.d2rq.db.schema.ForeignKey

Packages that use ForeignKey
org.d2rq.db.renamer   
org.d2rq.db.schema   
org.d2rq.lang   
org.d2rq.mapgen   
 

Uses of ForeignKey in org.d2rq.db.renamer
 

Methods in org.d2rq.db.renamer that return ForeignKey
 ForeignKey Renamer.applyTo(TableName table, ForeignKey foreignKey)
          Renames tables/columns in a ForeignKey.
 

Methods in org.d2rq.db.renamer with parameters of type ForeignKey
 ForeignKey Renamer.applyTo(TableName table, ForeignKey foreignKey)
          Renames tables/columns in a ForeignKey.
 

Uses of ForeignKey in org.d2rq.db.schema
 

Methods in org.d2rq.db.schema that return types with arguments of type ForeignKey
 Set<ForeignKey> TableDef.getForeignKeys()
           
 

Constructor parameters in org.d2rq.db.schema with type arguments of type ForeignKey
TableDef(TableName name, List<ColumnDef> columns, Key primaryKey, Set<Key> uniqueKeys, Set<ForeignKey> foreignKeys)
           
 

Uses of ForeignKey in org.d2rq.lang
 

Methods in org.d2rq.lang that return types with arguments of type ForeignKey
 Map<ForeignKey,TableName> JoinSetParser.getAssertedForeignKeys()
           
 

Uses of ForeignKey in org.d2rq.mapgen
 

Methods in org.d2rq.mapgen with parameters of type ForeignKey
 void MappingGenerator.writeForeignKey(TableDef table, ForeignKey foreignKey)