Uses of Class
org.jooq.DDLFlag
-
Packages that use DDLFlag Package Description org.jooq Theorg.jooqpackage contains jOOQ's public API.org.jooq.impl Theorg.jooq.implpackage contains jOOQ's implementation classes. -
-
Uses of DDLFlag in org.jooq
Methods in org.jooq that return DDLFlag Modifier and Type Method Description static DDLFlagDDLFlag. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DDLFlag[]DDLFlag. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jooq that return types with arguments of type DDLFlag Modifier and Type Method Description java.util.Set<DDLFlag>DDLExportConfiguration. flags()TheDDLFlagthat are enabled on this configuration.Methods in org.jooq with parameters of type DDLFlag Modifier and Type Method Description QueriesDSLContext. ddl(java.util.Collection<? extends Table<?>> tables, DDLFlag... flags)Generate the complete creation script for tables.QueriesDSLContext. ddl(Catalog schema, DDLFlag... flags)Generate a partial creation script for the entire catalog.QueriesDSLContext. ddl(Schema schema, DDLFlag... flags)Generate a partial creation script for the entire schema.QueriesDSLContext. ddl(Table<?>[] tables, DDLFlag... flags)Generate the complete creation script for tables.QueriesDSLContext. ddl(Table<?> table, DDLFlag... flags)Generate a partial creation script for a table.DDLExportConfigurationDDLExportConfiguration. flags(DDLFlag... newFlags)TheDDLFlagthat are enabled on this configuration.Method parameters in org.jooq with type arguments of type DDLFlag Modifier and Type Method Description DDLExportConfigurationDDLExportConfiguration. flags(java.util.Collection<DDLFlag> newFlags)TheDDLFlagthat are enabled on this configuration. -
Uses of DDLFlag in org.jooq.impl
Methods in org.jooq.impl with parameters of type DDLFlag Modifier and Type Method Description QueriesDefaultDSLContext. ddl(java.util.Collection<? extends Table<?>> tables, DDLFlag... flags)QueriesDefaultDSLContext. ddl(Catalog catalog, DDLFlag... flags)QueriesDefaultDSLContext. ddl(Schema schema, DDLFlag... flags)QueriesDefaultDSLContext. ddl(Table[] tables, DDLFlag... flags)QueriesDefaultDSLContext. ddl(Table<?> table, DDLFlag... flags)
-