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

Method nullSafe

jOOQ/src/main/java/org/jooq/impl/AbstractResult.java:359–362  ·  view source on GitHub ↗
(R r)

Source from the content-addressed store, hash-verified

357 }
358
359 @SuppressWarnings("unchecked")
360 private final R nullSafe(R r) {
361 return r != null ? r : (R) Tools.configuration(this).dsl().newRecord(fields());
362 }
363
364 private final void formatHorizontalLine(Writer writer, TXTFormat format, final int[] widths) throws java.io.IOException {
365 if (format.verticalTableBorder())

Callers 3

formatMethod · 0.95
formatCSVMethod · 0.95
formatHTMLMethod · 0.95

Calls 4

configurationMethod · 0.95
newRecordMethod · 0.65
dslMethod · 0.65
fieldsMethod · 0.65

Tested by

no test coverage detected