Uses of Class
org.sql.generation.api.grammar.definition.table.ReferentialAction

Packages that use ReferentialAction
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.definition.table This package contains syntax interfaces for CREATE TABLE statement. 
 

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

Methods in org.sql.generation.api.grammar.builders.definition that return ReferentialAction
 ReferentialAction ForeignKeyConstraintBuilder.getOnDelete()
          Returns the ON DELETE action for this foreign key constraint.
 ReferentialAction ForeignKeyConstraintBuilder.getOnUpdate()
          Returns the ON UPDATE action for this foreign key constraint.
 

Methods in org.sql.generation.api.grammar.builders.definition with parameters of type ReferentialAction
 ForeignKeyConstraintBuilder ForeignKeyConstraintBuilder.setOnDelete(ReferentialAction action)
          Sets the ON DELETE action.
 ForeignKeyConstraintBuilder ForeignKeyConstraintBuilder.setOnUpdate(ReferentialAction action)
          Sets the ON UPDATE action.
 

Uses of ReferentialAction in org.sql.generation.api.grammar.definition.table
 

Fields in org.sql.generation.api.grammar.definition.table declared as ReferentialAction
static ReferentialAction ReferentialAction.CASCADE
          Represents the cascading policy (CASCADE.
static ReferentialAction ReferentialAction.NO_ACTION
          Represents the policy, which checks the integrity after UPDATE or DELETE statement, and the statement will not be executed if it violates integrity.
static ReferentialAction ReferentialAction.RESTRICT
          Represents the policy, which checks the integrity before UPDATE or DELETE statement, and the statement will not be executed if it violates integrity.
static ReferentialAction ReferentialAction.SET_DEFAULT
          Represents the policy, which sets the value as default (SET DEFAULT.
static ReferentialAction ReferentialAction.SET_NULL
          Represents the policy, which sets the value as NULL (SET NULL.
 

Methods in org.sql.generation.api.grammar.definition.table that return ReferentialAction
 ReferentialAction ForeignKeyConstraint.getOnDelete()
          Returns the referential action of deleting the rows.
 ReferentialAction ForeignKeyConstraint.getOnUpdate()
          Returns the referential action of updating the rows.
 



Copyright © 2010-2011. All Rights Reserved.