MCPcopy Create free account
hub / github.com/jOOQ/jOOQ / nullFormat

Method nullFormat

jOOQ/src/main/java/org/jooq/XMLFormat.java:600–626  ·  view source on GitHub ↗

Whether nested XML content should be quoted like a string, or nested into XML formatted output.

(NullFormat newNullFormat)

Source from the content-addressed store, hash-verified

598 * nested into XML formatted output.
599 */
600 @NotNull
601 public final XMLFormat nullFormat(NullFormat newNullFormat) {
602 if (mutable) {
603 nullFormat = newNullFormat;
604 return this;
605 }
606 else
607 return new XMLFormat(
608 mutable,
609
610
611
612 xmlns,
613 format,
614 newline,
615 globalIndent,
616 indent,
617 indented,
618 header,
619 valueFormat,
620 recordFormat,
621 quoteNested,
622 newNullFormat,
623 arrayFormat,
624 binaryFormat
625 );
626 }
627
628 /**
629 * Whether nested {@link XML} content should be quoted like a string, or

Callers 6

formatXMLMethod · 0.80
formatXMLRecordMethod · 0.80
formatXMLContentMethod · 0.80
intoXMLMethod · 0.80
intoXMLContentMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected