Uses of Enum Class
org.jooq.impl.QOM.JoinHint
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of QOM.JoinHint in org.jooq
Modifier and TypeMethodDescriptionvoid
SelectQuery.addJoin
(TableLike<?> table, JoinType type, QOM.JoinHint hint, Condition condition) Joins the existing table product to a new table using a condition, connecting them with each other withOperator.AND
.void
SelectQuery.addJoin
(TableLike<?> table, JoinType type, QOM.JoinHint hint, Condition... conditions) Joins the existing table product to a new table using a condition, connecting them with each other withOperator.AND
.void
SelectQuery.addJoin
(TableLike<?> table, JoinType type, QOM.JoinHint hint, Condition[] conditions, Field<?>[] partitionBy) Joins the existing table product to a new table using conditions, connecting them with each other withOperator.AND
.void
SelectQuery.addJoin
(TableLike<?> table, JoinType type, QOM.JoinHint hint, Condition conditions, Field<?>[] partitionBy) Joins the existing table product to a new table using conditions, connecting them with each other withOperator.AND
.void
SelectQuery.addJoinOnKey
(TableLike<?> table, JoinType type, QOM.JoinHint hint) Joins the existing table product to a new table using a foreign key.void
SelectQuery.addJoinOnKey
(TableLike<?> table, JoinType type, QOM.JoinHint hint, ForeignKey<?, ?> key) Joins the existing table product to a new table using a foreign key.void
SelectQuery.addJoinOnKey
(TableLike<?> table, JoinType type, QOM.JoinHint hint, TableField<?, ?>... keyFields) Joins the existing table product to a new table using a foreign key.void
SelectQuery.addJoinUsing
(TableLike<?> table, JoinType type, QOM.JoinHint hint, Collection<? extends Field<?>> fields) Joins the existing table product to a new table with aUSING
clause.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.join
(TableLike<?> table, JoinType type, QOM.JoinHint hint) Convenience method to join a table to the last table added to theFROM
clause usingTable.join(TableLike, JoinType, JoinHint)
@NotNull TableOptionalOnStep<Record>
Table.join
(TableLike<?> table, JoinType type, QOM.JoinHint hint) Join a table to this table using aJoinType
andQOM.JoinHint
.@NotNull TablePartitionByStep<Record>
TableOuterJoinStep.join
(TableLike<?> table, JoinType type, QOM.JoinHint hint) Join a table to this table using aJoinType
and aQOM.JoinHint
. -
Uses of QOM.JoinHint in org.jooq.impl
Modifier and TypeMethodDescription@Nullable QOM.JoinHint
QOM.JoinTable.$hint()
static QOM.JoinHint
Returns the enum constant of this class with the specified name.static QOM.JoinHint[]
QOM.JoinHint.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionQOM.JoinTable.$hint
(QOM.JoinHint hint) final TableOptionalOnStep<Record>
TableImpl.join
(TableLike<?> table, JoinType type, QOM.JoinHint hint)