Uses of Class
org.jooq.JSONFormat
-
Packages that use JSONFormat Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes. -
-
Uses of JSONFormat in org.jooq
Fields in org.jooq declared as JSONFormat Modifier and Type Field Description static JSONFormat
JSONFormat. DEFAULT_FOR_RECORDS
static JSONFormat
JSONFormat. DEFAULT_FOR_RESULTS
Methods in org.jooq that return JSONFormat Modifier and Type Method Description JSONFormat
JSONFormat. format(boolean newFormat)
The new value for the formatting flag, defaulting tofalse
.JSONFormat
JSONFormat. header(boolean newHeader)
Whether to emit a header row with column names, defaulting totrue
.JSONFormat
JSONFormat. indent(int newIndent)
The new indentation value, defaulting to2
.JSONFormat
JSONFormat. newline(String newNewline)
The new newline character, defaulting to\n
.JSONFormat
JSONFormat. recordFormat(JSONFormat.RecordFormat newRecordFormat)
The record format to be applied, defaulting toJSONFormat.RecordFormat.ARRAY
.Methods in org.jooq with parameters of type JSONFormat Modifier and Type Method Description void
Formattable. formatJSON(OutputStream stream, JSONFormat format)
LikeFormattable.formatJSON(JSONFormat)
, but the data is output onto anOutputStream
.void
Formattable. formatJSON(Writer writer, JSONFormat format)
LikeFormattable.formatJSON(JSONFormat)
, but the data is output onto aWriter
.String
Formattable. formatJSON(JSONFormat format)
Get a simple formatted representation of this result as a JSON data structure, according to the format. -
Uses of JSONFormat in org.jooq.impl
Methods in org.jooq.impl with parameters of type JSONFormat Modifier and Type Method Description void
ArrayRecordImpl. formatJSON(Writer writer, JSONFormat format)
-