Uses of Class
org.jooq.DDLFlag
-
Packages that use DDLFlag Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes. -
-
Uses of DDLFlag in org.jooq
Methods in org.jooq that return DDLFlag Modifier and Type Method Description static DDLFlag
DDLFlag. valueOf(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 Set<DDLFlag>
DDLExportConfiguration. flags()
TheDDLFlag
that are enabled on this configuration.Methods in org.jooq with parameters of type DDLFlag Modifier and Type Method Description Queries
DSLContext. ddl(Collection<? extends Table<?>> tables, DDLFlag... flags)
Convenience method forMeta.ddl(DDLExportConfiguration)
.Queries
DSLContext. ddl(Catalog schema, DDLFlag... flags)
Convenience method forMeta.ddl(DDLExportConfiguration)
.Queries
DSLContext. ddl(Schema schema, DDLFlag... flags)
Convenience method forMeta.ddl(DDLExportConfiguration)
.Queries
DSLContext. ddl(Table<?>[] tables, DDLFlag... flags)
Convenience method forMeta.ddl(DDLExportConfiguration)
.Queries
DSLContext. ddl(Table<?> table, DDLFlag... flags)
Convenience method forMeta.ddl(DDLExportConfiguration)
.DDLExportConfiguration
DDLExportConfiguration. flags(DDLFlag... newFlags)
TheDDLFlag
that are enabled on this configuration.Method parameters in org.jooq with type arguments of type DDLFlag Modifier and Type Method Description DDLExportConfiguration
DDLExportConfiguration. flags(Collection<DDLFlag> newFlags)
TheDDLFlag
that 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 Queries
DefaultDSLContext. ddl(Collection<? extends Table<?>> tables, DDLFlag... flags)
Queries
DefaultDSLContext. ddl(Catalog catalog, DDLFlag... flags)
Queries
DefaultDSLContext. ddl(Schema schema, DDLFlag... flags)
Queries
DefaultDSLContext. ddl(Table[] tables, DDLFlag... flags)
Queries
DefaultDSLContext. ddl(Table<?> table, DDLFlag... flags)
-