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

Method xmlns

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

The new value for the xmlns flag, defaulting to true .

(boolean newXmlns)

Source from the content-addressed store, hash-verified

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.

Callers 5

XMLFormatClass · 0.80
formatXMLMethod · 0.80
formatXMLRecordMethod · 0.80
intoXMLMethod · 0.80
nilMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected