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 XMLXML. valueOf(String data)Create a newXMLinstance from string data input.static @NotNull XMLXML. xml(String data)Create a newXMLinstance 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 XMLclause.@NotNull Field<XML>XMLQueryPassingStep. passing(Field<XML> xml)Add thePASSINGclause to theXMLQUERYexpression.@NotNull Field<XML>XMLQueryPassingStep. passing(XML xml)Add thePASSINGclause to theXMLQUERYexpression.@NotNull Field<XML>XMLQueryPassingStep. passingByRef(Field<XML> xml)Add thePASSING BY REFclause to theXMLQUERYexpression.@NotNull Field<XML>XMLQueryPassingStep. passingByRef(XML xml)Add thePASSING BY REFclause to theXMLQUERYexpression.@NotNull Field<XML>XMLQueryPassingStep. passingByValue(Field<XML> xml)Add thePASSING BY VALUEclause to theXMLQUERYexpression.@NotNull Field<XML>XMLQueryPassingStep. passingByValue(XML xml)Add thePASSING BY VALUEclause to theXMLQUERYexpression.Methods in org.jooq with parameters of type XML Modifier and Type Method Description @NotNull ConditionXMLExistsPassingStep. passing(XML xml)Add thePASSINGclause to theXMLEXISTSpredicate.@NotNull Field<XML>XMLQueryPassingStep. passing(XML xml)Add thePASSINGclause to theXMLQUERYexpression.@NotNull XMLTableColumnsFirstStepXMLTablePassingStep. passing(XML xml)Add thePASSINGclause to theXMLEXISTSpredicate.@NotNull ConditionXMLExistsPassingStep. passingByRef(XML xml)Add thePASSING BY REFclause to theXMLEXISTSpredicate.@NotNull Field<XML>XMLQueryPassingStep. passingByRef(XML xml)Add thePASSING BY REFclause to theXMLQUERYexpression.@NotNull XMLTableColumnsFirstStepXMLTablePassingStep. passingByRef(XML xml)Add thePASSING BY REFclause to theXMLEXISTSpredicate.@NotNull ConditionXMLExistsPassingStep. passingByValue(XML xml)Add thePASSING BY VALUEclause to theXMLEXISTSpredicate.@NotNull Field<XML>XMLQueryPassingStep. passingByValue(XML xml)Add thePASSING BY VALUEclause to theXMLQUERYexpression.@NotNull XMLTableColumnsFirstStepXMLTablePassingStep. passingByValue(XML xml)Add thePASSING BY VALUEclause to theXMLEXISTSpredicate.Method parameters in org.jooq with type arguments of type XML Modifier and Type Method Description @NotNull ConditionXMLExistsPassingStep. passing(Field<XML> xml)Add thePASSINGclause to theXMLEXISTSpredicate.@NotNull Field<XML>XMLQueryPassingStep. passing(Field<XML> xml)Add thePASSINGclause to theXMLQUERYexpression.@NotNull XMLTableColumnsFirstStepXMLTablePassingStep. passing(Field<XML> xml)Add thePASSINGclause to theXMLEXISTSpredicate.@NotNull ConditionXMLExistsPassingStep. passingByRef(Field<XML> xml)Add thePASSING BY REFclause to theXMLEXISTSpredicate.@NotNull Field<XML>XMLQueryPassingStep. passingByRef(Field<XML> xml)Add thePASSING BY REFclause to theXMLQUERYexpression.@NotNull XMLTableColumnsFirstStepXMLTablePassingStep. passingByRef(Field<XML> xml)Add thePASSING BY REFclause to theXMLEXISTSpredicate.@NotNull ConditionXMLExistsPassingStep. passingByValue(Field<XML> xml)Add thePASSING BY VALUEclause to theXMLEXISTSpredicate.@NotNull Field<XML>XMLQueryPassingStep. passingByValue(Field<XML> xml)Add thePASSING BY VALUEclause to theXMLQUERYexpression.@NotNull XMLTableColumnsFirstStepXMLTablePassingStep. passingByValue(Field<XML> xml)Add thePASSING BY VALUEclause to theXMLEXISTSpredicate. -
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. XMLTheXMLtype.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, wherevalis 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, wherevalis 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.
-