Uses of Interface
org.jooq.MergeFinalStep
-
Packages that use MergeFinalStep Package Description org.jooq Theorg.jooq
package contains jOOQ's public API. -
-
Uses of MergeFinalStep in org.jooq
Subinterfaces of MergeFinalStep in org.jooq Modifier and Type Interface Description interface
MergeMatchedDeleteStep<R extends Record>
This type is used for theMerge
's DSL API.interface
MergeMatchedSetMoreStep<R extends Record>
This type is used for theMerge
's DSL API.interface
MergeMatchedStep<R extends Record>
This type is used for theMerge
's DSL API.interface
MergeMatchedWhereStep<R extends Record>
This type is used for theMerge
's DSL API.interface
MergeNotMatchedSetMoreStep<R extends Record>
This type is used for theMerge
's DSL API.interface
MergeNotMatchedStep<R extends Record>
This type is used for theMerge
's DSL API.interface
MergeNotMatchedWhereStep<R extends Record>
This type is used for theMerge
's DSL API.interface
MergeOnConditionStep<R extends Record>
This type is used for theMerge
's DSL API.Methods in org.jooq that return MergeFinalStep Modifier and Type Method Description MergeFinalStep<R>
MergeNotMatchedWhereStep. where(Boolean condition)
Deprecated.- 3.8.0 - [#4763] - UseMergeNotMatchedWhereStep.where(Condition)
(typically withDSL.trueCondition()
,DSL.falseCondition()
, orDSL.noCondition()
as the parameter) orMergeNotMatchedWhereStep.where(Field)
instead.MergeFinalStep<R>
MergeNotMatchedWhereStep. where(Condition condition)
Add an additionalWHERE
clause to the precedingWHEN NOT MATCHED THEN INSERT
clause.MergeFinalStep<R>
MergeNotMatchedWhereStep. where(Field<Boolean> condition)
Add an additionalWHERE
clause to the precedingWHEN NOT MATCHED THEN INSERT
clause.
-