-
- All Superinterfaces:
XMLTableColumnsFirstStep
public interface XMLTablePassingStep extends XMLTableColumnsFirstStep
A step in the construction of anXMLTABLEexpression.- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull XMLTableColumnsFirstSteppassing(Field<XML> xml)Add thePASSINGclause to theXMLEXISTSpredicate.@NotNull XMLTableColumnsFirstSteppassing(XML xml)Add thePASSINGclause to theXMLEXISTSpredicate.@NotNull XMLTableColumnsFirstSteppassingByRef(Field<XML> xml)Add thePASSING BY REFclause to theXMLEXISTSpredicate.@NotNull XMLTableColumnsFirstSteppassingByRef(XML xml)Add thePASSING BY REFclause to theXMLEXISTSpredicate.@NotNull XMLTableColumnsFirstSteppassingByValue(Field<XML> xml)Add thePASSING BY VALUEclause to theXMLEXISTSpredicate.@NotNull XMLTableColumnsFirstSteppassingByValue(XML xml)Add thePASSING BY VALUEclause to theXMLEXISTSpredicate.
-
-
-
Method Detail
-
passing
@NotNull @Support({DB2,HANA,ORACLE,POSTGRES_10,SQLSERVER}) @NotNull XMLTableColumnsFirstStep passing(XML xml)
Add thePASSINGclause to theXMLEXISTSpredicate.
-
passing
@NotNull @Support({DB2,HANA,ORACLE,POSTGRES_10,SQLSERVER}) @NotNull XMLTableColumnsFirstStep passing(Field<XML> xml)
Add thePASSINGclause to theXMLEXISTSpredicate.
-
passingByRef
@NotNull @Support({DB2,POSTGRES_10}) @NotNull XMLTableColumnsFirstStep passingByRef(XML xml)
Add thePASSING BY REFclause to theXMLEXISTSpredicate.
-
passingByRef
@NotNull @Support({DB2,POSTGRES_10}) @NotNull XMLTableColumnsFirstStep passingByRef(Field<XML> xml)
Add thePASSING BY REFclause to theXMLEXISTSpredicate.
-
passingByValue
@NotNull @Support({ORACLE,POSTGRES_10}) @NotNull XMLTableColumnsFirstStep passingByValue(XML xml)
Add thePASSING BY VALUEclause to theXMLEXISTSpredicate.
-
passingByValue
@NotNull @Support({ORACLE,POSTGRES_10}) @NotNull XMLTableColumnsFirstStep passingByValue(Field<XML> xml)
Add thePASSING BY VALUEclause to theXMLEXISTSpredicate.
-
-