Uses of Class
org.jooq.XMLFormat
-
Packages that use XMLFormat Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes. -
-
Uses of XMLFormat in org.jooq
Fields in org.jooq declared as XMLFormat Modifier and Type Field Description static XMLFormat
XMLFormat. DEFAULT_FOR_RECORDS
static XMLFormat
XMLFormat. DEFAULT_FOR_RESULTS
Methods in org.jooq that return XMLFormat Modifier and Type Method Description XMLFormat
XMLFormat. format(boolean newFormat)
The new value for the formatting flag, defaulting tofalse
.XMLFormat
XMLFormat. header(boolean newHeader)
The new header value, defaulting totrue
.XMLFormat
XMLFormat. indent(int newIndent)
The new indentation value, defaulting to2
.XMLFormat
XMLFormat. newline(String newNewline)
The new newline character, defaulting to\n
.XMLFormat
XMLFormat. quoteNested(boolean newQuoteNested)
Whether nestedXML
content should be quoted like a string, or nested into XML formatted output.XMLFormat
XMLFormat. recordFormat(XMLFormat.RecordFormat newRecordFormat)
The record format to be applied, defaulting toXMLFormat.RecordFormat.VALUE_ELEMENTS_WITH_FIELD_ATTRIBUTE
.XMLFormat
XMLFormat. xmlns(boolean newXmlns)
The new value for the xmlns flag, defaulting totrue
.Methods in org.jooq with parameters of type XMLFormat Modifier and Type Method Description void
Formattable. formatXML(OutputStream stream, XMLFormat format)
LikeFormattable.formatXML(XMLFormat)
, but the data is output onto anOutputStream
.void
Formattable. formatXML(Writer writer, XMLFormat format)
LikeFormattable.formatXML(XMLFormat)
, but the data is output onto aWriter
.String
Formattable. formatXML(XMLFormat format)
Get this result formatted as XML.<H extends ContentHandler>
HFormattable. intoXML(H handler, XMLFormat format)
Get this result as XML using a SAXContentHandler
.Document
Formattable. intoXML(XMLFormat format)
Get this result as XML. -
Uses of XMLFormat in org.jooq.impl
Methods in org.jooq.impl with parameters of type XMLFormat Modifier and Type Method Description void
ArrayRecordImpl. formatXML(Writer writer, XMLFormat format)
<H extends ContentHandler>
HArrayRecordImpl. intoXML(H handler, XMLFormat format)
Document
ArrayRecordImpl. intoXML(XMLFormat format)
-