Uses of Interface
org.jooq.Comment
-
Packages that use Comment Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes. -
-
Uses of Comment in org.jooq
Methods in org.jooq that return Comment Modifier and Type Method Description @NotNull Comment
Named. getCommentPart()
The comment on this object as aQueryPart
.Methods in org.jooq with parameters of type Comment Modifier and Type Method Description @NotNull AlterTableFinalStep
AlterTableStep. comment(Comment comment)
Specify a comment for a table using MySQL's syntax.@NotNull AlterViewFinalStep
AlterViewStep. comment(Comment comment)
Specify a comment for a table using MySQL's syntax (which MySQL currently doesn't support on views).@NotNull CreateTableStorageStep
CreateTableCommentStep. comment(Comment comment)
Add a comment to the table.@NotNull 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 @NotNull 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> @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)
-