Uses of Enum Class
org.jooq.JoinType
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of JoinType in org.jooq
Modifier and TypeMethodDescriptionstatic JoinType
Returns the enum constant of this class with the specified name.static JoinType[]
JoinType.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionvoid
Joins the existing table product to a new table using a condition, connecting them with each other withOperator.AND
.void
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, 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, 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 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) Joins the existing table product to a new table using a foreign key.void
SelectQuery.addJoinOnKey
(TableLike<?> table, JoinType type, 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) 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.addJoinOnKey
(TableLike<?> table, JoinType type, TableField<?, ?>... keyFields) Joins the existing table product to a new table using a foreign key.void
SelectQuery.addJoinUsing
(TableLike<?> table, JoinType type, Collection<? extends Field<?>> fields) Joins the existing table product to a new table with aUSING
clause.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> Convenience method to join a table to the last table added to theFROM
clause usingTable.join(TableLike, JoinType)
@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> Join a table to this table using aJoinType
.@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> Join a table to this table using aJoinType
.@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 JoinType in org.jooq.impl
Modifier and TypeMethodDescriptionfinal TableOptionalOnStep
<Record> final TableOptionalOnStep
<Record> TableImpl.join
(TableLike<?> table, JoinType type, QOM.JoinHint hint)