Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
Modifier and Type | Field and Description |
---|---|
static XMLFormat |
XMLFormat.DEFAULT_FOR_RECORDS |
static XMLFormat |
XMLFormat.DEFAULT_FOR_RESULTS |
Modifier and Type | Method and Description |
---|---|
XMLFormat |
XMLFormat.format(boolean newFormat)
The new value for the formatting flag, defaulting to
false . |
XMLFormat |
XMLFormat.header(boolean newHeader)
The new header value, defaulting to
true . |
XMLFormat |
XMLFormat.indent(int newIndent)
The new indentation value, defaulting to
2 . |
XMLFormat |
XMLFormat.newline(java.lang.String newNewline)
The new newline character, defaulting to
\n . |
XMLFormat |
XMLFormat.recordFormat(XMLFormat.RecordFormat newRecordFormat)
The record format to be applied, defaulting to
XMLFormat.RecordFormat.VALUE_ELEMENTS_WITH_FIELD_ATTRIBUTE . |
XMLFormat |
XMLFormat.xmlns(boolean newXmlns)
The new value for the xmlns flag, defaulting to
true . |
Modifier and Type | Method and Description |
---|---|
void |
Result.formatXML(java.io.OutputStream stream,
XMLFormat format)
Like
Result.formatXML(XMLFormat) , but the data is output onto an OutputStream . |
void |
Record.formatXML(java.io.OutputStream stream,
XMLFormat format)
Like
Record.formatXML(XMLFormat) , but the data is output onto an OutputStream . |
void |
Result.formatXML(java.io.Writer writer,
XMLFormat format)
Like
Result.formatXML(XMLFormat) , but the data is output onto a Writer . |
void |
Record.formatXML(java.io.Writer writer,
XMLFormat format)
Like
Record.formatXML(XMLFormat) , but the data is output onto a Writer . |
java.lang.String |
Result.formatXML(XMLFormat format)
Get this result formatted as XML.
|
java.lang.String |
Record.formatXML(XMLFormat format)
Get this record formatted as XML.
|
<H extends org.xml.sax.ContentHandler> |
Result.intoXML(H handler,
XMLFormat format)
Get this result as XML using a SAX
ContentHandler . |
org.w3c.dom.Document |
Result.intoXML(XMLFormat format)
Get this result as XML.
|
Copyright © 2018. All Rights Reserved.