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.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, 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.@NotNull SelectOptionalOnStep<R>Convenience method to join a table to the last table added to theFROMclause usingTable.join(TableLike, JoinType)@NotNull TableOptionalOnStep<Record>Join a table to this table using aJoinType@NotNull TablePartitionByStep<Record>Join a table to this table using aJoinType. -
Uses of JoinType in org.jooq.impl
Methods in org.jooq.impl with parameters of type JoinType