Uses of Interface
org.jooq.Comment
-
Packages that use Comment 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 Comment in org.jooq
Methods in org.jooq with parameters of type Comment Modifier and Type Method Description AlterTableFinalStep
AlterTableStep. comment(Comment comment)
Specify a comment for a table using MySQL's syntax.AlterViewFinalStep
AlterViewStep. comment(Comment comment)
Specify a comment for a table using MySQL's syntax (which MySQL currently doesn't support on views).CreateTableStorageStep
CreateTableCommentStep. comment(Comment comment)
Add a comment to the table.CommentOnFinalStep
CommentOnIsStep. is(Comment comment)
Specify the comment for the given object type. -
Uses of Comment in org.jooq.impl
Methods in org.jooq.impl that return Comment Modifier and Type Method Description static Comment
DSL. comment(String comment)
Create a comment.Methods in org.jooq.impl with parameters of type Comment Modifier and Type Method Description static <T> Field<T>
DSL. field(Name name, DataType<T> type, Comment comment)
Create a qualified field, given its (qualified) field name.static Table<Record>
DSL. table(Name name, Comment comment)
Create a qualified table, given its table name.Constructors in org.jooq.impl with parameters of type Comment Constructor Description CatalogImpl(Name name, Comment comment)
SchemaImpl(Name name, Catalog catalog, Comment comment)
TableImpl(Name name, Schema schema, Table<?> child, ForeignKey<?,R> path, Table<R> aliased, Field<?>[] parameters, Comment comment)
TableImpl(Name name, Schema schema, Table<?> child, ForeignKey<?,R> path, Table<R> aliased, Field<?>[] parameters, Comment comment, TableOptions options)
TableImpl(Name name, Schema schema, Table<R> aliased, Field<?>[] parameters, Comment comment)
TableImpl(Name name, Schema schema, Table<R> aliased, Field<?>[] parameters, Comment comment, TableOptions options)
-