-
- All Superinterfaces:
Condition
,QueryPart
,Serializable
public interface JSONExistsOnStep extends Condition
A step in the construction ofDSL.jsonExists(Field, Field)
orDSL.jsonbExists(Field, Field)
functions where theON ERROR
clause can be defined.- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull Condition
errorOnError()
Add anERROR ON ERROR
clause.@NotNull Condition
falseOnError()
Add anFALSE ON ERROR
clause.@NotNull Condition
trueOnError()
Add anTRUE ON ERROR
clause.@NotNull Condition
unknownOnError()
Add anUNKNOWN ON ERROR
clause.
-
-
-
Method Detail
-
errorOnError
@NotNull @Support({DB2,ORACLE12C}) @Pro @NotNull Condition errorOnError()
Add anERROR ON ERROR
clause.
-
falseOnError
@NotNull @Support({DB2,ORACLE12C}) @Pro @NotNull Condition falseOnError()
Add anFALSE ON ERROR
clause.
-
trueOnError
@NotNull @Support({DB2,ORACLE12C}) @Pro @NotNull Condition trueOnError()
Add anTRUE ON ERROR
clause.
-
-