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

Method toField

jOOQ/src/main/java/org/jooq/impl/FieldsImpl.java:223–229  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

221 }
222
223 private static final ThrowingFunction<SelectField<?>, Field<?>, RuntimeException> toField() {
224 return f -> f instanceof Row r
225 ? new RowAsField<>(r)
226 : f instanceof Table<?> t
227 ? new TableAsField<>(t)
228 : (Field<?>) f;
229 }
230
231 @Override
232 public final int size() {

Callers 1

FieldsImplMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected