-
public interface XMLQueryPassingStep
A step in the construction of anXMLQUERY
expression.- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull Field<XML>
passing(Field<XML> xml)
Add thePASSING
clause to theXMLQUERY
expression.@NotNull Field<XML>
passing(XML xml)
Add thePASSING
clause to theXMLQUERY
expression.@NotNull Field<XML>
passingByRef(Field<XML> xml)
Add thePASSING BY REF
clause to theXMLQUERY
expression.@NotNull Field<XML>
passingByRef(XML xml)
Add thePASSING BY REF
clause to theXMLQUERY
expression.@NotNull Field<XML>
passingByValue(Field<XML> xml)
Add thePASSING BY VALUE
clause to theXMLQUERY
expression.@NotNull Field<XML>
passingByValue(XML xml)
Add thePASSING BY VALUE
clause to theXMLQUERY
expression.
-
-
-
Method Detail
-
passing
@NotNull @Support({DB2,ORACLE,POSTGRES}) @NotNull Field<XML> passing(XML xml)
Add thePASSING
clause to theXMLQUERY
expression.
-
passing
@NotNull @Support({DB2,ORACLE,POSTGRES}) @NotNull Field<XML> passing(Field<XML> xml)
Add thePASSING
clause to theXMLQUERY
expression.
-
passingByRef
@NotNull @Support({DB2,POSTGRES}) @NotNull Field<XML> passingByRef(XML xml)
Add thePASSING BY REF
clause to theXMLQUERY
expression.
-
passingByRef
@NotNull @Support({DB2,POSTGRES}) @NotNull Field<XML> passingByRef(Field<XML> xml)
Add thePASSING BY REF
clause to theXMLQUERY
expression.
-
passingByValue
@NotNull @Support(ORACLE) @NotNull Field<XML> passingByValue(XML xml)
Add thePASSING BY VALUE
clause to theXMLQUERY
expression.
-
-