Uses of Interface
org.jooq.Comment
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of Comment in org.jooq
Modifier and TypeMethodDescription@NotNull Comment
Named.getCommentPart()
The comment on this object as aQueryPart
.Modifier and TypeMethodDescription@NotNull AlterTableFinalStep
Specify a comment for a table using MySQL's syntax.@NotNull AlterViewFinalStep
Add theCOMMENT
clause to theALTER VIEW
statement.@NotNull CreateTableStorageStep
Add theCOMMENT
clause to theCREATE TABLE
statement.Attach aComment
to this field, for use in DDL statements, such asDSLContext.createTable(Table)
.@NotNull CommentOnFinalStep
Add theIS
clause to theCOMMENT ON TABLE
statement. -
Uses of Comment in org.jooq.impl
Modifier and TypeMethodDescription@Nullable Comment
QOM.AlterView.$comment()
@NotNull Comment
QOM.CommentOn.$comment()
@Nullable Comment
QOM.CreateTable.$comment()
static @NotNull Comment
Create a comment.Modifier and TypeMethodDescription@NotNull QOM.AlterView
@NotNull QOM.CommentOn
@NotNull QOM.CreateTable
static final <T,
U> @NotNull Domain <U> Internal.createDomain
(Schema schema, Name name, Comment comment, DataType<T> type, Binding<T, U> binding, Check<?>... checks) Factory method for domain specifications.static final <T> Domain
<T> Internal.createDomain
(Schema schema, Name name, Comment comment, DataType<T> type, Check<?>... checks) Factory method for domain specifications.static final <T,
U> @NotNull Domain <U> Internal.createDomain
(Schema schema, Name name, Comment comment, DataType<T> type, Converter<T, U> converter, Check<?>... checks) Factory method for domain specifications.static final <T,
X, U> @NotNull Domain <U> Internal.createDomain
(Schema schema, Name name, Comment comment, DataType<T> type, Converter<X, U> converter, Binding<T, X> binding, Check<?>... checks) Factory method for domain specifications.Internal.createSequence
(String name, Schema schema, Comment comment, DataType<T> type) Factory method for sequences.Internal.createSequence
(String name, Schema schema, Comment comment, DataType<T> type, Number startWith, Number incrementBy, Number minvalue, Number maxvalue, boolean cycle, Number cache) Factory method for sequences.static final @NotNull Synonym
Internal.createSynonym
(Schema schema, Name name, Table<?> table, boolean isPublic, Comment comment) Factory method for synonym specifications.static final @NotNull Trigger
Internal.createTrigger
(Schema schema, Table<?> table, List<Field<?>> fields, Name name, Comment comment, TriggerTime time, Set<TriggerEvent> events, TriggerExecution execution, Condition when, int actionOrder, Statement action) Factory method for trigger specifications.static <T> @NotNull Field
<T> Create a qualified field, given its (qualified) field name.Create a qualified table, given its table name.ModifierConstructorDescriptionprotected
AbstractRoutine
(String name, Schema schema, Comment comment) protected
protected
AbstractRoutine
(String name, Schema schema, Comment comment, DataType<X> type, Binding<X, T> binding) protected
AbstractRoutine
(String name, Schema schema, Comment comment, DataType<X> type, Converter<X, T> converter) protected
AbstractRoutine
(String name, Schema schema, Comment comment, DataType<X> type, Converter<Y, T> converter, Binding<X, Y> binding) protected
AbstractRoutine
(String name, Schema schema, Package pkg, Comment comment) protected
AbstractRoutine
(String name, Schema schema, Package pkg, Comment comment, DataType<? extends T> type) protected
AbstractRoutine
(String name, Schema schema, Package pkg, Comment comment, DataType<X> type, Binding<X, T> binding) protected
AbstractRoutine
(String name, Schema schema, Package pkg, Comment comment, DataType<X> type, Converter<X, T> converter) protected
AbstractRoutine
(String name, Schema schema, Package pkg, Comment comment, DataType<X> type, Converter<Y, T> converter, Binding<X, Y> binding) 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<?> path, ForeignKey<?, R> childPath, InverseForeignKey<?, R> parentPath, Table<R> aliased, Field<?>[] parameters, Comment comment) TableImpl
(Name name, Schema schema, Table<?> path, ForeignKey<?, R> childPath, InverseForeignKey<?, R> parentPath, Table<R> aliased, Field<?>[] parameters, Comment comment, TableOptions options) Deprecated.- [#8012] - 3.19.0 - Please re-generate your code.TableImpl
(Name name, Schema schema, Table<?> path, ForeignKey<?, R> childPath, InverseForeignKey<?, R> parentPath, Table<R> aliased, Field<?>[] parameters, Comment comment, TableOptions options, Condition where) TableImpl
(Name name, Schema schema, Table<?> path, ForeignKey<?, R> childPath, Table<R> aliased, Field<?>[] parameters, Comment comment) Deprecated.- [#13639] [#14985] [#15005] - 3.19.0 - Please re-generate your code.TableImpl
(Name name, Schema schema, Table<?> path, ForeignKey<?, R> childPath, Table<R> aliased, Field<?>[] parameters, Comment comment, TableOptions options) Deprecated.- [#13639] [#14985] [#15005] - 3.19.0 - Please re-generate your code.TableImpl
(Name name, Schema schema, Table<R> aliased, Field<?>[] parameters, Comment comment, TableOptions options) TableImpl
(Name name, Schema schema, Table<R> aliased, Field<?>[] parameters, Comment comment, TableOptions options, Condition where) UDTPathTableFieldImpl
(Name name, DataType<T> type, RecordQualifier<R> qualifier, UDT<U> udt, Comment comment, Binding<?, T> binding)