Uses of Class
org.jooq.XML
-
Packages that use XML Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes. -
-
Uses of XML in org.jooq
Methods in org.jooq that return XML Modifier and Type Method Description static @NotNull XML
XML. valueOf(String data)
Create a newXML
instance from string data input.static @NotNull XML
XML. xml(String data)
Create a newXML
instance from string data input.Methods in org.jooq that return types with arguments of type XML Modifier and Type Method Description @NotNull SelectForXMLStep<Record1<XML>>
SelectForStep. forXML()
Add a SQL Server-styleFOR XML
clause.@NotNull Field<XML>
XMLQueryPassingStep. passing(Field<XML> xml)
Add thePASSING
clause to theXMLQUERY
expression.@NotNull Field<XML>
XMLQueryPassingStep. passing(XML xml)
Add thePASSING
clause to theXMLQUERY
expression.@NotNull Field<XML>
XMLQueryPassingStep. passingByRef(Field<XML> xml)
Add thePASSING BY REF
clause to theXMLQUERY
expression.@NotNull Field<XML>
XMLQueryPassingStep. passingByRef(XML xml)
Add thePASSING BY REF
clause to theXMLQUERY
expression.@NotNull Field<XML>
XMLQueryPassingStep. passingByValue(Field<XML> xml)
Add thePASSING BY VALUE
clause to theXMLQUERY
expression.@NotNull Field<XML>
XMLQueryPassingStep. passingByValue(XML xml)
Add thePASSING BY VALUE
clause to theXMLQUERY
expression.Methods in org.jooq with parameters of type XML Modifier and Type Method Description @NotNull Condition
XMLExistsPassingStep. passing(XML xml)
Add thePASSING
clause to theXMLEXISTS
predicate.@NotNull Field<XML>
XMLQueryPassingStep. passing(XML xml)
Add thePASSING
clause to theXMLQUERY
expression.@NotNull XMLTableColumnsFirstStep
XMLTablePassingStep. passing(XML xml)
Add thePASSING
clause to theXMLEXISTS
predicate.@NotNull Condition
XMLExistsPassingStep. passingByRef(XML xml)
Add thePASSING BY REF
clause to theXMLEXISTS
predicate.@NotNull Field<XML>
XMLQueryPassingStep. passingByRef(XML xml)
Add thePASSING BY REF
clause to theXMLQUERY
expression.@NotNull XMLTableColumnsFirstStep
XMLTablePassingStep. passingByRef(XML xml)
Add thePASSING BY REF
clause to theXMLEXISTS
predicate.@NotNull Condition
XMLExistsPassingStep. passingByValue(XML xml)
Add thePASSING BY VALUE
clause to theXMLEXISTS
predicate.@NotNull Field<XML>
XMLQueryPassingStep. passingByValue(XML xml)
Add thePASSING BY VALUE
clause to theXMLQUERY
expression.@NotNull XMLTableColumnsFirstStep
XMLTablePassingStep. passingByValue(XML xml)
Add thePASSING BY VALUE
clause to theXMLEXISTS
predicate.Method parameters in org.jooq with type arguments of type XML Modifier and Type Method Description @NotNull Condition
XMLExistsPassingStep. passing(Field<XML> xml)
Add thePASSING
clause to theXMLEXISTS
predicate.@NotNull Field<XML>
XMLQueryPassingStep. passing(Field<XML> xml)
Add thePASSING
clause to theXMLQUERY
expression.@NotNull XMLTableColumnsFirstStep
XMLTablePassingStep. passing(Field<XML> xml)
Add thePASSING
clause to theXMLEXISTS
predicate.@NotNull Condition
XMLExistsPassingStep. passingByRef(Field<XML> xml)
Add thePASSING BY REF
clause to theXMLEXISTS
predicate.@NotNull Field<XML>
XMLQueryPassingStep. passingByRef(Field<XML> xml)
Add thePASSING BY REF
clause to theXMLQUERY
expression.@NotNull XMLTableColumnsFirstStep
XMLTablePassingStep. passingByRef(Field<XML> xml)
Add thePASSING BY REF
clause to theXMLEXISTS
predicate.@NotNull Condition
XMLExistsPassingStep. passingByValue(Field<XML> xml)
Add thePASSING BY VALUE
clause to theXMLEXISTS
predicate.@NotNull Field<XML>
XMLQueryPassingStep. passingByValue(Field<XML> xml)
Add thePASSING BY VALUE
clause to theXMLQUERY
expression.@NotNull XMLTableColumnsFirstStep
XMLTablePassingStep. passingByValue(Field<XML> xml)
Add thePASSING BY VALUE
clause to theXMLEXISTS
predicate. -
Uses of XML in org.jooq.impl
Fields in org.jooq.impl with type parameters of type XML Modifier and Type Field Description static DataType<XML>
SQLDataType. XML
TheXML
type.Methods in org.jooq.impl that return types with arguments of type XML Modifier and Type Method Description static @NotNull Param<XML>
DSL. inline(XML value)
Create a bind value that is always inlined.static @NotNull Param<XML>
DSL. val(XML value)
Get a bind value.static @NotNull Param<XML>
DSL. value(XML value)
A synonym forDSL.val(XML)
to be used in Scala and Groovy, whereval
is a reserved keyword.static @NotNull XMLAggOrderByStep<XML>
DSL. xmlagg(Field<XML> field)
The XML aggregate function.static @NotNull Field<XML>
DSL. xmlcomment(String comment)
The XML comment constructor.static @NotNull Field<XML>
DSL. xmlcomment(Field<String> comment)
The XML comment constructor.static @NotNull Field<XML>
DSL. xmlconcat(Collection<? extends Field<?>> fields)
The XML concat function.static @NotNull Field<XML>
DSL. xmlconcat(Field<?>... fields)
The XML concat function.static @NotNull Field<XML>
DSL. xmldocument(Field<XML> content)
The XML document constructor.static @NotNull Field<XML>
DSL. xmlelement(String name, Collection<? extends Field<?>> content)
The XML element constructor.static @NotNull Field<XML>
DSL. xmlelement(String name, Field<?>... content)
The XML element constructor.static @NotNull Field<XML>
DSL. xmlelement(String name, XMLAttributes attributes, Collection<? extends Field<?>> content)
The XML element constructor.static @NotNull Field<XML>
DSL. xmlelement(String name, XMLAttributes attributes, Field<?>... content)
The XML element constructor.static @NotNull Field<XML>
DSL. xmlelement(Name name, Collection<? extends Field<?>> content)
The XML element constructor.static @NotNull Field<XML>
DSL. xmlelement(Name name, Field<?>... content)
The XML element constructor.static @NotNull Field<XML>
DSL. xmlelement(Name name, XMLAttributes attributes, Collection<? extends Field<?>> content)
The XML element constructor.static @NotNull Field<XML>
DSL. xmlelement(Name name, XMLAttributes attributes, Field<?>... content)
The XML element constructor.static @NotNull Field<XML>
DSL. xmlforest(Collection<? extends Field<?>> fields)
The XML forest constructor.static @NotNull Field<XML>
DSL. xmlforest(Field<?>... fields)
The XML forest constructor.static @NotNull Field<XML>
DSL. xmlparseContent(String content)
The XML parse function.static @NotNull Field<XML>
DSL. xmlparseContent(Field<String> content)
The XML parse function.static @NotNull Field<XML>
DSL. xmlparseDocument(String content)
The XML parse function.static @NotNull Field<XML>
DSL. xmlparseDocument(Field<String> content)
The XML parse function.static @NotNull Field<XML>
DSL. xmlpi(String target)
The XML processing instruction constructor.static @NotNull Field<XML>
DSL. xmlpi(String target, Field<?> content)
The XML processing instruction constructor.static @NotNull Field<XML>
DSL. xmlpi(Name target)
The XML processing instruction constructor.static @NotNull Field<XML>
DSL. xmlpi(Name target, Field<?> content)
The XML processing instruction constructor.Methods in org.jooq.impl with parameters of type XML Modifier and Type Method Description static @NotNull Param<XML>
DSL. inline(XML value)
Create a bind value that is always inlined.static @NotNull Param<XML>
DSL. val(XML value)
Get a bind value.static @NotNull Param<XML>
DSL. value(XML value)
A synonym forDSL.val(XML)
to be used in Scala and Groovy, whereval
is a reserved keyword.Method parameters in org.jooq.impl with type arguments of type XML Modifier and Type Method Description static @NotNull XMLAggOrderByStep<XML>
DSL. xmlagg(Field<XML> field)
The XML aggregate function.static @NotNull Field<XML>
DSL. xmldocument(Field<XML> content)
The XML document constructor.
-