Uses of Interface
org.jooq.Comment
-
Packages that use Comment Package Description org.jooq Theorg.jooqpackage contains jOOQ's public API.org.jooq.impl Theorg.jooq.implpackage contains jOOQ's implementation classes. -
-
Uses of Comment in org.jooq
Methods in org.jooq that return Comment Modifier and Type Method Description @NotNull CommentNamed. getCommentPart()The comment on this object as aQueryPart.Methods in org.jooq with parameters of type Comment Modifier and Type Method Description @NotNull AlterTableFinalStepAlterTableStep. comment(Comment comment)Specify a comment for a table using MySQL's syntax.@NotNull AlterViewFinalStepAlterViewStep. comment(Comment comment)Specify a comment for a table using MySQL's syntax (which MySQL currently doesn't support on views).@NotNull CreateTableStorageStepCreateTableCommentStep. comment(Comment comment)Add a comment to the table.@NotNull CommentOnFinalStepCommentOnIsStep. 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 @NotNull CommentDSL. comment(String comment)Create a comment.Methods in org.jooq.impl with parameters of type Comment Modifier and Type Method Description static <T> @NotNull Field<T>DSL. field(Name name, DataType<T> type, Comment comment)Create a qualified field, given its (qualified) field name.static @NotNull 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)LazySchema(Name name, Comment comment, LazySupplier<Schema> supplier)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)
-