Uses of Class
liquibase.database.structure.ForeignKeyConstraintType

Packages that use ForeignKeyConstraintType
liquibase.change.core   
liquibase.database.structure   
liquibase.snapshot.jvm   
 

Uses of ForeignKeyConstraintType in liquibase.change.core
 

Methods in liquibase.change.core with parameters of type ForeignKeyConstraintType
 void AddForeignKeyConstraintChange.setOnDelete(ForeignKeyConstraintType rule)
           
 void AddForeignKeyConstraintChange.setOnUpdate(ForeignKeyConstraintType rule)
           
 

Uses of ForeignKeyConstraintType in liquibase.database.structure
 

Methods in liquibase.database.structure that return ForeignKeyConstraintType
 ForeignKeyConstraintType ForeignKey.getDeleteRule()
           
 ForeignKeyConstraintType ForeignKeyInfo.getDeleteRule()
           
 ForeignKeyConstraintType ForeignKey.getUpdateRule()
           
 ForeignKeyConstraintType ForeignKeyInfo.getUpdateRule()
           
static ForeignKeyConstraintType ForeignKeyConstraintType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ForeignKeyConstraintType[] ForeignKeyConstraintType.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in liquibase.database.structure with parameters of type ForeignKeyConstraintType
 void ForeignKey.setDeleteRule(ForeignKeyConstraintType rule)
           
 void ForeignKeyInfo.setDeleteRule(ForeignKeyConstraintType deleteRule)
           
 void ForeignKey.setUpdateRule(ForeignKeyConstraintType rule)
           
 void ForeignKeyInfo.setUpdateRule(ForeignKeyConstraintType updateRule)
           
 

Uses of ForeignKeyConstraintType in liquibase.snapshot.jvm
 

Methods in liquibase.snapshot.jvm that return ForeignKeyConstraintType
protected  ForeignKeyConstraintType JdbcDatabaseSnapshotGenerator.convertToForeignKeyConstraintType(int jdbcType)
           
protected  ForeignKeyConstraintType MSSQLDatabaseSnapshotGenerator.convertToForeignKeyConstraintType(int jdbcType)
          The sp_fkeys stored procedure spec says that returned integer values of 0, 1 and 2 translate to cascade, noAction and SetNull, which are not the values in the JDBC standard.
 



Copyright © 2012 Liquibase.org. All Rights Reserved.