Uses of Interface
org.sql.generation.api.grammar.builders.definition.ForeignKeyConstraintBuilder

Packages that use ForeignKeyConstraintBuilder
org.sql.generation.api.grammar.builders.definition This is package containing builders for syntax elements used in SQL Data Definition statements (typically CREATE statements). 
org.sql.generation.api.grammar.factories This package provides factories to create various builders and SQL syntax elements. 
 

Uses of ForeignKeyConstraintBuilder in org.sql.generation.api.grammar.builders.definition
 

Methods in org.sql.generation.api.grammar.builders.definition that return ForeignKeyConstraintBuilder
 ForeignKeyConstraintBuilder ForeignKeyConstraintBuilder.addSourceColumns(String... columnNames)
          Adds source column names to this foreign key constraint.
 ForeignKeyConstraintBuilder ForeignKeyConstraintBuilder.addTargetColumns(String... columnNames)
          Adds target column names to this foreign key constraint.
 ForeignKeyConstraintBuilder ForeignKeyConstraintBuilder.setMatchType(MatchType matchType)
          Sets the match type for this foreign key constraint.
 ForeignKeyConstraintBuilder ForeignKeyConstraintBuilder.setOnDelete(ReferentialAction action)
          Sets the ON DELETE action.
 ForeignKeyConstraintBuilder ForeignKeyConstraintBuilder.setOnUpdate(ReferentialAction action)
          Sets the ON UPDATE action.
 ForeignKeyConstraintBuilder ForeignKeyConstraintBuilder.setTargetTableName(TableName tableName)
          Sets the target table name for this foreign key constraint.
 

Uses of ForeignKeyConstraintBuilder in org.sql.generation.api.grammar.factories
 

Methods in org.sql.generation.api.grammar.factories that return ForeignKeyConstraintBuilder
 ForeignKeyConstraintBuilder DefinitionFactory.createForeignKeyConstraintBuilder()
          Creates an empty builder for FOREIGN KEY constraint, typically used in CREATE TABLE statements.
 



Copyright © 2010-2011. All Rights Reserved.