Uses of Class
org.jooq.XMLFormat
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of XMLFormat in org.jooq
Modifier and TypeFieldDescriptionstatic XMLFormat
XMLFormat.DEFAULT_FOR_RECORDS
static XMLFormat
XMLFormat.DEFAULT_FOR_RESULTS
Modifier and TypeMethodDescriptionXMLFormat.format(boolean newFormat)
The new value for the formatting flag, defaulting tofalse
.XMLFormat.globalIndent(int newGlobalIndent)
The new global indentation size applied on all levels, defaulting to0
.XMLFormat.header(boolean newHeader)
The new header value, defaulting totrue
.XMLFormat.indent(int newIndent)
The new indentation size per level value, defaulting to2
.The new newline character, defaulting to\n
.XMLFormat.quoteNested(boolean newQuoteNested)
Whether nestedXML
content should be quoted like a string, or nested into XML formatted output.XMLFormat.recordFormat(XMLFormat.RecordFormat newRecordFormat)
The record format to be applied, defaulting toXMLFormat.RecordFormat.VALUE_ELEMENTS_WITH_FIELD_ATTRIBUTE
.XMLFormat.xmlns(boolean newXmlns)
The new value for the xmlns flag, defaulting totrue
.Modifier and TypeMethodDescriptionvoid
Formattable.formatXML(OutputStream stream, XMLFormat format)
LikeFormattable.formatXML(XMLFormat)
, but the data is output onto anOutputStream
.void
LikeFormattable.formatXML(XMLFormat)
, but the data is output onto aWriter
.@NotNull String
Get this result formatted as XML.<H extends ContentHandler>
HGet this result as XML using a SAXContentHandler
.@NotNull Document
Get this result as XML. -
Uses of XMLFormat in org.jooq.impl