Uses of Class
org.jooq.DDLFlag
-
Packages that use DDLFlag Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This 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 DDLFlagDDLFlag. 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()TheDDLFlagthat are enabled on this configuration.Methods in org.jooq with parameters of type DDLFlag Modifier and Type Method Description @NotNull QueriesDSLContext. ddl(Collection<? extends Table<?>> tables, DDLFlag... flags)Convenience method forMeta.ddl(DDLExportConfiguration).@NotNull QueriesDSLContext. ddl(Catalog schema, DDLFlag... flags)Convenience method forMeta.ddl(DDLExportConfiguration).@NotNull QueriesDSLContext. ddl(Schema schema, DDLFlag... flags)Convenience method forMeta.ddl(DDLExportConfiguration).@NotNull QueriesDSLContext. ddl(Table<?>[] tables, DDLFlag... flags)Convenience method forMeta.ddl(DDLExportConfiguration).@NotNull QueriesDSLContext. ddl(Table<?> table, DDLFlag... flags)Convenience method forMeta.ddl(DDLExportConfiguration).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(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(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)
-