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