MCPcopy
hub / github.com/jOOQ/jOOQ / nullable

Method nullable

jOOQ/src/main/java/org/jooq/impl/Tools.java:7610–7612  ·  view source on GitHub ↗
(DataType<T> defaultType, Field<?> f1)

Source from the content-addressed store, hash-verified

7608 }
7609
7610 static final <T> DataType<T> nullable(DataType<T> defaultType, Field<?> f1) {
7611 return dataType(defaultType, f1, false).null_();
7612 }
7613
7614 static final <T> DataType<T> nullable(DataType<T> defaultType, Field<?> f1, Field<?> f2) {
7615 return dataType(defaultType, f1, false).null_();

Callers

nothing calls this directly

Calls 3

dataTypeMethod · 0.95
isEmptyMethod · 0.95
null_Method · 0.65

Tested by

no test coverage detected