Whether nested XML content should be quoted like a string, or nested into XML formatted output.
(NullFormat newNullFormat)
| 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 |
no outgoing calls
no test coverage detected