Uses of Class
org.jooq.DDLExportConfiguration
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of DDLExportConfiguration in org.jooq
Modifier and TypeMethodDescriptionfinal DDLExportConfiguration
DDLExportConfiguration.createDomainIfNotExists
(boolean newCreateDomainIfNotExists) Whether to generateCREATE DOMAIN IF NOT EXISTS
statements.final DDLExportConfiguration
DDLExportConfiguration.createIndexIfNotExists
(boolean newCreateIndexIfNotExists) Whether to generateCREATE INDEX IF NOT EXISTS
statements.final DDLExportConfiguration
DDLExportConfiguration.createMaterializedViewIfNotExists
(boolean newCreateMaterializedViewIfNotExists) Whether to generateCREATE MATERIALIZED VIEW IF NOT EXISTS
statements.final DDLExportConfiguration
DDLExportConfiguration.createOrReplaceMaterializedView
(boolean newCreateOrReplaceMaterializedView) Whether to generateCREATE OR REPLACE MATERIALIZED VIEW
statements.final DDLExportConfiguration
DDLExportConfiguration.createOrReplaceTrigger
(boolean newCreateOrReplaceTrigger) Whether to generateCREATE OR REPLACE TRIGGER
statements.final DDLExportConfiguration
DDLExportConfiguration.createOrReplaceView
(boolean newCreateOrReplaceView) Whether to generateCREATE OR REPLACE VIEW
statements.final DDLExportConfiguration
DDLExportConfiguration.createSchemaIfNotExists
(boolean newCreateSchemaIfNotExists) Whether to generateCREATE SCHEMA IF NOT EXISTS
statements.final DDLExportConfiguration
DDLExportConfiguration.createSequenceIfNotExists
(boolean newCreateSequenceIfNotExists) Whether to generateCREATE SEQUENCE IF NOT EXISTS
statements.final DDLExportConfiguration
DDLExportConfiguration.createTableIfNotExists
(boolean newCreateTableIfNotExists) Whether to generateCREATE TABLE IF NOT EXISTS
statements.final DDLExportConfiguration
DDLExportConfiguration.createViewIfNotExists
(boolean newCreateViewIfNotExists) Whether to generateCREATE VIEW IF NOT EXISTS
statements.final DDLExportConfiguration
DDLExportConfiguration.defaultSequenceFlags
(boolean newDefaultSequenceFlags) Whether to explicitly produce defaults for all sequence flags, when they're not defined explicitly.final DDLExportConfiguration
DDLExportConfiguration.flags
(Collection<DDLFlag> newFlags) TheDDLFlag
that are enabled on this configuration.final DDLExportConfiguration
TheDDLFlag
that are enabled on this configuration.final DDLExportConfiguration
DDLExportConfiguration.includeConstraintsOnViews
(boolean newIncludeConstraintsOnViews) Whether to include constraints on views.final DDLExportConfiguration
DDLExportConfiguration.inlineForeignKeyConstraints
(DDLExportConfiguration.InlineForeignKeyConstraints newInlineForeignKeyConstraints) Whether to inline foreign key constraint definitions with the table definition.final DDLExportConfiguration
DDLExportConfiguration.respectCatalogOrder
(boolean newRespectCatalogOrder) Whether to respect the catalog order produced by theMeta
source when generated catalog DDL.final DDLExportConfiguration
DDLExportConfiguration.respectColumnOrder
(boolean newRespectColumnOrder) Whether to respect the column order produced by theMeta
source when generated column DDL.final DDLExportConfiguration
DDLExportConfiguration.respectConstraintOrder
(boolean newRespectConstraintOrder) Whether to respect the constraint order produced by theMeta
source when generated constraint DDL.final DDLExportConfiguration
DDLExportConfiguration.respectDomainOrder
(boolean newRespectDomainOrder) Whether to respect the sequence order produced by theMeta
source when generated sequence DDL.final DDLExportConfiguration
DDLExportConfiguration.respectIndexOrder
(boolean newRespectIndexOrder) Whether to respect the index order produced by theMeta
source when generated index DDL.final DDLExportConfiguration
DDLExportConfiguration.respectSchemaOrder
(boolean newRespectSchemaOrder) Whether to respect the schema order produced by theMeta
source when generated schema DDL.final DDLExportConfiguration
DDLExportConfiguration.respectSequenceOrder
(boolean newRespectSequenceOrder) Whether to respect the sequence order produced by theMeta
source when generated sequence DDL.final DDLExportConfiguration
DDLExportConfiguration.respectTableOrder
(boolean newRespectTableOrder) Whether to respect the table order produced by theMeta
source when generated table DDL.final DDLExportConfiguration
DDLExportConfiguration.respectTriggerOrder
(boolean newRespectTriggerOrder) Whether to respect the trigger order produced by theMeta
source when generated trigger DDL.Modifier and TypeMethodDescription@NotNull Queries
DSLContext.ddl
(Collection<? extends Table<?>> tables, DDLExportConfiguration configuration) Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
DSLContext.ddl
(Catalog schema, DDLExportConfiguration configuration) Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
DSLContext.ddl
(Schema schema, DDLExportConfiguration configuration) Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
DSLContext.ddl
(Table<?>[] tables, DDLExportConfiguration configuration) Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
DSLContext.ddl
(Table<?> table, DDLExportConfiguration configuration) Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
Meta.ddl
(DDLExportConfiguration configuration) Generate a creation script for the entire meta data. -
Uses of DDLExportConfiguration in org.jooq.impl
Modifier and TypeMethodDescriptionDefaultDSLContext.ddl
(Collection<? extends Table<?>> tables, DDLExportConfiguration exportConfiguration) DefaultDSLContext.ddl
(Catalog catalog, DDLExportConfiguration exportConfiguration) DefaultDSLContext.ddl
(Schema schema, DDLExportConfiguration exportConfiguration) DefaultDSLContext.ddl
(Table[] tables, DDLExportConfiguration exportConfiguration) DefaultDSLContext.ddl
(Table<?> table, DDLExportConfiguration exportConfiguration)