Uses of Class
org.jooq.TableOptions
-
Packages that use TableOptions Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes. -
-
Uses of TableOptions in org.jooq
Methods in org.jooq that return TableOptions Modifier and Type Method Description static @NotNull TableOptions
TableOptions. expression()
Create a newTableOptions
object for aTableOptions.TableType.EXPRESSION
.static @NotNull TableOptions
TableOptions. function()
Create a newTableOptions
object for aTableOptions.TableType.FUNCTION
.@NotNull TableOptions
Table. getOptions()
Get the table options.static @NotNull TableOptions
TableOptions. materializedView()
Create a newTableOptions
object for aTableOptions.TableType.MATERIALIZED_VIEW
of unknown content.static @NotNull TableOptions
TableOptions. materializedView(Select<?> select)
Create a newTableOptions
object for aTableOptions.TableType.MATERIALIZED_VIEW
.static @NotNull TableOptions
TableOptions. of(TableOptions.TableType tableType)
Get a newTableOptions
object for a given table type.static @NotNull TableOptions
TableOptions. table()
Create a newTableOptions
object for aTableOptions.TableType.TABLE
.static @NotNull TableOptions
TableOptions. temporaryTable()
Create a newTableOptions
object for aTableOptions.TableType.TEMPORARY
.static @NotNull TableOptions
TableOptions. temporaryTable(TableOptions.OnCommit onCommit)
Create a newTableOptions
object for aTableOptions.TableType.TEMPORARY
.static @NotNull TableOptions
TableOptions. view()
Create a newTableOptions
object for aTableOptions.TableType.VIEW
of unknown content.static @NotNull TableOptions
TableOptions. view(String source)
Create a newTableOptions
object for aTableOptions.TableType.VIEW
.static @NotNull TableOptions
TableOptions. view(Select<?> select)
Create a newTableOptions
object for aTableOptions.TableType.VIEW
. -
Uses of TableOptions in org.jooq.impl
Constructors in org.jooq.impl with parameters of type TableOptions Constructor Description 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, TableOptions options)
-