Class StandardUniqueKeyExporter
java.lang.Object
org.hibernate.tool.schema.internal.StandardUniqueKeyExporter
- All Implemented Interfaces:
Exporter<Constraint>
An
Exporter for unique constraints. The type argument is
Constraint, rather than UniqueKey, allowing for Dialects
which create unique constraints for unique indexes.- Author:
- Brett Meyer
-
Field Summary
Fields inherited from interface org.hibernate.tool.schema.spi.Exporter
NO_COMMANDS -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionString[]getSqlCreateStrings(Constraint constraint, Metadata metadata, SqlStringGenerationContext context) Get the commands needed for creation.String[]getSqlDropStrings(Constraint constraint, Metadata metadata, SqlStringGenerationContext context) Get the commands needed for dropping.
-
Constructor Details
-
StandardUniqueKeyExporter
-
-
Method Details
-
getSqlCreateStrings
public String[] getSqlCreateStrings(Constraint constraint, Metadata metadata, SqlStringGenerationContext context) Description copied from interface:ExporterGet the commands needed for creation.- Specified by:
getSqlCreateStringsin interfaceExporter<Constraint>- Returns:
- The commands needed for creation scripting.
-
getSqlDropStrings
public String[] getSqlDropStrings(Constraint constraint, Metadata metadata, SqlStringGenerationContext context) Description copied from interface:ExporterGet the commands needed for dropping.- Specified by:
getSqlDropStringsin interfaceExporter<Constraint>- Returns:
- The commands needed for drop scripting.
-