The new value for the xmlns flag, defaulting to true .
(boolean newXmlns)
| 225 | * The new value for the xmlns flag, defaulting to <code>true</code>. |
| 226 | */ |
| 227 | @NotNull |
| 228 | public final XMLFormat xmlns(boolean newXmlns) { |
| 229 | if (mutable) { |
| 230 | xmlns = newXmlns; |
| 231 | return this; |
| 232 | } |
| 233 | else |
| 234 | return new XMLFormat( |
| 235 | mutable, |
| 236 | |
| 237 | |
| 238 | |
| 239 | newXmlns, |
| 240 | format, |
| 241 | newline, |
| 242 | globalIndent, |
| 243 | indent, |
| 244 | indented, |
| 245 | header, |
| 246 | valueFormat, |
| 247 | recordFormat, |
| 248 | quoteNested, |
| 249 | nullFormat, |
| 250 | arrayFormat, |
| 251 | binaryFormat |
| 252 | ); |
| 253 | } |
| 254 | |
| 255 | /** |
| 256 | * The xmlns flag. |
no outgoing calls
no test coverage detected