Uses of Enum Class
org.jooq.JoinType
Packages that use 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 JoinTypeReturns 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 TypeMethodDescriptionvoidJoins the existing table product to a new table using a condition, connecting them with each other withOperator.AND.voidJoins the existing table product to a new table using a condition, connecting them with each other withOperator.AND.voidSelectQuery.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.voidSelectQuery.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.voidSelectQuery.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.voidSelectQuery.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.voidSelectQuery.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.voidSelectQuery.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.voidSelectQuery.addJoinOnKey(TableLike<?> table, JoinType type) Joins the existing table product to a new table using a foreign key.voidSelectQuery.addJoinOnKey(TableLike<?> table, JoinType type, ForeignKey<?, ?> key) Joins the existing table product to a new table using a foreign key.voidSelectQuery.addJoinOnKey(TableLike<?> table, JoinType type, QOM.JoinHint hint) Joins the existing table product to a new table using a foreign key.voidSelectQuery.addJoinOnKey(TableLike<?> table, JoinType type, QOM.JoinHint hint, ForeignKey<?, ?> key) Joins the existing table product to a new table using a foreign key.voidSelectQuery.addJoinOnKey(TableLike<?> table, JoinType type, QOM.JoinHint hint, TableField<?, ?>... keyFields) Joins the existing table product to a new table using a foreign key.voidSelectQuery.addJoinOnKey(TableLike<?> table, JoinType type, TableField<?, ?>... keyFields) Joins the existing table product to a new table using a foreign key.voidSelectQuery.addJoinUsing(TableLike<?> table, JoinType type, Collection<? extends Field<?>> fields) Joins the existing table product to a new table with aUSINGclause.voidSelectQuery.addJoinUsing(TableLike<?> table, JoinType type, QOM.JoinHint hint, Collection<? extends Field<?>> fields) Joins the existing table product to a new table with aUSINGclause.@NotNull SelectOptionalOnStep<R> Convenience method to join a table to the last table added to theFROMclause 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 theFROMclause 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 aJoinTypeandQOM.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 aJoinTypeand aQOM.JoinHint. -
Uses of JoinType in org.jooq.impl
Methods in org.jooq.impl with parameters of type JoinTypeModifier and TypeMethodDescriptionfinal TableOptionalOnStep<Record> final TableOptionalOnStep<Record> TableImpl.join(TableLike<?> table, JoinType type, QOM.JoinHint hint)